module Decors::MethodAdded::StandardListener

Public Instance Methods

method_added(meth) click to toggle source
Calls superclass method
# File lib/decors/method_added.rb, line 44
def method_added(meth)
  super
  handle_method_addition(self, meth)
end
singleton_method_added(meth) click to toggle source
Calls superclass method
# File lib/decors/method_added.rb, line 49
def singleton_method_added(meth)
  super
  handle_method_addition(singleton_class, meth)
end