Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/split/extensions/string.rb

Instance Method Summary collapse

Instance Method Details

#constantizeObject



5
6
7
8
9
10
11
12
13
14
# File 'lib/split/extensions/string.rb', line 5

def constantize
  names = self.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