method
original_name
ruby latest stable - Class:
UnboundMethod
original_name()public
Returns the original name of the method.
class C def foo; end alias bar foo end C.instance_method(:bar).original_name # => :foo
original_name()Returns the original name of the method.
class C def foo; end alias bar foo end C.instance_method(:bar).original_name # => :foo