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.



397
398
399
# File 'lib/active_support/callbacks.rb', line 397

def initialize(block)
  @override_block = block
end

Instance Method Details

#expand(target, value, block) ⇒ Object



401
402
403
# File 'lib/active_support/callbacks.rb', line 401

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

#inverted_lambdaObject



411
412
413
414
415
# File 'lib/active_support/callbacks.rb', line 411

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

#make_lambdaObject



405
406
407
408
409
# File 'lib/active_support/callbacks.rb', line 405

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