Methods
B
C
F
N
Class Public methods
new(&block)
# File actionpack/test/dispatch/reloader_test.rb, line 31
def initialize(&block)
  @on_close = block
end
Instance Public methods
bar()
# File actionpack/test/dispatch/reloader_test.rb, line 39
def bar
  "bar"
end
close()
# File actionpack/test/dispatch/reloader_test.rb, line 43
def close
  @on_close.call if @on_close
end
foo()
# File actionpack/test/dispatch/reloader_test.rb, line 35
def foo
  "foo"
end