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