Methods
A
B
H
S
Included Modules
Instance Public methods
after_save1()
# File activesupport/test/callbacks_test.rb, line 13
def after_save1; self.history << :after; end
before_save1()
# File activesupport/test/callbacks_test.rb, line 12
def before_save1; self.history << :before; end
history()
# File activesupport/test/callbacks_test.rb, line 21
def history
  @history ||= []
end
save()
# File activesupport/test/callbacks_test.rb, line 15
def save
  run_callbacks :save do
    raise 'boom'
  end
end