module Foreman::Helpers

def classify(dashed_word)

classify('job-name') # => 'JobName'

Given a word with dashes, returns a camel cased version of it.
def classify(dashed_word)
  dashed_word.split('-').each { |part| part[0] = part[0].chr.upcase }.join
end  # Tries to find a constant with the name specified in the argument string:

def constantize(camel_cased_word)

NameError is raised when the constant is unknown.

end
constantize("C") # => 'outside', same as ::C
C # => 'inside'
C = 'inside'
module M
C = 'outside'

account:
whether it starts with "::" or not. No lexical context is taken into
The name is assumed to be the one of a top-level constant, no matter

constantize("Test::Unit") # => Test::Unit
constantize("Module") # => Module
def constantize(camel_cased_word)
  camel_cased_word = camel_cased_word.to_s
  names = camel_cased_word.split('::')
  names.shift if names.empty? || names.first.empty?
  constant = Object
  names.each do |name|
    args = Module.method(:const_get).arity != 1 ? [false] : []
    if constant.const_defined?(name, *args)
      constant = constant.const_get(name)
    else
      constant = constant.const_missing(name)
    end
  end
  constant
end