Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/payola/core_ext/string.rb
Instance Method Summary collapse
Instance Method Details
#constantize ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/payola/core_ext/string.rb', line 2 def constantize names = split('::') names.shift if names.empty? || names.first.empty? constant = Object names.each do |name| constant = if constant.const_defined?(name) constant.const_get(name) else constant.const_missing(name) end end constant end |