Received: from mail.netbsd.org (mail.netbsd.org [204.152.190.11]) by www.NetBSD.org (Postfix) with ESMTP id 7AD2B63B8A8 for ; Sun, 13 Nov 2011 15:57:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4D13314A209; Sun, 13 Nov 2011 15:57:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C846514A207 for ; Sun, 13 Nov 2011 15:57:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 5gqAuDbJqpDO for ; Sun, 13 Nov 2011 15:57:22 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id DA1F714A204 for ; Sun, 13 Nov 2011 15:57:22 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id C1DEC175DD; Sun, 13 Nov 2011 15:57:22 +0000 (UTC) MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Date: Sun, 13 Nov 2011 15:57:22 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20111113155722.C1DEC175DD@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: taca Date: Sun Nov 13 15:57:22 UTC 2011 Modified Files: pkgsrc/devel/ruby-rdoc: PLIST distinfo pkgsrc/lang/ruby: rdoc.mk Log Message: Update ruby-rdoc package to 3.11. === 3.11 / 2011/10-17 * Bug fixes * Avoid parsing TAGS files included in gems. Issue #81 by Santiago Pastorino. === 3.10 / 2011-10-08 * Major enhancements * RDoc HTML output has been improved: * The search from Vladimir Kolesnikov Sdoc has been integrated. The search index generation is a reusable component through RDoc::Generator::JsonIndex * The table of contents is now a separate page and now shows links to headings and sections inside a page or class. * Class pages no longer show the namespace and no longer have file info pages. * HTML output is HTML 5. * Static files can be copied into RDoc using --copy-files * RDoc supports additional documentation formats: * TomDoc 1.0.0-rc1 * RD format The default markup can be set via the --markup option. The format of documentation in a particular file can be specified by the +:markup:+ directive. If the +:markup:+ directive is in the first comment it is used as the default for the entire file. For other comments it overrides the default markup format. The markup format can be set for rake tasks using RDoc::Task#markup * RDoc can save and load an options file. To create an options file that defaults to using TomDoc markup run: rdoc --markup tomdoc --write-options This will create a .rdoc_options file. Check it in to your VCS and package it with your gem. RDoc will automatically load this file and combine it with the user's options. Some options are not saved. See RDoc::Options@Saved+Options for full details. * Minor enhancements * RDoc autoloads everything. You only need to require 'rdoc' now. * HTML headings now have ids matching their titles. = Hello! Is rendered as

Hello!

* Labels for classes or methods can be linked-to by adding an @ following the class or method reference. For example, RDoc::Markup@Links See RDoc::Markup@Links for further details. * For HTML output RDoc uses +SomeClass.method_name+ and +SomeClass#method_name+ for remote methods and attributes and +::method_name+ and +#method_name+ for local methods. * RDoc makes an effort to syntax-highlight ruby code in verbatim sections. See RDoc::Markup@Paragraphs+and+Verbatim * Added RDoc::TopLevel#text? and RDoc::Parser::Text to indicate a parsed file contains no ruby constructs. * Added rdoc-label link scheme which allows bidirectional links. See RDoc::Markup for details. * Added RDoc::Comment which encapsulates comment-handling functionality. * Added RDoc::Markup::PreProcess::post_process to allow arbitrary comment munging. * RDoc::RDoc::current is set for the entire RDoc run. * Split rdoc/markup/inline into individual files for its component classes. * Moved token stream HTML markup out of RDoc::AnyMethod#markup_code into RDoc::TokenStream::to_html * "Top" link in section headers is no longer inside the heading element. * RDoc avoids printing some warnings unless run with `rdoc --verbose`. For Rails issue #1646. * Finishing a paragraph with two or more spaces will result in a line break. This feature is experimental and may be modified or removed. * Bug fixes * Performance of RDoc::RubyLex has been improved. Ruby Bug #5202 by Ryan Melton. * Clicking a link in the method description now works. Issue #61 by Alan Hogan. * Fixed RDoc::Markup::Parser for CRLF line endings. Issue #67 by Marvin Gülker. * Fixed lexing of percent strings like %r{#}. Issue #68 by eclectic923. * The C parser now understands classes defined with +rb_struct_define_without_accessor+ (like Range). Pull Request #73 by Dan Bernier * Fixed lexing of a b <<-HEREDOC. Issue #75 by John Mair. * Added LEGAL.rdoc with references to licenses in other files. Issue #78 by Dmitry Jemerov. * Block parameters are displayed in Darkfish output again. Issue #76 by Andrea Singh. * The method parameter coverage report no longer includes parameter default values. Issue #77 by Jake Goulding. * The module for an include is not looked up until parsed all the files are parsed. Unless your project includes nonexistent modules this avoids worst-case behavior (O(n!)) of RDoc::Include#module. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/ruby-rdoc/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/ruby-rdoc/distinfo cvs rdiff -u -r1.8 -r1.9 pkgsrc/lang/ruby/rdoc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.