Class: ActiveSupport::Callbacks::CallTemplate::InstanceExec0
- Defined in:
- activesupport/lib/active_support/callbacks.rb
Instance Method Summary collapse
- #expand(target, value, block) ⇒ Object
-
#initialize(block) ⇒ InstanceExec0
constructor
A new instance of InstanceExec0.
- #inverted_lambda ⇒ Object
- #make_lambda ⇒ Object
Constructor Details
#initialize(block) ⇒ InstanceExec0
Returns a new instance of InstanceExec0.
436 437 438 |
# File 'activesupport/lib/active_support/callbacks.rb', line 436 def initialize(block) @override_block = block end |
Instance Method Details
#expand(target, value, block) ⇒ Object
440 441 442 |
# File 'activesupport/lib/active_support/callbacks.rb', line 440 def (target, value, block) [target, @override_block, :instance_exec] end |
#inverted_lambda ⇒ Object
450 451 452 453 454 |
# File 'activesupport/lib/active_support/callbacks.rb', line 450 def inverted_lambda lambda do |target, value, &block| !target.instance_exec(&@override_block) end end |
#make_lambda ⇒ Object
444 445 446 447 448 |
# File 'activesupport/lib/active_support/callbacks.rb', line 444 def make_lambda lambda do |target, value, &block| target.instance_exec(&@override_block) end end |