class EmptyParent
Public Instance Methods
dispatch()
click to toggle source
# File activesupport/test/callback_inheritance_test.rb, line 72 def dispatch run_callbacks :dispatch self end
perform!()
click to toggle source
# File activesupport/test/callback_inheritance_test.rb, line 68 def perform! @performed = true end
performed?()
click to toggle source
# File activesupport/test/callback_inheritance_test.rb, line 62 def performed? @performed ||= false end