diff --git a/actionpack/lib/action_controller/metal/live.rb b/actionpack/lib/action_controller/metal/live.rb index 260a33f45aefff20bc052bc52e2c6a1cdec6faae..e6ada0c106f120c75dcc87b9fbf2d0cb5dcef8b9 100644 --- a/actionpack/lib/action_controller/metal/live.rb +++ b/actionpack/lib/action_controller/metal/live.rb @@ -1,7 +1,7 @@ require 'action_dispatch/http/response' require 'delegate' -module ActionController # :nodoc: +module ActionController # Mix this module in to your controller, and all actions in that controller # will be able to stream data to the client as it's written. # @@ -31,7 +31,7 @@ module ActionController # :nodoc: # the main thread. Make sure your actions are thread safe, and this shouldn't # be a problem (don't share state across threads, etc). module Live - class Buffer < ActionDispatch::Response::Buffer # :nodoc: + class Buffer < ActionDispatch::Response::Buffer #:nodoc: def initialize(response) super(response, Queue.new) end @@ -57,8 +57,8 @@ def close end end - class Response < ActionDispatch::Response # :nodoc: - class Header < DelegateClass(Hash) # :nodoc: + class Response < ActionDispatch::Response #:nodoc: all + class Header < DelegateClass(Hash) def initialize(response, header) @response = response super(header)