ActiveSupport::Callbacks::Conditionals::Value
Methods
C
N
Class Public methods
new(&block)
# File activesupport/lib/active_support/callbacks.rb, line 150
def initialize(&block)
  @block = block
end
Instance Public methods
call(target, value)
# File activesupport/lib/active_support/callbacks.rb, line 153
def call(target, value); @block.call(value); end