Method: Datapimp::Configuration.method_missing
- Defined in:
- lib/datapimp/configuration.rb
.method_missing(meth, *args, &block) ⇒ Object
46 47 48 49 50 51 52 |
# File 'lib/datapimp/configuration.rb', line 46 def self.method_missing(meth, *args, &block) if instance.respond_to?(meth) return instance.send meth, *args, &block end nil end |