Methods
A
F
H
N
S
T
Included Modules
Attributes
[R] halted
[R] history
[R] saved
Class Public methods
new()
# File activesupport/test/callbacks_test.rb, line 514
def initialize
  @history = []
end
Instance Public methods
around_it()
# File activesupport/test/callbacks_test.rb, line 518
def around_it
  @history << "around1"
  yield
  @history << "around2"
end
first()
# File activesupport/test/callbacks_test.rb, line 524
def first
  @history << "first"
end
halted_callback_hook(filter)
# File activesupport/test/callbacks_test.rb, line 543
def halted_callback_hook(filter)
  @halted = filter
end
save()
# File activesupport/test/callbacks_test.rb, line 537
def save
  run_callbacks :save do
    @saved = true
  end
end
second()
# File activesupport/test/callbacks_test.rb, line 528
def second
  @history << "second"
  :halt
end
third()
# File activesupport/test/callbacks_test.rb, line 533
def third
  @history << "third"
end