Methods
N
S
T
W
Y
Attributes
[R] history
Class Public methods
new()
# File activesupport/test/callbacks_test.rb, line 284
def initialize
  @history = []
end
Instance Public methods
no()
# File activesupport/test/callbacks_test.rb, line 242
def no; false; end
nope()
# File activesupport/test/callbacks_test.rb, line 245
def nope
  @history << "boom"
end
save()
# File activesupport/test/callbacks_test.rb, line 288
def save
  run_callbacks :save do
    @history << "running"
  end
end
tweedle()
# File activesupport/test/callbacks_test.rb, line 274
def tweedle
  @history << "tweedle"
end
tweedle_dee()
# File activesupport/test/callbacks_test.rb, line 264
def tweedle_dee
  @history << "tweedle dee"
end
tweedle_deedle()
# File activesupport/test/callbacks_test.rb, line 278
def tweedle_deedle
  @history << "tweedle deedle pre"
  yield
  @history << "tweedle deedle post"
end
tweedle_dum()
# File activesupport/test/callbacks_test.rb, line 268
def tweedle_dum
  @history << "tweedle dum pre"
  yield
  @history << "tweedle dum post"
end
w0tno()
# File activesupport/test/callbacks_test.rb, line 259
def w0tno
  @history << "boom"
  yield
end
w0tyes()
# File activesupport/test/callbacks_test.rb, line 253
def w0tyes
  @history << "w0tyes before"
  yield
  @history << "w0tyes after"
end
yes()
# File activesupport/test/callbacks_test.rb, line 243
def yes; true; end
yup()
# File activesupport/test/callbacks_test.rb, line 249
def yup
  @history << "yup"
end