Source: show | on GitHub
# File activesupport/test/callbacks_test.rb, line 557 def around(caller) caller.record << "around before" yield caller.record << "around after" end
# File activesupport/test/callbacks_test.rb, line 549 def before(caller) caller.record << "before" end
# File activesupport/test/callbacks_test.rb, line 553 def before_save(caller) caller.record << "before save" end