Methods
F
N
S
Attributes
[R] finishes
[R] starts
Class Public methods
new()
# File activesupport/test/notifications/instrumenter_test.rb, line 10
def initialize
  @starts   = []
  @finishes = []
end
Instance Public methods
finish(*args)
# File activesupport/test/notifications/instrumenter_test.rb, line 16
def finish(*args); @finishes << args; end
start(*args)
# File activesupport/test/notifications/instrumenter_test.rb, line 15
def start(*args);  @starts << args; end