diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-06-24 14:16:29 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-06-24 14:16:29 +0200 |
commit | 9ac1ce11ad9ec22157d2e542437c5c5cccaf58fe (patch) | |
tree | 7ac71d96aac697077dc6cfd6dd5be954dec3a48f | |
parent | 0bb8dfd0471b937e06734176a35176aea8d5f658 (diff) | |
download | rails-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.
-rw-r--r-- | actionpack/lib/action_controller/metal/live.rb | 2 | ||||
-rw-r--r-- | railties/lib/rails/test_unit/sub_test_task.rb | 4 |
2 files changed, 3 insertions, 3 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) diff --git a/railties/lib/rails/test_unit/sub_test_task.rb b/railties/lib/rails/test_unit/sub_test_task.rb index d9bffba4d7..6fa96d2ced 100644 --- a/railties/lib/rails/test_unit/sub_test_task.rb +++ b/railties/lib/rails/test_unit/sub_test_task.rb @@ -7,7 +7,7 @@ module Rails # # This class takes a TestInfo class and defines the appropriate rake task # based on the information, then invokes it. - class TestCreator + class TestCreator # :nodoc: def initialize(info) @info = info end @@ -41,7 +41,7 @@ module Rails # to test files (or can be transformed into test files). Calling <tt>files</tt> # provides the set of test files and is used when initializing tests after # a call to <tt>rake test</tt>. - class TestInfo + class TestInfo # :nodoc: def initialize(tasks) @tasks = tasks @files = nil |