From f3b24b5b7f88ecfdefcd898f01ea1cfb2ee418f3 Mon Sep 17 00:00:00 2001 From: drbrain Date: Fri, 4 Jan 2013 06:16:13 +0000 Subject: * lib/rdoc/cross_reference.rb: Fixed matching of C#=== or #===. RDoc bug #164 * test/rdoc/test_rdoc_cross_reference.rb: Test for above. * lib/rdoc/parser/changelog.rb: Fixed parsing of dates. RDoc bug #165 * test/rdoc/test_rdoc_parser_changelog.rb: Test for above. * lib/rdoc/parser.rb: Fixed parsing multibyte files with incomplete characters at byte 1024. [ruby-trunk - Bug #6393] Fixed handling of -E. [ruby-trunk - Bug #6392] * test/rdoc/test_rdoc_options.rb: Test for above. * test/rdoc/test_rdoc_parser.rb: ditto. * test/rdoc/test_rdoc_parser_c.rb: ditto. * test/rdoc/test_rdoc_parser_changelog.rb: ditto. * test/rdoc/test_rdoc_parser_markdown.rb: ditto. * test/rdoc/test_rdoc_parser_rd.rb: ditto. * test/rdoc/test_rdoc_rdoc.rb: ditto. * lib/rdoc/tom_doc.rb: Fixed parsing of [] in TomDoc arguments list. RDoc bug #167 * test/rdoc/test_rdoc_tom_doc.rb: Test for above. * lib/rdoc.rb: Update version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/parser/changelog.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'lib/rdoc/parser/changelog.rb') diff --git a/lib/rdoc/parser/changelog.rb b/lib/rdoc/parser/changelog.rb index fd7114daee..782d8f09bf 100644 --- a/lib/rdoc/parser/changelog.rb +++ b/lib/rdoc/parser/changelog.rb @@ -102,7 +102,12 @@ class RDoc::Parser::ChangeLog < RDoc::Parser def group_entries entries entries.group_by do |title, _| - Time.parse(title).strftime "%Y-%m-%d" + begin + Time.parse(title).strftime '%Y-%m-%d' + rescue NoMethodError, ArgumentError + time, = title.split ' ', 2 + Time.parse(time).strftime '%Y-%m-%d' + end end end @@ -139,6 +144,9 @@ class RDoc::Parser::ChangeLog < RDoc::Parser time = Time.parse entry_name # HACK Ruby 1.8 does not raise ArgumentError for Time.parse "Other" entry_name = nil unless entry_name =~ /#{time.year}/ + rescue NoMethodError + time, = entry_name.split ' ', 2 + time = Time.parse time rescue ArgumentError entry_name = nil end -- cgit v1.2.3