Methods
I
R
Class Public methods
included(base)
# File activesupport/test/callbacks_test.rb, line 353
def self.included(base)
  base.class_eval do
    set_callback :save, :before, :record2
  end
end
Instance Public methods
record2()
# File activesupport/test/callbacks_test.rb, line 358
def record2
  @recorder << 2
end