Methods
N
S
Included Modules
Attributes
[RW] record
Class Public methods
new()
# File activesupport/test/callbacks_test.rb, line 626
def initialize
  @record = []
end
Instance Public methods
save()
# File activesupport/test/callbacks_test.rb, line 630
def save
  run_callbacks :save do
    @record << "yielded"
  end
end