Class: ActiveSupport::Callbacks::CallTemplate::ProcCall

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

Instance Method Summary collapse

Constructor Details

#initialize(target) ⇒ ProcCall

Returns a new instance of ProcCall.



466
467
468
# File 'lib/active_support/callbacks.rb', line 466

def initialize(target)
  @override_target = target
end

Instance Method Details

#expand(target, value, block) ⇒ Object



470
471
472
# File 'lib/active_support/callbacks.rb', line 470

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

#inverted_lambdaObject



480
481
482
483
484
# File 'lib/active_support/callbacks.rb', line 480

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

#make_lambdaObject



474
475
476
477
478
# File 'lib/active_support/callbacks.rb', line 474

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