提交 9ac1ce11 编写于 作者: Y Yves Senn

`: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.
上级 0bb8dfd0
...@@ -205,7 +205,7 @@ def call_on_error ...@@ -205,7 +205,7 @@ def call_on_error
end end
class Response < ActionDispatch::Response #:nodoc: all class Response < ActionDispatch::Response #:nodoc: all
class Header < DelegateClass(Hash) class Header < DelegateClass(Hash) # :nodoc:
def initialize(response, header) def initialize(response, header)
@response = response @response = response
super(header) super(header)
......
...@@ -7,7 +7,7 @@ class TestTask < Rake::TestTask # :nodoc: all ...@@ -7,7 +7,7 @@ class TestTask < Rake::TestTask # :nodoc: all
# #
# This class takes a TestInfo class and defines the appropriate rake task # This class takes a TestInfo class and defines the appropriate rake task
# based on the information, then invokes it. # based on the information, then invokes it.
class TestCreator class TestCreator # :nodoc:
def initialize(info) def initialize(info)
@info = info @info = info
end end
...@@ -41,7 +41,7 @@ def reset_application_tasks ...@@ -41,7 +41,7 @@ def reset_application_tasks
# to test files (or can be transformed into test files). Calling <tt>files</tt> # 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 # provides the set of test files and is used when initializing tests after
# a call to <tt>rake test</tt>. # a call to <tt>rake test</tt>.
class TestInfo class TestInfo # :nodoc:
def initialize(tasks) def initialize(tasks)
@tasks = tasks @tasks = tasks
@files = nil @files = nil
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册