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