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