Methods
F
N
S
T
Included Modules
Attributes
[RW] record
Class Public methods
new()
# File activesupport/test/callbacks_test.rb, line 633
def initialize
  @record = []
end
Instance Public methods
first()
# File activesupport/test/callbacks_test.rb, line 643
def first
  @record << "one"
end
save()
# File activesupport/test/callbacks_test.rb, line 637
def save
  run_callbacks :save do
    @record << "yielded"
  end
end
second()
# File activesupport/test/callbacks_test.rb, line 647
def second
  @record << "two"
end
third()
# File activesupport/test/callbacks_test.rb, line 651
def third
  @record << "three"
end