aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-06-24 14:16:29 +0200
committerYves Senn <yves.senn@gmail.com>2014-06-24 14:16:29 +0200
commit9ac1ce11ad9ec22157d2e542437c5c5cccaf58fe (patch)
tree7ac71d96aac697077dc6cfd6dd5be954dec3a48f /actionpack
parent0bb8dfd0471b937e06734176a35176aea8d5f658 (diff)
downloadrails-9ac1ce11ad9ec22157d2e542437c5c5cccaf58fe.tar.gz
rails-9ac1ce11ad9ec22157d2e542437c5c5cccaf58fe.tar.bz2
rails-9ac1ce11ad9ec22157d2e542437c5c5cccaf58fe.zip
`:nodoc: all` does not remove the constants from the API. [ci skip]
Need to add individual `:nodoc:` for nested classes / modules to completely remove the constants from the API.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/metal/live.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/live.rb b/actionpack/lib/action_controller/metal/live.rb
index 67875141cb..706ce04062 100644
--- a/actionpack/lib/action_controller/metal/live.rb
+++ b/actionpack/lib/action_controller/metal/live.rb
@@ -205,7 +205,7 @@ module ActionController
end
class Response < ActionDispatch::Response #:nodoc: all
- class Header < DelegateClass(Hash)
+ class Header < DelegateClass(Hash) # :nodoc:
def initialize(response, header)
@response = response
super(header)