Method: Monkey::Ext::Module#method_missing
- Defined in:
- lib/monkey/ext/module.rb
#method_missing(name, *args, &block) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/monkey/ext/module.rb', line 17 def method_missing(name, *args, &block) if respond_to? :parent and parent.respond_to? :nested_method_missing parent.nested_method_missing(self, name, *args, &block) else method_missing_without_nesting(name, *args, &block) end end |