Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/core_ext/const_missing.rb
Class Method Summary collapse
Class Method Details
.const_missing(name) ⇒ Object
2 3 4 5 6 7 8 |
# File 'lib/core_ext/const_missing.rb', line 2 def self.const_missing(name) if Scruber::Helpers.const_defined?(name) Scruber::Helpers.const_get(name) else super end end |