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

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, method) ⇒ ObjectCall

Returns a new instance of ObjectCall.



412
413
414
415
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 412

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

Instance Method Details

#expand(target, value, block) ⇒ Object



417
418
419
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 417

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

#inverted_lambdaObject



427
428
429
430
431
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 427

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

#make_lambdaObject



421
422
423
424
425
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/callbacks.rb', line 421

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