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