module Regexp::Syntax

def version_const_name(version_string)

def version_const_name(version_string)
  "V#{version_string.to_s.scan(/\d+/).join('_')}"
end