Restore correct :nodoc: behavior with nested classes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b088595db7
commit
3ecf38f376
@ -1,3 +1,8 @@
|
|||||||
|
Tue Oct 26 23:30:39 2004 Dave Thomas <dave@pragprog.com>
|
||||||
|
|
||||||
|
* lib/rdoc/code_objects.rb (RDoc::Context::add_class_or_module):
|
||||||
|
Restore correct :nopdoc: behavior with nested classes and modules.
|
||||||
|
|
||||||
Mon Oct 25 18:35:39 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
Mon Oct 25 18:35:39 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* win32/win32.c (isUNCRoot): should check NUL after '.'.
|
* win32/win32.c (isUNCRoot): should check NUL after '.'.
|
||||||
|
@ -233,7 +233,8 @@ module RDoc
|
|||||||
else
|
else
|
||||||
cls = class_type.new(name, superclass)
|
cls = class_type.new(name, superclass)
|
||||||
puts "Adding class/module #{name} to #@name" if $DEBUG
|
puts "Adding class/module #{name} to #@name" if $DEBUG
|
||||||
collection[name] = cls if @document_self && !@done_documenting
|
# collection[name] = cls if @document_self && !@done_documenting
|
||||||
|
collection[name] = cls if !@done_documenting
|
||||||
cls.parent = self
|
cls.parent = self
|
||||||
end
|
end
|
||||||
cls
|
cls
|
||||||
|
Loading…
x
Reference in New Issue
Block a user