Methods
A
B
D
N
Included Modules
Attributes
[R] action_name
[R] log
Class Public methods
new(action_name)
# File activesupport/test/callback_inheritance_test.rb, line 7
def initialize(action_name)
  @action_name, @log = action_name, []
end
Instance Public methods
after1()
# File activesupport/test/callback_inheritance_test.rb, line 23
def after1
  @log << "after1"
end
after2()
# File activesupport/test/callback_inheritance_test.rb, line 27
def after2
  @log << "after2"
end
before1()
# File activesupport/test/callback_inheritance_test.rb, line 15
def before1
  @log << "before1"
end
before2()
# File activesupport/test/callback_inheritance_test.rb, line 19
def before2
  @log << "before2"
end
dispatch()
# File activesupport/test/callback_inheritance_test.rb, line 31
def dispatch
  run_callbacks :dispatch do
    @log << action_name
  end
  self
end