File rubygem-rdoc.changes of Package rubygem-rdoc

-------------------------------------------------------------------
Sat Feb  7 07:21:15 UTC 2015 - coolo@suse.com

- updated to version 4.2.0
 * Major enhancements
   * RDoc can now produce translation files for use with gettext.  See
     RDoc::Generator::POT for a workflow for creating translations of your
     documentation.  Pull request #254 by Kouhei Sutou.
 
 * Minor enhancements
   * RDoc now allows any single-word macro before a C method implementation.
     Issue #722 by Hanmac.
   * Now :all is a synonym for :private for RDoc::Options#visibility= to match
     the --all command line option.  Pull request #276 by Zachary Scott.
   * Running rake for the first time now installs racc.  Pull request #285 by
     Kouhei Sutou.
   * Added <code>-h</code> flag to also display help.  Issue #300 by Ryan Davis
   * search_index.js is now loaded asynchronously for improved performance.
   * Allow +X::Y+ as typewriter text.  Issue #319, pull request #322 by Jeremy
     Evans.
   * Added RDoc::RI::Task for building ri data easily through rake.  Pull
     request #332 by Zachary Scott.
   * A gzipped search index is generated for servers configured to use
     precompressed files.  Pull request #334 by Zachary Scott.
   * CSS files now live under /css relative to the document root.  Pull request
     #335 by Zachary Scott.
   * Improved detection of valid ruby in verbatim sections.  Pull request #333
     by Jeremy Evans.
 
 * Bug fixes
   * Fixed HTML labels for cross-browser compatibility.  This breaks existing
     links but enables cross-browser compatibility.  Pull request #330 by Jens
     Wille.
   * RDoc handles ASCII-incompatible encodings now.  An encoding hint may need
     to be added to the file for RDoc to produce correct output, though.
     Issue #288 by Manuel Meurer.
   * Fixed height recalculation issues when headings are hovered.  Issue #289
     by Dietmar H. Büto.

-------------------------------------------------------------------
Wed Oct 15 11:22:46 UTC 2014 - coolo@suse.com

- updated to version 4.1.2
 * Bug fixes
  * Updated vendored jQuery to 1.6.4.  Bug ruby/ruby#711 by @neuralme

-------------------------------------------------------------------
Mon Sep 29 15:33:18 UTC 2014 - mrueckert@suse.de

- disable documentation generation (adds gem2rpm.yml)
- regenerate the spec file for the new schema

-------------------------------------------------------------------
Sat Feb 22 06:25:43 UTC 2014 - coolo@suse.com

- updated to version 4.1.1
 * Bug fixes
   * Fixed reporting of undocumented method parameters when including when
     yield and &block are present.  Pull request #281 by Victor Bilyk.
   * Fixed merging of rd-style and hash-style comments at the top of a file.
     Bug #266 by Zachary Scott.
   * Fixed Document-attr in the C parser.  Bug #271 by Hanmac.
   * Removed duplicated condition in superclass fixup.  Pull request #282 by
     Benoit Daloze.

-------------------------------------------------------------------
Sat Feb 15 13:20:15 UTC 2014 - kkaempf@suse.com

- regenerate spec for Ruby 2.1
- fix gem pathes
- drop ruby-devel buildrequires

-------------------------------------------------------------------
Sun Jan 12 20:15:02 UTC 2014 - coolo@suse.com

- avoid file conflict in 12.2
- use slaves for update-alternatives

-------------------------------------------------------------------
Sun Jan  5 14:39:52 UTC 2014 - coolo@suse.com

- updated to version 4.1.0
 * Notable changes
   * Improved accessibility of HTML output.  Accessibility review was provided
     by:
 
     Techvision – http://www.techvision.net.in
 
     The accessibility consultants in Pune, India
 
   * The look of RDoc has been updated.
 
 * Minor enhancements
   * RDoc can now link to [], []=, << and >> methods.  Pull request #202 by
     Jeremy Evans, Bug # 191 by by Zachary Scott.
   * Added RDoc::Options#output_decoration which controls header labels for
     HTML output.  Pull Request #199 by Zachary Scott.
   * Added --template-stylesheets options to RDoc to allow specification of
     alternate stylesheets.  Pull request #205 by Zachary Scott.
   * Improved performance of the Markdown and RD parsers.  Pull request #217 by
     Ryan Davis.
   * <code>rdoc -v</code> now prints the version instead of enabling verbose
     mode.  Pull request #201 by Lee Jarvis.
   * Running <code>rake newb</code> now automatically installs development
     dependencies if the parser files haven't been built.  Pull request #235 by
     Kouhei Sutou.
   * Moved old DEVELOPERS file to CONTRIBUTING to match github conventions.
   * TomDoc output now has a "Returns" heading.  Issue #234 by Brian Henderson
   * Metaprogrammed methods can now use the :args: directive in addition to the
     :call-seq: durective.  Issue #236 by Mike Moore.
   * Sections can be linked to using "@" like labels.  If a section and a label
     have the same name the section will be preferred.  Issue #233 by Brian
     Henderson.
   * Files that come with a template are hard-linked to save space.  Issue #186
     by Vít Ondruch.
 
 * Bug fixes
   * Applied typo fixes by @dvsuresh from ruby/ruby@2c5dcdf
   * Restored behavior of --no-pager alias -T.  Pull request #223 by ruafozy.
   * Fixed extra whitespace output in the rdoc coverage report.  Bug #210 by
     Ryan Davis.
   * RDoc no longer documents its timestamp file when run on an empty
     directory.  Bug #212 by Rainer Keller
   * HTML escape method names in the table of contents.  Bug #219 by Akinori
     MUSHA.
   * Character literals <code>?h</code> now create a new token type to prevent
     loss of the "?" in output.  Bug #220 by Vipul A M.
   * When looking up a method that does not exist, ri escapes the regular
     expression for fallback searches.  Bug #227 by Aaron Patterson.
   * The ri generator now writes the class method data after +module_function+.
     Bug #222 by Zachary Scott, Ruby bug #8225 by David Unric.

-------------------------------------------------------------------
Mon Apr 22 14:27:37 UTC 2013 - mrueckert@suse.de

- the binaries in this package should be named with -gem to avoid
  conflicts on ruby 1.8

-------------------------------------------------------------------
Mon Apr 22 14:18:56 UTC 2013 - mrueckert@suse.de

- use internal rdoc libraries when building on 1.8

-------------------------------------------------------------------
Sun Apr 14 08:24:35 UTC 2013 - coolo@suse.com

- updated to version 4.0.1
 * Bug fixes
   * RDoc::Options parser should rescue from OptionParser::ParseError.
   * Updated example of RDoc::Options to include reopening RDoc::Options.
     Pointed out by Michael Granger
   * Moved RubyGems documentation installed message into RDoc hook.  For
     RubyGems bug #469 by Jeff Sandberg
   * An Error is now raised when a heredoc is not terminated.  Fixes exceptions
     when processing comment blocks.  Reported by darix
   * rdoc --quiet --no-ignore-invalid now exits for invalid options.  Pull
     request #192 by Jeremy Evans
   * RDoc::Parser::C no longer ignores a (METHOD) cast in rb_define_method.
     Pull request #184 by Carlos Agarie
   * RDoc::Servlet no longer ignores extra directories from -d.  Pull request
     #173 by Thomas Leitner
   * Fixed `rdoc --ri-site`.  Bug #193 by Michal Papis.
   * RDoc no longer attempts to parse binary files.  Bug #189 by postmodern,
     Bug #190 by Christoffer Lervåg, Bug #195 by Aaron Patterson
   * `rdoc --pipe` output now contains <code></code> for markdown compliance.
   * RDoc no longer leaves emacs-style modelines in .txt, .md or .rd files.
     Bug #178 by Zachary Scott
   * RDoc no longer puts raw markup in HTML output for markdown input.  Bug
     #204 by Erik Hollensbe
   * Code objects with nodoc are no longer included in the ri store.  Bug #177
     by Thomas Leitner.
   * Text#snippet now creates a RDoc::Markup::ToHtmlSnippet correctly.
   * The C parser now de-duplicates call-seq if the same C function is used for
     multiple method names.  Bug #203 by Pete Higgins

-------------------------------------------------------------------
Sat Mar 23 08:10:07 UTC 2013 - coolo@suse.com

- updated to version 4.0.0
 * Breaking changes (for more, see History.rdoc)
   * The default output encoding for RDoc is now UTF-8.  Previously RDoc used
     the default external encoding which was determined from your locale.
     Issue #106 by Justin Baker.
   * RDoc::RI::Store is now RDoc::Store so ri data generated by RDoc 4 cannot
     be read by earlier versions of RDoc.  RDoc::RI::Store exists as an alias
     of RDoc::Store so ri data from older versions can still be read.
     RDoc::RI::Store will be removed in RDoc 5.
 
     Tests that create RDoc::CodeObjects on the fly without wiring them into
     the documentation tree (did not use add_class, add_method, etc.) must be
     updated to use these methods.  The documentation tree automatically
     attaches them to the store instance which allows lookups to work
     correctly.  Additionally, a new method RDoc::Store#add_file must be used
     instead of RDoc::TopLevel.new.  The latter will not be attached to the
     documentation tree.
   * RDoc generators must accept an RDoc::Store and an RDoc::Options in
     initialize.  RDoc no longer passes an Array of RDoc::TopLevel objects to
     #generate.  Use RDoc::Store#all_files instead.
   * Some markup formatters (RDoc::Markup::To*) now accept an RDoc::Options
     instance as the first argument.  Notably, the base class Formatter and
     ToHtml*.  (This is not universal due to the difficult at accessing the
     user's options instance deep inside RDoc.  A future major release may
     remedy this.)
   * Added new markup nodes and specials that RDoc::Markup::Formatter
     subclasses must handle.  If you're using RDoc::Markup::FormatterTestCase
     the new methods you need to add should be readily apparent.
   * Removed RDoc::RI::Paths::SYSDIR and ::SITEDIR.  These were hidden
     constants so no breakage is expected.  Use RDoc::RI::Paths::system_dir
     and ::site_dir instead.
   * RDoc::RI::Store#modules has been renamed to RDoc::Store#module_names
     to avoid confusion with RDoc::Store#all_modules imported from
     RDoc::TopLevel.
   * RDoc::RDocError has been removed.  It was deprecated throughout RDoc 3.
   * ri -f html is no longer supported.
   * Comment definitions in C comments are now only discovered from the first
     line.  A colon on a subsequent line won't trigger definition extraction.
     Issue #103, see also
     http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/42942
   * Fixed :stopdoc: for class A::B where A has not been seen.  Issue #95 by
     Ryan Davis
   * RDoc::ClassModule#each_ancestor no longer yields itself if there is
     circular ancestry

-------------------------------------------------------------------
Thu Feb 21 12:47:09 UTC 2013 - coolo@suse.com

- updated to version 3.12.1
  RDoc documentation generated by rdoc 2.3.0 through rdoc 3.12 and prereleases up
  to rdoc 4.0.0.preview2.1 are vulnerable to an XSS exploit.  This exploit may
  lead to cookie disclosure to third parties.

-------------------------------------------------------------------
Sat Jul 28 05:52:32 UTC 2012 - coolo@suse.com

- use latest gem2rpm 

-------------------------------------------------------------------
Mon May 14 10:35:04 UTC 2012 - cfarrell@suse.com

- license update: Ruby
  According to spdx.org/licenses the Ruby license encompasses both the
  GPL-2.0 _and_ the artistic like ruby license

-------------------------------------------------------------------
Sat May 12 19:26:46 UTC 2012 - coolo@suse.com

- update to 3.12
* Minor enhancements
  * Added DEVELOPERS document which contains an overview of how RDoc works and
    how to add new features to RDoc.
  * Improved title for HTML output to include --title in the
    title element.
  * rdoc --pipe now understands --markup.
  * RDoc now supports irc-scheme hyperlinks.  Issue #83 by trans.

* Bug fixes
  * Fix title on HTML output for pages.
  * Fixed parsing of non-indented HEREDOC.
  * Fixed parsing of %w[] and other % literals.  Issue #84 by
    Erik Hollensbe
  * Fixed arrow replacement in HTML output munging the spaceship operator.
    Issue #85 by eclectic923.
  * Verbatim sections with ERB that match the ruby code whitelist are no
    longer syntax-highlighted.  Issue #86 by eclectic923
  * Line endings on windows are normalized immediately after reading with
    binmode.  Issue #87 by Usa Nakamura
  * RDoc better understands directives for comments.  Comment directives can
    now be found anywhere in multi-line comments.  Issue #90 by Ryan Davis
  * Tidy links to methods show the label again.  Issue #88 by Simon Chiang
  * RDoc::Parser::C can now find comments directly above
    rb_define_class_under.  Issue #89 by Enrico
  * In rdoc, backspace and ansi formatters, labels and notes without bodies
    are now shown.
  * In rdoc, backspace and ansi formatters, whitespace between label or note
    and the colon is now stripped.

-------------------------------------------------------------------
Mon Feb 13 10:55:07 UTC 2012 - coolo@suse.com

- patch license to follow spdx.org standard

-------------------------------------------------------------------
Wed Nov  2 15:47:41 UTC 2011 - mrueckert@suse.de

- update to 3.11
  /usr/lib*/ruby/gems/1.8/gems/rdoc-3.11/History.txt
- new requires on rubygem-json-1 >= 1.4
- also provide the single digit name

-------------------------------------------------------------------
Tue Aug  2 11:07:54 UTC 2011 - mrueckert@suse.de

- update to 3.9.1
  /usr/lib*/ruby/gems/1.8/gems/rdoc-3.9.1/History.txt

-------------------------------------------------------------------
Wed Jul 20 16:52:01 UTC 2011 - mrueckert@suse.de

- update to 3.8
  /usr/lib*/ruby/gems/1.8/gems/rdoc-3.8/History.txt

-------------------------------------------------------------------
Wed Dec  8 11:31:27 UTC 2010 - mrueckert@suse.de

- recommend rdoc-data

-------------------------------------------------------------------
Wed Dec  8 00:16:47 UTC 2010 - mrueckert@suse.de

- suffix scripts with "-gem" to avoid conflicts with the main ruby
  package

-------------------------------------------------------------------
Tue Dec  7 23:30:13 UTC 2010 - mrueckert@suse.de

- initial package version 2.5.11

openSUSE Build Service is sponsored by