[Source]
# File lib/more/facets/instance_function.rb, line 46 46: def singleton_method_added(meth) 47: module_eval %{ 48: def #{meth}(*args) 49: #{self.name}.#{meth}(self,*args) 50: end 51: } 52: #self.class_eval d 53: super(meth) 54: end
[Validate]