ruby-changes:44513
From: hsbt <ko1@a...>
Date: Sat, 5 Nov 2016 18:18:15 +0900 (JST)
Subject: [ruby-changes:44513] hsbt:r56586 (trunk): * lib/rdoc/*, test/rdoc/*: Update rdoc-5.0.0
hsbt 2016-11-05 18:18:10 +0900 (Sat, 05 Nov 2016) New Revision: 56586 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56586 Log: * lib/rdoc/*, test/rdoc/*: Update rdoc-5.0.0 Release note: https://github.com/rdoc/rdoc/blob/b825775647f62c5b525e9780a28ff2fbb1d5bf6f/History.rdoc#500--2016-11-05 Added files: trunk/lib/rdoc/.document Modified files: trunk/ChangeLog trunk/lib/rdoc/context.rb trunk/lib/rdoc/generator/template/darkfish/_footer.rhtml trunk/lib/rdoc/generator.rb trunk/lib/rdoc/markdown/literals.rb trunk/lib/rdoc/markdown.rb trunk/lib/rdoc/markup/pre_process.rb trunk/lib/rdoc/markup/to_bs.rb trunk/lib/rdoc/options.rb trunk/lib/rdoc/parser.rb trunk/lib/rdoc/rdoc.gemspec trunk/lib/rdoc/rdoc.rb trunk/lib/rdoc/ri/driver.rb trunk/lib/rdoc/ruby_lex.rb trunk/lib/rdoc/rubygems_hook.rb trunk/lib/rdoc/stats/normal.rb trunk/lib/rdoc/store.rb trunk/lib/rdoc/test_case.rb trunk/lib/rdoc.rb trunk/test/rdoc/test_rdoc_context.rb trunk/test/rdoc/test_rdoc_markup_to_html_snippet.rb trunk/test/rdoc/test_rdoc_parser.rb trunk/test/rdoc/test_rdoc_rd_block_parser.rb trunk/test/rdoc/test_rdoc_rdoc.rb trunk/test/rdoc/test_rdoc_rubygems_hook.rb trunk/test/rdoc/test_rdoc_store.rb Index: test/rdoc/test_rdoc_context.rb =================================================================== --- test/rdoc/test_rdoc_context.rb (revision 56585) +++ test/rdoc/test_rdoc_context.rb (revision 56586) @@ -8,9 +8,6 @@ class TestRDocContext < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_context.rb#L8 @context = RDoc::Context.new @context.store = @store - - @enumerator = # 1.8 vs 1.9 - Object.const_defined?(:Enumerator) ? Enumerator : Enumerable::Enumerator end def test_initialize @@ -118,8 +115,6 @@ class TestRDocContext < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_context.rb#L115 end def test_add_class_basic_object - skip 'BasicObject is 1.9 only' unless defined?(BasicObject) - @xref_data.add_class RDoc::NormalClass, 'BasicObject' basic = @xref_data.find_module_named 'BasicObject' @@ -134,13 +129,11 @@ class TestRDocContext < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_context.rb#L129 end def test_add_class_object - root_class = defined?(BasicObject) ? 'BasicObject' : nil - @xref_data.add_class RDoc::NormalClass, 'Object' object = @xref_data.find_module_named 'Object' - assert_equal root_class, object.superclass + assert_equal 'BasicObject', object.superclass @c1.add_class RDoc::NormalClass, 'Object' @@ -457,7 +450,7 @@ class TestRDocContext < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_context.rb#L450 end def test_each_method_enumerator - assert_kind_of @enumerator, @c1.each_method + assert_kind_of Enumerator, @c1.each_method end def test_each_section @@ -489,7 +482,7 @@ class TestRDocContext < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_context.rb#L482 end def test_each_section_enumerator - assert_kind_of @enumerator, @c1.each_section + assert_kind_of Enumerator, @c1.each_section end def test_find_attribute_named @@ -899,4 +892,3 @@ class TestRDocContext < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_context.rb#L892 end end - Index: test/rdoc/test_rdoc_rd_block_parser.rb =================================================================== --- test/rdoc/test_rdoc_rd_block_parser.rb (revision 56585) +++ test/rdoc/test_rdoc_rd_block_parser.rb (revision 56586) @@ -165,7 +165,7 @@ class TestRDocRdBlockParser < RDoc::Test https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rd_block_parser.rb#L165 assert_equal expected, parse(str) io end - tf.close! if tf.respond_to? :close! + tf.close! end def test_parse_heading Index: test/rdoc/test_rdoc_parser.rb =================================================================== --- test/rdoc/test_rdoc_parser.rb (revision 56585) +++ test/rdoc/test_rdoc_parser.rb (revision 56586) @@ -119,7 +119,7 @@ class TestRDocParser < RDoc::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_parser.rb#L119 end io end - tf.close! if tf.respond_to? :close! + tf.close! end def test_class_for_modeline Index: test/rdoc/test_rdoc_rubygems_hook.rb =================================================================== --- test/rdoc/test_rdoc_rubygems_hook.rb (revision 56585) +++ test/rdoc/test_rdoc_rubygems_hook.rb (revision 56586) @@ -7,9 +7,6 @@ class TestRDocRubygemsHook < Gem::TestCa https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rubygems_hook.rb#L7 def setup super - skip 'requires RubyGems 1.9+' unless - Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.9') - @a = util_spec 'a', 2 do |s| s.rdoc_options = %w[--main MyTitle] s.extra_rdoc_files = %w[README] @@ -134,7 +131,6 @@ class TestRDocRubygemsHook < Gem::TestCa https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rubygems_hook.rb#L131 end def test_generate_default_gem - skip 'RubyGems 2 required' unless @a.respond_to? :default_gem? @a.loaded_from = File.join Gem::Specification.default_specifications_dir, 'a.gemspec' Index: test/rdoc/test_rdoc_rdoc.rb =================================================================== --- test/rdoc/test_rdoc_rdoc.rb (revision 56585) +++ test/rdoc/test_rdoc_rdoc.rb (revision 56586) @@ -133,7 +133,7 @@ class TestRDocRDoc < RDoc::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rdoc.rb#L133 end def test_normalized_file_list_non_file_directory - dev = defined?(File::NULL) ? File::NULL : '/dev/stdin' + dev = File::NULL skip "#{dev} is not a character special" unless File.chardev? dev @@ -261,7 +261,7 @@ class TestRDocRDoc < RDoc::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rdoc.rb#L261 assert_equal Encoding::ISO_8859_1, top_level.absolute_name.encoding io end - tf.close! if tf.respond_to? :close! + tf.close! end def test_parse_file_forbidden @@ -290,7 +290,7 @@ class TestRDocRDoc < RDoc::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rdoc.rb#L290 end io end - tf.close! if tf.respond_to? :close! + tf.close! end def test_remove_unparseable @@ -398,7 +398,7 @@ class TestRDocRDoc < RDoc::TestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_rdoc.rb#L398 e.message) tempfile end - tf.close! if tf.respond_to? :close! + tf.close! end def test_setup_output_dir_exists_not_rdoc Index: test/rdoc/test_rdoc_store.rb =================================================================== --- test/rdoc/test_rdoc_store.rb (revision 56585) +++ test/rdoc/test_rdoc_store.rb (revision 56586) @@ -3,7 +3,7 @@ require File.expand_path '../xref_test_c https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_store.rb#L3 class TestRDocStore < XrefTestCase - OBJECT_ANCESTORS = defined?(::BasicObject) ? %w[BasicObject] : [] + OBJECT_ANCESTORS = %w[BasicObject] def setup super @@ -631,7 +631,7 @@ class TestRDocStore < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_store.rb#L631 :title => nil, } - expected[:ancestors]['Object'] = %w[BasicObject] if defined?(::BasicObject) + expected[:ancestors]['Object'] = %w[BasicObject] open File.join(@tmpdir, 'cache.ri'), 'rb' do |io| cache = Marshal.load io.read @@ -699,7 +699,7 @@ class TestRDocStore < XrefTestCase https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_store.rb#L699 :title => 'title', } - expected[:ancestors]['Object'] = %w[BasicObject] if defined?(::BasicObject) + expected[:ancestors]['Object'] = %w[BasicObject] open File.join(@tmpdir, 'cache.ri'), 'rb' do |io| cache = Marshal.load io.read Index: test/rdoc/test_rdoc_markup_to_html_snippet.rb =================================================================== --- test/rdoc/test_rdoc_markup_to_html_snippet.rb (revision 56585) +++ test/rdoc/test_rdoc_markup_to_html_snippet.rb (revision 56586) @@ -495,7 +495,7 @@ be guessed, raises an error if +name+ co https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_markup_to_html_snippet.rb#L495 = \RDoc - Ruby Documentation System * {RDoc Project Page}[https://github.com/rdoc/rdoc/] -* {RDoc Documentation}[http://docs.seattlerb.org/rdoc] +* {RDoc Documentation}[https://rdoc.github.io/rdoc] * {RDoc Bug Tracker}[https://github.com/rdoc/rdoc/issues] == DESCRIPTION: @@ -709,4 +709,3 @@ This routine modifies its +comment+ para https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_markup_to_html_snippet.rb#L709 end end - Index: lib/rdoc/markdown/literals.rb =================================================================== --- lib/rdoc/markdown/literals.rb (revision 56585) +++ lib/rdoc/markdown/literals.rb (revision 56586) @@ -183,26 +183,14 @@ class RDoc::Markdown::Literals https://github.com/ruby/ruby/blob/trunk/lib/rdoc/markdown/literals.rb#L183 return nil end - if "".respond_to? :ord - def get_byte - if @pos >= @string_size - return nil - end - - s = @string[@pos].ord - @pos += 1 - s + def get_byte + if @pos >= @string_size + return nil end - else - def get_byte - if @pos >= @string_size - return nil - end - s = @string[@pos] - @pos += 1 - s - end + s = @string[@pos].ord + @pos += 1 + s end def parse(rule=nil) Index: lib/rdoc/generator.rb =================================================================== --- lib/rdoc/generator.rb (revision 56585) +++ lib/rdoc/generator.rb (revision 56586) @@ -49,4 +49,3 @@ module RDoc::Generator https://github.com/ruby/ruby/blob/trunk/lib/rdoc/generator.rb#L49 autoload :POT, 'rdoc/generator/pot' end - Index: lib/rdoc/ruby_lex.rb =================================================================== --- lib/rdoc/ruby_lex.rb (revision 56585) +++ lib/rdoc/ruby_lex.rb (revision 56586) @@ -853,11 +853,7 @@ class RDoc::RubyLex https://github.com/ruby/ruby/blob/trunk/lib/rdoc/ruby_lex.rb#L853 end end - IDENT_RE = if defined? Encoding then - eval '/[\w\u{0080}-\u{FFFFF}]/u' # 1.8 can't parse \u{} - else - /[\w\x80-\xFF]/ - end + IDENT_RE = eval '/[\w\u{0080}-\u{FFFFF}]/u' def identify_identifier token = "" Index: lib/rdoc/options.rb =================================================================== --- lib/rdoc/options.rb (revision 56585) +++ lib/rdoc/options.rb (revision 56586) @@ -1187,19 +1187,6 @@ Usage: #{opt.program_name} [options] [na https://github.com/ruby/ruby/blob/trunk/lib/rdoc/options.rb#L1187 end end - ## - # This is compatibility code for syck - - def to_yaml opts = {} # :nodoc: - return super if YAML.const_defined?(:ENGINE) and not YAML::ENGINE.syck? - - YAML.quick_emit self, opts do |out| - out.map taguri, to_yaml_style do |map| - encode_with map - end - end - end - # Sets the minimum visibility of a documented method. # # Accepts +:public+, +:protected+, +:private+, +:nodoc+, or +:all+. Index: lib/rdoc/stats/normal.rb =================================================================== --- lib/rdoc/stats/normal.rb (revision 56585) +++ lib/rdoc/stats/normal.rb (revision 56586) @@ -1,8 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/lib/rdoc/stats/normal.rb#L1 # frozen_string_literal: false -begin - require 'io/console/size' -rescue LoadError -end +require 'io/console/size' ## # Stats printer that prints just the files being documented with a progress @@ -26,11 +23,7 @@ class RDoc::Stats::Normal < RDoc::Stats: https://github.com/ruby/ruby/blob/trunk/lib/rdoc/stats/normal.rb#L23 # Print a progress bar, but make sure it fits on a single line. Filename # will be truncated if necessary. - terminal_width = if defined?(IO) && IO.respond_to?(:console_size) - IO.console_size[1].to_i.nonzero? || 80 - else - 80 - end + terminal_width = IO.console_size[1].to_i.nonzero? || 80 max_filename_size = terminal_width - progress_bar.size if filename.size > max_filename_size then @@ -57,4 +50,3 @@ class RDoc::Stats::Normal < RDoc::Stats: https://github.com/ruby/ruby/blob/trunk/lib/rdoc/stats/normal.rb#L50 end end - Index: lib/rdoc/rdoc.gemspec =================================================================== --- lib/rdoc/rdoc.gemspec (revision 56585) +++ lib/rdoc/rdoc.gemspec (revision 56586) @@ -6,9 +6,6 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rdoc.gemspec#L6 s.name = "rdoc" s.version = RDoc::VERSION - s.required_rubygems_version = Gem::Requirement.new(">= 1.3") - - s.require_paths = ["lib"] s.authors = [ "Eric Hodel", "Dave Thomas", @@ -17,17 +14,25 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rdoc.gemspec#L14 "Zachary Scott", "Hiroshi SHIBATA" ] + s.email = ["drbrain@s...", "", "", "", "mail@z...", "hsbt@r..."] + s.summary = "RDoc produces HTML and command-line documentation for Ruby projects" s.description = <<-DESCRIPTION RDoc produces HTML and command-line documentation for Ruby projects. RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentation from the command-line. DESCRIPTION - - s.email = ["drbrain@s...", "mail@z...", "hsbt@r..."] + s.homepage = "https://rdoc.github.io/rdoc" + s.licenses = ["Ruby"] s.bindir = "exe" s.executables = ["rdoc", "ri"] + s.require_paths = ["lib"] + # for ruby core repository. It was generated by `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + s.files = [".document", ".gitignore", ".travis.yml", "CONTRIBUTING.rdoc", "CVE-2013-0256.rdoc", "ExampleMarkdown.md", "ExampleRDoc.rdoc", "Gemfile", "History.rdoc", "LEGAL.rdoc", "LICENSE.rdoc", "README.rdoc", "RI.rdoc", "Rakefile", "TODO.rdoc", "bin/console", "bin/setup", "exe/rdoc", "exe/ri", "lib/gauntlet_rdoc.rb", "lib/rdoc.rb", "lib/rdoc/alias.rb", "lib/rdoc/anon_class.rb", "lib/rdoc/any_method.rb", "lib/rdoc/attr.rb", "lib/rdoc/class_module.rb", "lib/rdoc/code_object.rb", "lib/rdoc/code_objects.rb", "lib/rdoc/comment.rb", "lib/rdoc/constant.rb", "lib/rdoc/context.rb", "lib/rdoc/context/section.rb", "lib/rdoc/cross_reference.rb", "lib/rdoc/encoding.rb", "lib/rdoc/erb_partial.rb", "lib/rdoc/erbio.rb", "lib/rdoc/extend.rb", "lib/rdoc/generator.rb", "lib/rdoc/generator/darkfish.rb", "lib/rdoc/generator/json_index.rb", "lib/rdoc/generator/markup.rb", "lib/rdoc/generator/pot.rb", "lib/rdoc/generator/pot/message_extractor.rb", "lib/rdoc/generator/pot/po.rb", "lib/rdoc/gener ator/pot/po_entry.rb", "lib/rdoc/generator/ri.rb", "lib/rdoc/generator/template/darkfish/.document", "lib/rdoc/generator/template/darkfish/_footer.rhtml", "lib/rdoc/generator/template/darkfish/_head.rhtml","lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml", "lib/rdoc/generator/te mplate/darkfish/_sidebar_table_of_contents.rhtml", "lib/rdoc/generator/template/darkfish/class.rhtml", "lib/rdoc/generator/template/darkfish/css/fonts.css", "lib/rdoc/generator/template/darkfish/css/rdoc.css", "lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf", "lib/rdoc/generator/template/darkfish/images/add.png", "lib/rdoc/generator/template/darkfish/images/arrow_up.png", "lib/rdoc/generator/template/darkfish/images/brick.png", "lib/rdoc/generator/template/darkfish/images/brick_link.png", "lib/rdoc/generator/template/darkfish/images/bug.png", "lib/rdoc/generator/template/darkfish/images/bullet_black.png", "lib/rdoc/generator/templ ate/darkfish/images/bullet_toggle_minus.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png", "lib/rdoc/generator/template/darkfish/images/date.png", "lib/rdoc/generator/template/darkfish/images/delete.png", "lib/rdoc/generator/template/darkfish/images/find.png", "lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif", "lib/rdoc/generator/template/darkfish/images/macFFBgHack.png", "lib/rdoc/generator/template/darkfish/images/package.png", "lib/rdoc/generator/template/darkfish/images/page_green.png", "lib/rdoc/generator/template/darkfish/images/page_white_text.png", "lib/rdoc/generator/template/darkfish/images/page_white_width.png", "lib/rdoc/generator/template/darkfish/images/plugin.png", "lib/rdoc/generator/template/darkfish/images/ruby.png", "lib/rdoc/generator/template/darkfish/images/tag_blue.png", "lib/rdoc/generator/template/darkfish/images/tag_green.png", "lib/rdoc/generator/template/darkfish/images/transparent.png", "lib/rdoc/generato r/template/darkfish/images/wrench.png", "lib/rdoc/generator/template/darkfish/images/wrench_orange.png", "lib/rdoc/generator/template/darkfish/images/zoom.png", "lib/rdoc/generator/template/darkfish/index.rhtml", "lib/rdoc/generator/template/darkfish/js/darkfish.js", "lib/rdoc/generator/template/darkfish/js/jquery.js", "lib/rdoc/generator/template/darkfish/js/search.js", "lib/rdoc/generator/template/darkfish/page.rhtml", "lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml", "lib/rdoc/generator/template/darkfish/servlet_root.rhtml", "lib/rdoc/generator/template/darkfish/table_of_contents.rhtml", "lib/rdoc/generator/template/json_index/.document", "lib/rdoc/generator/template/json_index/js/navigation.js", "lib/rdoc/generator/template/json_index/js/searcher.js", "lib/rdoc/ghost_method.rb", "lib/rdoc/i18n.rb", "lib/rdoc/i18n/locale.rb", "lib/rdoc/i18n/text.rb", "lib/rdoc/include.rb", "lib/rdoc/known_classes.rb", "lib/rdoc/markdown.kpeg", "lib/rdoc/markdown/entities.rb" , "lib/rdoc/markdown/literals.kpeg", "lib/rdoc/markdown/literals.rb", "lib/rdoc/markup.rb", "lib/rdoc/markup/attr_changer.rb", "lib/rdoc/markup/attr_span.rb", "lib/rdoc/markup/attribute_manager.rb", "lib/rdoc/markup/attributes.rb", "lib/rdoc/markup/blank_line.rb", "lib/rdoc/markup/block_quote.rb", "lib/rdoc/markup/document.rb", "lib/rdoc/markup/formatter.rb", "lib/rdoc/markup/formatter_test_case.rb", "lib/rdoc/markup/hard_break.rb", "lib/rdoc/markup/heading.rb", "lib/rdoc/markup/include.rb", "lib/rdoc/markup/indented_paragraph.rb", "lib/rdoc/markup/inline.rb", "lib/rdoc/markup/list.rb", "lib/rdoc/markup/list_item.rb", "lib/rdoc/markup/paragraph.rb", "lib/rdoc/markup/parser.rb", "lib/rdoc/markup/pre_process.rb", "lib/rdoc/markup/raw.rb", "lib/rdoc/markup/rule.rb", "lib/rdoc/markup/special.rb", "lib/rdoc/markup/text_formatter_test_case.rb", "lib/rdoc/markup/to_ansi.rb", "lib/rdoc/markup/to_bs.rb", "lib/rdoc/markup/to_html.rb", "lib/rdoc/markup/to_html_crossref.rb", "lib/rdoc/m arkup/to_html_snippet.rb", "lib/rdoc/markup/to_joined_paragraph.rb", "lib/rdoc/markup/to_label.rb", "lib/rdoc/markup/to_markdown.rb", "lib/rdoc/markup/to_rdoc.rb", "lib/rdoc/markup/to_table_of_contents.rb", "lib/rdoc/markup/to_test.rb", "lib/rdoc/markup/to_tt_only.rb", "lib/rdoc/markup/verbatim.rb", "lib/rdoc/meta_method.rb", "lib/rdoc/method_attr.rb", "lib/rdoc/mixin.rb", "lib/rdoc/normal_class.rb", "lib/rdoc/normal_module.rb", "lib/rdoc/options.rb", "lib/rdoc/parser.rb", "lib/rdoc/parser/c.rb", "lib/rdoc/parser/changelog.rb", "lib/rdoc/parser/markdown.rb", "lib/rdoc/parser/rd.rb", "lib/rdoc/parser/ruby.rb", "lib/rdoc/parser/ruby_tools.rb", "lib/rdoc/parser/simple.rb", "lib/rdoc/parser/text.rb", "lib/rdoc/rd.rb", "lib/rdoc/rd/block_parser.ry", "lib/rdoc/rd/inline.rb", "lib/rdoc/rd/inline_parser.ry", "lib/rdoc/rdoc.rb", "lib/rdoc/require.rb", "lib/rdoc/ri.rb", "lib/rdoc/ri/driver.rb", "lib/rdoc/ri/formatter.rb", "lib/rdoc/ri/paths.rb", "lib/rdoc/ri/store.rb", "lib/rdoc/ri/ta sk.rb", "lib/rdoc/ruby_lex.rb", "lib/rdoc/ruby_token.rb", "lib/rdoc/rubygems_hook.rb", "lib/rdoc/servlet.rb", "lib/ (... truncated) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/