Method: ActiveSupport::Inflector#constantize

Defined in:
lib/jinx/active_support/inflector.rb,
lib/jinx/active_support/inflector.rb

#constantize(camel_cased_word) ⇒ Object

:nodoc:



347
348
349
350
351
352
353
354
355
356
# File 'lib/jinx/active_support/inflector.rb', line 347

def constantize(camel_cased_word)
  names = camel_cased_word.split('::')
  names.shift if names.empty? || names.first.empty?

  constant = Object
  names.each do |name|
    constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
  end
  constant
end