module FunctionChain

Constants

VERSION

Public Instance Methods

pull(receiver, *functions) click to toggle source

Shortcut to PullChain.new(receiver, *functions).call

# File lib/function_chain.rb, line 10
def pull(receiver, *functions)
  PullChain.new(receiver, *functions).call
end