Class: ActiveSupport::Callbacks::CallTemplate::ObjectCall

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

Instance Method Summary collapse

Constructor Details

#initialize(target, method) ⇒ ObjectCall

Returns a new instance of ObjectCall.



415
416
417
418
# File 'lib/active_support/callbacks.rb', line 415

def initialize(target, method)
  @override_target = target
  @method_name = method
end

Instance Method Details

#expand(target, value, block) ⇒ Object



420
421
422
# File 'lib/active_support/callbacks.rb', line 420

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

#inverted_lambdaObject



430
431
432
433
434
# File 'lib/active_support/callbacks.rb', line 430

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

#make_lambdaObject



424
425
426
427
428
# File 'lib/active_support/callbacks.rb', line 424

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