module PipeOperator::Observer

Public Instance Methods

singleton_method_added(method) click to toggle source
Calls superclass method
  # File lib/pipe_operator/observer.rb
3 def singleton_method_added(method)
4   ProxyResolver.new(self).proxy.define(method)
5   super
6 end
singleton_method_removed(method) click to toggle source
Calls superclass method
   # File lib/pipe_operator/observer.rb
 8 def singleton_method_removed(method)
 9   ProxyResolver.new(self).proxy.undefine(method)
10   super
11 end