hacks/super_method |
class Object < Object |
Private Methods |
Return a method object from parent class (or module)
klass | the superclass the method is in |
---|---|
method_name | the name of the method to get a Method object for |
Returns: a Method object, bound to self
Call a method in a parent class. Equivalent to:
super_method(klass, method_name).call(*args, &block)