Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/app_store/helpers/string.rb
Instance Method Summary collapse
-
#constantize ⇒ Object
Taken from ActiveSupport::Inflector.
Instance Method Details
#constantize ⇒ Object
Taken from ActiveSupport::Inflector
3 4 5 6 7 8 9 10 11 12 |
# File 'lib/app_store/helpers/string.rb', line 3 def constantize names = 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 |