Object
# File lib/action_controller/reloader.rb, line 9 def initialize(body, lock) @body = body @lock = lock end
# File lib/action_controller/reloader.rb, line 14 def close @body.close if @body.respond_to?(:close) ensure Dispatcher.cleanup_application @lock.unlock end
# File lib/action_controller/reloader.rb, line 21 def method_missing(*args, &block) @body.send(*args, &block) end
# File lib/action_controller/reloader.rb, line 25 def respond_to?(symbol, include_private = false) symbol == :close || @body.respond_to?(symbol, include_private) end
[Validate]
Generated with the Darkfish Rdoc Generator 2.