Class: ActiveSupport::Callbacks::CallTemplate::InstanceExec0

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

Instance Method Summary collapse

Constructor Details

#initialize(block) ⇒ InstanceExec0

Returns a new instance of InstanceExec0.



438
439
440
# File 'lib/active_support/callbacks.rb', line 438

def initialize(block)
  @override_block = block
end

Instance Method Details

#expand(target, value, block) ⇒ Object



442
443
444
# File 'lib/active_support/callbacks.rb', line 442

def expand(target, value, block)
  [target, @override_block, :instance_exec]
end

#inverted_lambdaObject



452
453
454
455
456
# File 'lib/active_support/callbacks.rb', line 452

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

#make_lambdaObject



446
447
448
449
450
# File 'lib/active_support/callbacks.rb', line 446

def make_lambda
  lambda do |target, value, &block|
    target.instance_exec(&@override_block)
  end
end