Methods
F
N
P
S
Attributes
[R] finishes
[R] publishes
[R] starts
Class Public methods
new()
# File activesupport/test/notifications_test.rb, line 102
def initialize
  @starts    = []
  @finishes  = []
  @publishes = []
end
Instance Public methods
finish(*args)
# File activesupport/test/notifications_test.rb, line 109
def finish(*args); @finishes << args; end
publish(*args)
# File activesupport/test/notifications_test.rb, line 110
def publish(*args); @publishes << args; end
start(*args)
# File activesupport/test/notifications_test.rb, line 108
def start(*args);  @starts << args; end