1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rdoc.rb: Import RDoc 3.7 release candidate

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2011-06-16 04:59:24 +00:00
parent 97ac172d58
commit b7528b5edb
58 changed files with 2637 additions and 277 deletions

View file

@ -3,6 +3,12 @@
class RDoc::Markup::Document
##
# The file this document was created from. See also
# RDoc::ClassModule#add_comment
attr_accessor :file
##
# The parts of the Document
@ -14,6 +20,8 @@ class RDoc::Markup::Document
def initialize *parts
@parts = []
@parts.push(*parts)
@file = nil
end
##
@ -36,7 +44,9 @@ class RDoc::Markup::Document
end
def == other # :nodoc:
self.class == other.class and @parts == other.parts
self.class == other.class and
@file == other.file and
@parts == other.parts
end
##
@ -59,8 +69,30 @@ class RDoc::Markup::Document
@parts.empty?
end
##
# When this is a collection of documents (#file is not set and this document
# contains only other documents as its direct children) #merge replaces
# documents in this class with documents from +other+ when the file matches
# and adds documents from +other+ when the files do not.
#
# The information in +other+ is preferred over the receiver
def merge other
other.parts.each do |other_part|
self.parts.delete_if do |self_part|
self_part.file and self_part.file == other_part.file
end
self.parts << other_part
end
self
end
def pretty_print q # :nodoc:
q.group 2, '[doc: ', ']' do
start = @file ? "[doc (#{@file}): " : '[doc: '
q.group 2, start, ']' do
q.seplist @parts do |part|
q.pp part
end