Methods
A
B
Instance Public methods
around(caller)
# File activesupport/test/callbacks_test.rb, line 557
def around(caller)
  caller.record << "around before"
  yield
  caller.record << "around after"
end
before(caller)
# File activesupport/test/callbacks_test.rb, line 549
def before(caller)
  caller.record << "before"
end
before_save(caller)
# File activesupport/test/callbacks_test.rb, line 553
def before_save(caller)
  caller.record << "before save"
end