Class: Object

Inherits:
BasicObject
Defined in:
lib/debase/rbx/monkey.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args) ⇒ Object

todo: remove me, I’m here only for debugging



3
4
5
6
# File 'lib/debase/rbx/monkey.rb', line 3

def method_missing(name, *args)
  puts "#{self.class}.#{name}"
  super(name, args)
end