Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/zephyre/dependencies.rb
Class Method Summary collapse
Class Method Details
.const_missing(const) ⇒ Object
2 3 4 5 6 |
# File 'lib/zephyre/dependencies.rb', line 2 def self.const_missing(const) # Require file if it isn't found require const.to_s.to_snake_case Object.const_get(const) end |