Class: ActiveSupport::Callbacks::CallTemplate::MethodCall

Inherits:
Object
  • Object
show all
Defined in:
lib/active_support/callbacks.rb

Overview

:nodoc: all

Instance Method Summary collapse

Constructor Details

#initialize(method) ⇒ MethodCall

Returns a new instance of MethodCall.



338
339
340
# File 'lib/active_support/callbacks.rb', line 338

def initialize(method)
  @method_name = method
end

Instance Method Details

#expand(target, value, block) ⇒ Object

Return the parts needed to make this call, with the given input values.

Returns an array of the form:

[target, block, method, *arguments]

This array can be used as such:

target.send(method, *arguments, &block)

The actual invocation is left up to the caller to minimize call stack pollution.



355
356
357
# File 'lib/active_support/callbacks.rb', line 355

def expand(target, value, block)
  [target, block, @method_name]
end

#inverted_lambdaObject



365
366
367
368
369
# File 'lib/active_support/callbacks.rb', line 365

def inverted_lambda
  lambda do |target, value, &block|
    !target.send(@method_name, &block)
  end
end

#make_lambdaObject



359
360
361
362
363
# File 'lib/active_support/callbacks.rb', line 359

def make_lambda
  lambda do |target, value, &block|
    target.send(@method_name, &block)
  end
end