Sha256: 9378cf93b26de05d3d74bbe4a7fc76b0644be5a3ec17d318f652f83d762d4e5a

Contents?: true

Size: 1.02 KB

Versions: 7

Compression:

Stored size: 1.02 KB

Contents

== Release 0.5.0: Jun 6, 2004

* Jim added the ability to specify version constraints to avoid API
  incompatibilities.  This has been the subject of much debate for the past
  couple of months, with many ideas and code contributed by Eivind Eklund and
  Mauricio Fernandez.  The following set of assertions shows how it works:

    assert_inadequate("1.3", "~> 1.4")
    assert_adequate(  "1.4", "~> 1.4")
    assert_adequate(  "1.5", "~> 1.4")
    assert_inadequate("2.0", "~> 1.4") # This one is key--the new operator
				       # disallows major version number
				       # differences.

* Group gem search output when multiple versions exist for a given gem:

    activerecord (0.7.8, 0.7.7, 0.7.6, 0.7.5)
      Implements the ActiveRecord pattern for ORM.

* Add arbitrary RDoc-able files via gemspec (not just Ruby source files) for
  people who have, for example, README.rdoc in their distributions.  Add to
  gemspec via: spec.extra_rdoc_files = ["list", "of", "files"].  Ruby files are
  automatically included.

* Some small bug fixes

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rubygems-update-1.3.0 doc/release_notes/rel_0_5_0.rdoc
rubygems-update-1.3.3 doc/release_notes/rel_0_5_0.rdoc
rubygems-update-1.3.1 doc/release_notes/rel_0_5_0.rdoc
rubygems-update-1.3.2 doc/release_notes/rel_0_5_0.rdoc
rubygems-update-1.3.4 doc/release_notes/rel_0_5_0.rdoc
rubygems-update-1.1.1 doc/release_notes/rel_0_5_0.rdoc
rubygems-update-1.2.0 doc/release_notes/rel_0_5_0.rdoc