Class: String

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

Overview

From ActiveSupport

Instance Method Summary collapse

Instance Method Details

#constantizeObject

:nodoc:



15
16
17
18
19
20
21
22
23
24
# File 'lib/ext/string.rb', line 15

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