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 521
def initialize
  @history = []
end
Instance Public methods
around_it()
# File activesupport/test/callbacks_test.rb, line 525
def around_it
  @history << "around1"
  yield
  @history << "around2"
end
first()
# File activesupport/test/callbacks_test.rb, line 531
def first
  @history << "first"
end
halted_callback_hook(filter)
# File activesupport/test/callbacks_test.rb, line 550
def halted_callback_hook(filter)
  @halted = filter
end
save()
# File activesupport/test/callbacks_test.rb, line 544
def save
  run_callbacks :save do
    @saved = true
  end
end
second()
# File activesupport/test/callbacks_test.rb, line 535
def second
  @history << "second"
  :halt
end
third()
# File activesupport/test/callbacks_test.rb, line 540
def third
  @history << "third"
end