class Needle::InterceptorChainBuilder::ProxyObjectChainElement
Encapsulates the end of an interceptor chain, which is the actual object being affected.
Public Class Methods
new( obj )
click to toggle source
Create a new ProxyObjectChainElement that wraps the given object.
# File lib/needle/interceptor-chain.rb, line 68 def initialize( obj ) @obj = obj end
Public Instance Methods
process_next( context )
click to toggle source
Invoke the method represented by the context on the wrapped object.
# File lib/needle/interceptor-chain.rb, line 73 def process_next( context ) @obj.__send__( context.sym, *context.args, &context.block ) end