module MethodChainable

This is a proxy class that is used to intercept the method calls on the actual object

Constants

VERSION

Public Instance Methods

chain(input=nil) click to toggle source

Returns a Proxy object which intercepts method calls using method missing

# File lib/method_chainable.rb, line 8
def chain(input=nil)
  MethodChainable::Proxy.new(self, input)
end