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