# File lib/more/facets/instance_function.rb, line 46 def singleton_method_added(meth) module_eval %{ def #{meth}(*args) #{self.name}.#{meth}(self,*args) end } #self.class_eval d super(meth) end