123456789_123456789_123456789_123456789_123456789_

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

Do not use. This class is for internal use only.
Relationships & Source Files
Inherits: Object
Defined in: activesupport/lib/active_support/callbacks.rb

Class Method Summary

Instance Method Summary

Constructor Details

.new(method) ⇒ MethodCall

[ GitHub ]

  
# File 'activesupport/lib/active_support/callbacks.rb', line 380

def initialize(method)
  @method_name = method
end

Instance Method Details

#expand(target, value, block)

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.

[ GitHub ]

  
# File 'activesupport/lib/active_support/callbacks.rb', line 397

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

#inverted_lambda

[ GitHub ]

  
# File 'activesupport/lib/active_support/callbacks.rb', line 407

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

#make_lambda

[ GitHub ]

  
# File 'activesupport/lib/active_support/callbacks.rb', line 401

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