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 8
def initialize(action_name)
  @action_name, @log = action_name, []
end
Instance Public methods
after1()
# File activesupport/test/callback_inheritance_test.rb, line 24
def after1
  @log << "after1"
end
after2()
# File activesupport/test/callback_inheritance_test.rb, line 28
def after2
  @log << "after2"
end
before1()
# File activesupport/test/callback_inheritance_test.rb, line 16
def before1
  @log << "before1"
end
before2()
# File activesupport/test/callback_inheritance_test.rb, line 20
def before2
  @log << "before2"
end
dispatch()
# File activesupport/test/callback_inheritance_test.rb, line 32
def dispatch
  run_callbacks(:dispatch, action_name) do
    @log << action_name
  end
  self
end