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

Inherits:
Object
  • Object
show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb

Instance Method Summary collapse

Constructor Details

#initialize(target) ⇒ ProcCall

Returns a new instance of ProcCall.



504
505
506
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 504

def initialize(target)
  @override_target = target
end

Instance Method Details

#expand(target, value, block) ⇒ Object



508
509
510
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 508

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

#inverted_lambdaObject



518
519
520
521
522
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 518

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

#make_lambdaObject



512
513
514
515
516
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 512

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