Class: ActiveSupport::Callbacks::Conditionals::Value
- Defined in:
- lib/active_support/callbacks.rb
Instance Method Summary collapse
- #call(target, value) ⇒ Object
-
#initialize(&block) ⇒ Value
constructor
A new instance of Value.
Constructor Details
#initialize(&block) ⇒ Value
Returns a new instance of Value.
113 114 115 |
# File 'lib/active_support/callbacks.rb', line 113 def initialize(&block) @block = block end |
Instance Method Details
#call(target, value) ⇒ Object
116 |
# File 'lib/active_support/callbacks.rb', line 116 def call(target, value); @block.call(value); end |