Module Module::InstanceFunction
In: lib/more/facets/instance_function.rb

Methods

Public Instance methods

[Source]

# 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

[Validate]