Class: ActiveSupport::Callbacks::Conditionals::Value
- Defined in:
- activesupport/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.
153 154 155 |
# File 'activesupport/lib/active_support/callbacks.rb', line 153 def initialize(&block) @block = block end |
Instance Method Details
#call(target, value) ⇒ Object
156 |
# File 'activesupport/lib/active_support/callbacks.rb', line 156 def call(target, value); @block.call(value); end |