Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/attributary/core_ext.rb
Instance Method Summary collapse
Instance Method Details
#constantize ⇒ Object
3 4 5 |
# File 'lib/attributary/core_ext.rb', line 3 def constantize Object.const_get(self) end |
#safe_constantize ⇒ Object
9 10 11 12 13 |
# File 'lib/attributary/core_ext.rb', line 9 def safe_constantize constantize rescue StandardError nil end |