Module: MaglevSupport

Defined in:
lib/maglev_record/maglev_support/concern.rb,
lib/maglev_record/maglev_support/maglev_support.rb

Defined Under Namespace

Modules: Concern Classes: SubmoduleFinder

Class Method Summary collapse

Class Method Details

.constantize(camel_cased_word) ⇒ Object

Copied from activesupport/lib/active_support/inflector/methods.rb



3
4
5
6
7
8
9
10
11
12
# File 'lib/maglev_record/maglev_support/maglev_support.rb', line 3

def self.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