Methods
N
S
T
W
Y
Attributes
[R] history
Class Public methods
new()
# File activesupport/test/callbacks_test.rb, line 291
def initialize
  @history = []
end
Instance Public methods
no()
# File activesupport/test/callbacks_test.rb, line 249
def no; false; end
nope()
# File activesupport/test/callbacks_test.rb, line 252
def nope
  @history << "boom"
end
save()
# File activesupport/test/callbacks_test.rb, line 295
def save
  run_callbacks :save do
    @history << "running"
  end
end
tweedle()
# File activesupport/test/callbacks_test.rb, line 281
def tweedle
  @history << "tweedle"
end
tweedle_dee()
# File activesupport/test/callbacks_test.rb, line 271
def tweedle_dee
  @history << "tweedle dee"
end
tweedle_deedle()
# File activesupport/test/callbacks_test.rb, line 285
def tweedle_deedle
  @history << "tweedle deedle pre"
  yield
  @history << "tweedle deedle post"
end
tweedle_dum()
# File activesupport/test/callbacks_test.rb, line 275
def tweedle_dum
  @history << "tweedle dum pre"
  yield
  @history << "tweedle dum post"
end
w0tno()
# File activesupport/test/callbacks_test.rb, line 266
def w0tno
  @history << "boom"
  yield
end
w0tyes()
# File activesupport/test/callbacks_test.rb, line 260
def w0tyes
  @history << "w0tyes before"
  yield
  @history << "w0tyes after"
end
yes()
# File activesupport/test/callbacks_test.rb, line 250
def yes; true; end
yup()
# File activesupport/test/callbacks_test.rb, line 256
def yup
  @history << "yup"
end