Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/arena/core_ext/string.rb
Instance Method Summary collapse
Instance Method Details
#constantize ⇒ Object
5 6 7 |
# File 'lib/arena/core_ext/string.rb', line 5 def constantize split('::').inject(Module) { |acc, val| acc.const_get(val) } end |