pkgsrc/devel/ruby-rdoc/PLIST

238 lines
11 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.7 2013/02/06 15:53:14 taca Exp $
bin/rdoc
bin/ri
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.autotest
${GEM_LIBDIR}/.document
${GEM_LIBDIR}/.gemtest
${GEM_LIBDIR}/CVE-2013-0256.rdoc
${GEM_LIBDIR}/DEVELOPERS.rdoc
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/History.rdoc
${GEM_LIBDIR}/LEGAL.rdoc
${GEM_LIBDIR}/LICENSE.rdoc
${GEM_LIBDIR}/Manifest.txt
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/README.rdoc
${GEM_LIBDIR}/RI.rdoc
${GEM_LIBDIR}/Rakefile
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/TODO.rdoc
${GEM_LIBDIR}/bin/rdoc
${GEM_LIBDIR}/bin/ri
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/gauntlet_rdoc.rb
${GEM_LIBDIR}/lib/rdoc.rb
${GEM_LIBDIR}/lib/rdoc/alias.rb
${GEM_LIBDIR}/lib/rdoc/anon_class.rb
${GEM_LIBDIR}/lib/rdoc/any_method.rb
${GEM_LIBDIR}/lib/rdoc/attr.rb
${GEM_LIBDIR}/lib/rdoc/class_module.rb
${GEM_LIBDIR}/lib/rdoc/code_object.rb
${GEM_LIBDIR}/lib/rdoc/code_objects.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/comment.rb
${GEM_LIBDIR}/lib/rdoc/constant.rb
${GEM_LIBDIR}/lib/rdoc/context.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/context/section.rb
${GEM_LIBDIR}/lib/rdoc/cross_reference.rb
${GEM_LIBDIR}/lib/rdoc/encoding.rb
${GEM_LIBDIR}/lib/rdoc/erbio.rb
${GEM_LIBDIR}/lib/rdoc/generator.rb
${GEM_LIBDIR}/lib/rdoc/generator/darkfish.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/json_index.rb
${GEM_LIBDIR}/lib/rdoc/generator/markup.rb
${GEM_LIBDIR}/lib/rdoc/generator/ri.rb
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/.document
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_footer.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_head.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/class.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/add.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/brick.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/brick_link.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/bug.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/bullet_black.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/date.png
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/delete.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/find.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/macFFBgHack.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/package.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/page_green.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/page_white_text.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/page_white_width.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/plugin.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/ruby.png
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/tag_blue.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/tag_green.png
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/transparent.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/wrench.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/wrench_orange.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/images/zoom.png
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/index.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/js/darkfish.js
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/js/jquery.js
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/js/search.js
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/page.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/rdoc.css
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/generator/template/darkfish/table_of_contents.rhtml
${GEM_LIBDIR}/lib/rdoc/generator/template/json_index/js/navigation.js
${GEM_LIBDIR}/lib/rdoc/generator/template/json_index/js/searcher.js
${GEM_LIBDIR}/lib/rdoc/ghost_method.rb
${GEM_LIBDIR}/lib/rdoc/include.rb
${GEM_LIBDIR}/lib/rdoc/known_classes.rb
${GEM_LIBDIR}/lib/rdoc/markup.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/markup/attr_changer.rb
${GEM_LIBDIR}/lib/rdoc/markup/attr_span.rb
${GEM_LIBDIR}/lib/rdoc/markup/attribute.rb
${GEM_LIBDIR}/lib/rdoc/markup/attribute_manager.rb
${GEM_LIBDIR}/lib/rdoc/markup/blank_line.rb
${GEM_LIBDIR}/lib/rdoc/markup/document.rb
${GEM_LIBDIR}/lib/rdoc/markup/formatter.rb
${GEM_LIBDIR}/lib/rdoc/markup/formatter_test_case.rb
${GEM_LIBDIR}/lib/rdoc/markup/heading.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/markup/include.rb
Update ruby-rdoc pacakge to 3.8. It was really needed by devel/ruby-railties, sigh. === 3.8 / ?? * Minor enhancements * RDoc::Parser::C can now discover methods on ENV and ARGF. * RDoc::Parser::C now knows about rb_cSocket and rb_mDL. * Bug fixes * Updating Object in an ri data store with new data now removes methods, includes, constants and aliases. === 3.7 / 2011-06-27 * Minor enhancements * New directive :category: which allows methods to be grouped into sections more cleanly. See RDoc::Markup for details. * Document-class for RDoc::Parser::C now supports Foo::CONST as well as CONST. * ri method output is now a comma-separated list when displayed interactively. Pull Request #39 by Benoit Daloze. * RDoc::ClassModule#merge now prefers the argument's information over the receiver's (it now behaves like Hash#merge! instead of a backwards Hash#merge!). * RDoc::Markup#convert now accepts an RDoc::Markup::Document instance * RDoc now owns the code for generating RDoc and ri data when gems install * Added RDoc::RDoc::reset * Added RDoc::CodeObject#file_name * Bug fixes * ri no longer crashes when attempting to complete a plain [. * ri data now tracks which file information came from so it can process removals and changes to: * Classes and Modules * Methods * Attributes * Includes * Constants You will need to rebuild your ri data for it to update properly. Issue #21 by Sven Riedel * Signal and SignalException no longer clobber each other * RDoc::Parser::C no longer creates classes when processing aliases. * RDoc::Text#strip_stars handles Document-method for methods with =, ! and ? now. * RDoc::Parser::C now allows .cpp files to be used with the "in" comment on rb_define_method. Bug #35 by Hanmac. * RDoc::Parser::Ruby no longer eats content when =begin/=end documentation blocks are followed by a documentable item. Issue #41 by mfn. * RDoc::Markup::Formatter and subclasses now allow an optional +markup+ parameter for adding custom markup. The example in RDoc::Markup::Formatter will now work. Issue #38 by tsilen. * RDoc::Parser::C can now distinguish between class methods and instance methods in Document-method. Issue #36 by Vincent Batts. * RDoc now encodes file names in the output encoding. Issue #33 by Perry Smith. * ri data generation for method aliases no longer duplicates the class in #full_name
2011-07-22 05:18:44 +02:00
${GEM_LIBDIR}/lib/rdoc/markup/indented_paragraph.rb
${GEM_LIBDIR}/lib/rdoc/markup/inline.rb
${GEM_LIBDIR}/lib/rdoc/markup/list.rb
${GEM_LIBDIR}/lib/rdoc/markup/list_item.rb
${GEM_LIBDIR}/lib/rdoc/markup/paragraph.rb
${GEM_LIBDIR}/lib/rdoc/markup/parser.rb
${GEM_LIBDIR}/lib/rdoc/markup/pre_process.rb
${GEM_LIBDIR}/lib/rdoc/markup/raw.rb
${GEM_LIBDIR}/lib/rdoc/markup/rule.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/markup/special.rb
${GEM_LIBDIR}/lib/rdoc/markup/text_formatter_test_case.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_ansi.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_bs.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_html.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_html_crossref.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/markup/to_html_snippet.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_label.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_rdoc.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/markup/to_table_of_contents.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_test.rb
${GEM_LIBDIR}/lib/rdoc/markup/to_tt_only.rb
${GEM_LIBDIR}/lib/rdoc/markup/verbatim.rb
${GEM_LIBDIR}/lib/rdoc/meta_method.rb
${GEM_LIBDIR}/lib/rdoc/method_attr.rb
${GEM_LIBDIR}/lib/rdoc/normal_class.rb
${GEM_LIBDIR}/lib/rdoc/normal_module.rb
${GEM_LIBDIR}/lib/rdoc/options.rb
${GEM_LIBDIR}/lib/rdoc/parser.rb
${GEM_LIBDIR}/lib/rdoc/parser/c.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/parser/rd.rb
${GEM_LIBDIR}/lib/rdoc/parser/ruby.rb
${GEM_LIBDIR}/lib/rdoc/parser/ruby_tools.rb
${GEM_LIBDIR}/lib/rdoc/parser/simple.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/parser/text.rb
${GEM_LIBDIR}/lib/rdoc/rd.rb
${GEM_LIBDIR}/lib/rdoc/rd/block_parser.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/rd/block_parser.ry
${GEM_LIBDIR}/lib/rdoc/rd/inline.rb
${GEM_LIBDIR}/lib/rdoc/rd/inline_parser.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/rd/inline_parser.ry
${GEM_LIBDIR}/lib/rdoc/rdoc.rb
${GEM_LIBDIR}/lib/rdoc/require.rb
${GEM_LIBDIR}/lib/rdoc/ri.rb
${GEM_LIBDIR}/lib/rdoc/ri/driver.rb
${GEM_LIBDIR}/lib/rdoc/ri/formatter.rb
${GEM_LIBDIR}/lib/rdoc/ri/paths.rb
${GEM_LIBDIR}/lib/rdoc/ri/store.rb
${GEM_LIBDIR}/lib/rdoc/ruby_lex.rb
${GEM_LIBDIR}/lib/rdoc/ruby_token.rb
Update ruby-rdoc pacakge to 3.8. It was really needed by devel/ruby-railties, sigh. === 3.8 / ?? * Minor enhancements * RDoc::Parser::C can now discover methods on ENV and ARGF. * RDoc::Parser::C now knows about rb_cSocket and rb_mDL. * Bug fixes * Updating Object in an ri data store with new data now removes methods, includes, constants and aliases. === 3.7 / 2011-06-27 * Minor enhancements * New directive :category: which allows methods to be grouped into sections more cleanly. See RDoc::Markup for details. * Document-class for RDoc::Parser::C now supports Foo::CONST as well as CONST. * ri method output is now a comma-separated list when displayed interactively. Pull Request #39 by Benoit Daloze. * RDoc::ClassModule#merge now prefers the argument's information over the receiver's (it now behaves like Hash#merge! instead of a backwards Hash#merge!). * RDoc::Markup#convert now accepts an RDoc::Markup::Document instance * RDoc now owns the code for generating RDoc and ri data when gems install * Added RDoc::RDoc::reset * Added RDoc::CodeObject#file_name * Bug fixes * ri no longer crashes when attempting to complete a plain [. * ri data now tracks which file information came from so it can process removals and changes to: * Classes and Modules * Methods * Attributes * Includes * Constants You will need to rebuild your ri data for it to update properly. Issue #21 by Sven Riedel * Signal and SignalException no longer clobber each other * RDoc::Parser::C no longer creates classes when processing aliases. * RDoc::Text#strip_stars handles Document-method for methods with =, ! and ? now. * RDoc::Parser::C now allows .cpp files to be used with the "in" comment on rb_define_method. Bug #35 by Hanmac. * RDoc::Parser::Ruby no longer eats content when =begin/=end documentation blocks are followed by a documentable item. Issue #41 by mfn. * RDoc::Markup::Formatter and subclasses now allow an optional +markup+ parameter for adding custom markup. The example in RDoc::Markup::Formatter will now work. Issue #38 by tsilen. * RDoc::Parser::C can now distinguish between class methods and instance methods in Document-method. Issue #36 by Vincent Batts. * RDoc now encodes file names in the output encoding. Issue #33 by Perry Smith. * ri data generation for method aliases no longer duplicates the class in #full_name
2011-07-22 05:18:44 +02:00
${GEM_LIBDIR}/lib/rdoc/rubygems_hook.rb
${GEM_LIBDIR}/lib/rdoc/single_class.rb
${GEM_LIBDIR}/lib/rdoc/stats.rb
${GEM_LIBDIR}/lib/rdoc/stats/normal.rb
${GEM_LIBDIR}/lib/rdoc/stats/quiet.rb
${GEM_LIBDIR}/lib/rdoc/stats/verbose.rb
${GEM_LIBDIR}/lib/rdoc/task.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/test_case.rb
${GEM_LIBDIR}/lib/rdoc/text.rb
${GEM_LIBDIR}/lib/rdoc/token_stream.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/lib/rdoc/tom_doc.rb
${GEM_LIBDIR}/lib/rdoc/top_level.rb
${GEM_LIBDIR}/test/README
${GEM_LIBDIR}/test/binary.dat
${GEM_LIBDIR}/test/hidden.zip.txt
${GEM_LIBDIR}/test/test.ja.large.rdoc
${GEM_LIBDIR}/test/test.ja.rdoc
${GEM_LIBDIR}/test/test.ja.txt
${GEM_LIBDIR}/test/test.txt
${GEM_LIBDIR}/test/test_attribute_manager.rb
${GEM_LIBDIR}/test/test_rdoc_alias.rb
${GEM_LIBDIR}/test/test_rdoc_any_method.rb
${GEM_LIBDIR}/test/test_rdoc_attr.rb
${GEM_LIBDIR}/test/test_rdoc_class_module.rb
${GEM_LIBDIR}/test/test_rdoc_code_object.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_comment.rb
${GEM_LIBDIR}/test/test_rdoc_constant.rb
${GEM_LIBDIR}/test/test_rdoc_context.rb
${GEM_LIBDIR}/test/test_rdoc_context_section.rb
${GEM_LIBDIR}/test/test_rdoc_cross_reference.rb
${GEM_LIBDIR}/test/test_rdoc_encoding.rb
${GEM_LIBDIR}/test/test_rdoc_generator_darkfish.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_generator_json_index.rb
${GEM_LIBDIR}/test/test_rdoc_generator_markup.rb
${GEM_LIBDIR}/test/test_rdoc_generator_ri.rb
${GEM_LIBDIR}/test/test_rdoc_include.rb
${GEM_LIBDIR}/test/test_rdoc_markup.rb
${GEM_LIBDIR}/test/test_rdoc_markup_attribute_manager.rb
${GEM_LIBDIR}/test/test_rdoc_markup_document.rb
${GEM_LIBDIR}/test/test_rdoc_markup_formatter.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_markup_heading.rb
${GEM_LIBDIR}/test/test_rdoc_markup_include.rb
Update ruby-rdoc pacakge to 3.8. It was really needed by devel/ruby-railties, sigh. === 3.8 / ?? * Minor enhancements * RDoc::Parser::C can now discover methods on ENV and ARGF. * RDoc::Parser::C now knows about rb_cSocket and rb_mDL. * Bug fixes * Updating Object in an ri data store with new data now removes methods, includes, constants and aliases. === 3.7 / 2011-06-27 * Minor enhancements * New directive :category: which allows methods to be grouped into sections more cleanly. See RDoc::Markup for details. * Document-class for RDoc::Parser::C now supports Foo::CONST as well as CONST. * ri method output is now a comma-separated list when displayed interactively. Pull Request #39 by Benoit Daloze. * RDoc::ClassModule#merge now prefers the argument's information over the receiver's (it now behaves like Hash#merge! instead of a backwards Hash#merge!). * RDoc::Markup#convert now accepts an RDoc::Markup::Document instance * RDoc now owns the code for generating RDoc and ri data when gems install * Added RDoc::RDoc::reset * Added RDoc::CodeObject#file_name * Bug fixes * ri no longer crashes when attempting to complete a plain [. * ri data now tracks which file information came from so it can process removals and changes to: * Classes and Modules * Methods * Attributes * Includes * Constants You will need to rebuild your ri data for it to update properly. Issue #21 by Sven Riedel * Signal and SignalException no longer clobber each other * RDoc::Parser::C no longer creates classes when processing aliases. * RDoc::Text#strip_stars handles Document-method for methods with =, ! and ? now. * RDoc::Parser::C now allows .cpp files to be used with the "in" comment on rb_define_method. Bug #35 by Hanmac. * RDoc::Parser::Ruby no longer eats content when =begin/=end documentation blocks are followed by a documentable item. Issue #41 by mfn. * RDoc::Markup::Formatter and subclasses now allow an optional +markup+ parameter for adding custom markup. The example in RDoc::Markup::Formatter will now work. Issue #38 by tsilen. * RDoc::Parser::C can now distinguish between class methods and instance methods in Document-method. Issue #36 by Vincent Batts. * RDoc now encodes file names in the output encoding. Issue #33 by Perry Smith. * ri data generation for method aliases no longer duplicates the class in #full_name
2011-07-22 05:18:44 +02:00
${GEM_LIBDIR}/test/test_rdoc_markup_indented_paragraph.rb
${GEM_LIBDIR}/test/test_rdoc_markup_paragraph.rb
${GEM_LIBDIR}/test/test_rdoc_markup_parser.rb
${GEM_LIBDIR}/test/test_rdoc_markup_pre_process.rb
${GEM_LIBDIR}/test/test_rdoc_markup_raw.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_ansi.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_bs.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_html.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_html_crossref.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_markup_to_html_snippet.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_label.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_rdoc.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_markup_to_table_of_contents.rb
${GEM_LIBDIR}/test/test_rdoc_markup_to_tt_only.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_markup_verbatim.rb
${GEM_LIBDIR}/test/test_rdoc_method_attr.rb
${GEM_LIBDIR}/test/test_rdoc_normal_class.rb
${GEM_LIBDIR}/test/test_rdoc_normal_module.rb
${GEM_LIBDIR}/test/test_rdoc_options.rb
${GEM_LIBDIR}/test/test_rdoc_parser.rb
${GEM_LIBDIR}/test/test_rdoc_parser_c.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_parser_rd.rb
${GEM_LIBDIR}/test/test_rdoc_parser_ruby.rb
${GEM_LIBDIR}/test/test_rdoc_parser_simple.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_rd.rb
${GEM_LIBDIR}/test/test_rdoc_rd_block_parser.rb
${GEM_LIBDIR}/test/test_rdoc_rd_inline.rb
${GEM_LIBDIR}/test/test_rdoc_rd_inline_parser.rb
${GEM_LIBDIR}/test/test_rdoc_rdoc.rb
${GEM_LIBDIR}/test/test_rdoc_require.rb
${GEM_LIBDIR}/test/test_rdoc_ri_driver.rb
${GEM_LIBDIR}/test/test_rdoc_ri_paths.rb
${GEM_LIBDIR}/test/test_rdoc_ri_store.rb
${GEM_LIBDIR}/test/test_rdoc_ruby_lex.rb
Update ruby-rdoc pacakge to 3.8. It was really needed by devel/ruby-railties, sigh. === 3.8 / ?? * Minor enhancements * RDoc::Parser::C can now discover methods on ENV and ARGF. * RDoc::Parser::C now knows about rb_cSocket and rb_mDL. * Bug fixes * Updating Object in an ri data store with new data now removes methods, includes, constants and aliases. === 3.7 / 2011-06-27 * Minor enhancements * New directive :category: which allows methods to be grouped into sections more cleanly. See RDoc::Markup for details. * Document-class for RDoc::Parser::C now supports Foo::CONST as well as CONST. * ri method output is now a comma-separated list when displayed interactively. Pull Request #39 by Benoit Daloze. * RDoc::ClassModule#merge now prefers the argument's information over the receiver's (it now behaves like Hash#merge! instead of a backwards Hash#merge!). * RDoc::Markup#convert now accepts an RDoc::Markup::Document instance * RDoc now owns the code for generating RDoc and ri data when gems install * Added RDoc::RDoc::reset * Added RDoc::CodeObject#file_name * Bug fixes * ri no longer crashes when attempting to complete a plain [. * ri data now tracks which file information came from so it can process removals and changes to: * Classes and Modules * Methods * Attributes * Includes * Constants You will need to rebuild your ri data for it to update properly. Issue #21 by Sven Riedel * Signal and SignalException no longer clobber each other * RDoc::Parser::C no longer creates classes when processing aliases. * RDoc::Text#strip_stars handles Document-method for methods with =, ! and ? now. * RDoc::Parser::C now allows .cpp files to be used with the "in" comment on rb_define_method. Bug #35 by Hanmac. * RDoc::Parser::Ruby no longer eats content when =begin/=end documentation blocks are followed by a documentable item. Issue #41 by mfn. * RDoc::Markup::Formatter and subclasses now allow an optional +markup+ parameter for adding custom markup. The example in RDoc::Markup::Formatter will now work. Issue #38 by tsilen. * RDoc::Parser::C can now distinguish between class methods and instance methods in Document-method. Issue #36 by Vincent Batts. * RDoc now encodes file names in the output encoding. Issue #33 by Perry Smith. * ri data generation for method aliases no longer duplicates the class in #full_name
2011-07-22 05:18:44 +02:00
${GEM_LIBDIR}/test/test_rdoc_rubygems_hook.rb
${GEM_LIBDIR}/test/test_rdoc_single_class.rb
${GEM_LIBDIR}/test/test_rdoc_stats.rb
${GEM_LIBDIR}/test/test_rdoc_task.rb
${GEM_LIBDIR}/test/test_rdoc_text.rb
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 <tt>--markup</tt> 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 <h1 id="label-Hello%21">Hello!</h1> * Labels for classes or methods can be linked-to by adding an <tt>@</tt> following the class or method reference. For example, <tt>RDoc::Markup@Links</tt> 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 <tt>rdoc-label</tt> 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 <code>a b <<-HEREDOC</code>. 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 (<tt>O(n!)</tt>) of RDoc::Include#module.
2011-11-13 16:57:22 +01:00
${GEM_LIBDIR}/test/test_rdoc_token_stream.rb
${GEM_LIBDIR}/test/test_rdoc_tom_doc.rb
${GEM_LIBDIR}/test/test_rdoc_top_level.rb
${GEM_LIBDIR}/test/xref_data.rb
${GEM_LIBDIR}/test/xref_test_case.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec