Method: MLS.method_missing
- Defined in:
- lib/mls.rb
.method_missing(method, *args, &block) ⇒ Object
Delegates all uncauge class method calls to the singleton
415 416 417 |
# File 'lib/mls.rb', line 415 def self.method_missing(method, *args, &block) #:nodoc: # TODO: testme instance.__send__(method, *args, &block) end |