rubygems-update 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rubygems-update might be problematic. Click here for more details.

Files changed (76) hide show
  1. data.tar.gz.sig +0 -0
  2. data/ChangeLog +79 -0
  3. data/README +1 -3
  4. data/Rakefile +61 -49
  5. data/doc/release_notes/docs-rubygems-announce.rdoc +29 -0
  6. data/doc/release_notes/rel_0_2_0.rdoc +4 -0
  7. data/doc/release_notes/rel_0_3_0.rdoc +21 -0
  8. data/doc/release_notes/rel_0_4_0.rdoc +4 -0
  9. data/doc/release_notes/rel_0_5_0.rdoc +26 -0
  10. data/doc/release_notes/rel_0_6_0.rdoc +16 -0
  11. data/doc/release_notes/rel_0_7_0.rdoc +4 -0
  12. data/doc/release_notes/rel_0_8_0.rdoc +23 -0
  13. data/doc/release_notes/rel_0_8_1.rdoc +4 -0
  14. data/doc/release_notes/rel_0_8_10.rdoc +70 -0
  15. data/doc/release_notes/rel_0_8_11.rdoc +102 -0
  16. data/doc/release_notes/rel_0_8_3.rdoc +113 -0
  17. data/doc/release_notes/rel_0_8_4.rdoc +51 -0
  18. data/doc/release_notes/rel_0_8_5.rdoc +117 -0
  19. data/doc/release_notes/rel_0_8_7.rdoc +135 -0
  20. data/doc/release_notes/rel_0_9_0.rdoc +109 -0
  21. data/doc/release_notes/rel_0_9_2.rdoc +69 -0
  22. data/doc/release_notes/rel_0_9_3.rdoc +66 -0
  23. data/doc/release_notes/rel_0_9_4.rdoc +67 -0
  24. data/doc/release_notes/rel_0_9_5.rdoc +108 -0
  25. data/doc/release_notes/rel_1_0_0.rdoc +67 -0
  26. data/doc/release_notes/rel_1_0_1.rdoc +56 -0
  27. data/doc/release_notes/rel_1_1_0.rdoc +85 -0
  28. data/doc/release_notes/rel_1_1_1.rdoc +64 -0
  29. data/lib/rubygems.rb +29 -5
  30. data/lib/rubygems/command_manager.rb +1 -1
  31. data/lib/rubygems/commands/environment_command.rb +1 -1
  32. data/lib/rubygems/commands/pristine_command.rb +1 -0
  33. data/lib/rubygems/commands/query_command.rb +4 -2
  34. data/lib/rubygems/commands/update_command.rb +7 -4
  35. data/lib/rubygems/dependency_installer.rb +8 -2
  36. data/lib/rubygems/doc_manager.rb +6 -0
  37. data/lib/rubygems/indexer.rb +1 -1
  38. data/lib/rubygems/remote_fetcher.rb +3 -1
  39. data/lib/rubygems/rubygems_version.rb +1 -1
  40. data/lib/rubygems/server.rb +5 -5
  41. data/lib/rubygems/source_index.rb +7 -14
  42. data/lib/rubygems/source_info_cache.rb +29 -10
  43. data/lib/rubygems/version_option.rb +1 -2
  44. data/setup.rb +33 -19
  45. data/test/gemutilities.rb +13 -0
  46. data/test/test_gem.rb +58 -21
  47. data/test/test_gem_commands_environment_command.rb +1 -1
  48. data/test/test_gem_commands_query_command.rb +6 -4
  49. data/test/test_gem_commands_update_command.rb +1 -0
  50. data/test/test_gem_dependency_installer.rb +2 -0
  51. data/test/test_gem_remote_fetcher.rb +3 -2
  52. data/test/test_gem_server.rb +1 -1
  53. data/test/test_gem_source_index.rb +16 -0
  54. data/test/test_gem_source_info_cache.rb +22 -1
  55. metadata +32 -32
  56. metadata.gz.sig +2 -2
  57. data/doc/doc.css +0 -73
  58. data/doc/makedoc.rb +0 -10
  59. data/examples/application/an-app.gemspec +0 -30
  60. data/examples/application/bin/myapp +0 -3
  61. data/examples/application/ext/Makefile +0 -139
  62. data/examples/application/ext/extconf.rb +0 -3
  63. data/examples/application/ext/foo.c +0 -1
  64. data/examples/application/lib/somefunctionality.rb +0 -9
  65. data/gemspecs/README +0 -4
  66. data/gemspecs/cgikit-1.1.0.gemspec +0 -17
  67. data/gemspecs/jabber4r.gemspec +0 -26
  68. data/gemspecs/linguistics.gemspec +0 -22
  69. data/gemspecs/ook.gemspec +0 -21
  70. data/gemspecs/progressbar.gemspec +0 -22
  71. data/gemspecs/redcloth.gemspec +0 -22
  72. data/gemspecs/rublog.gemspec +0 -23
  73. data/gemspecs/ruby-doom.gemspec +0 -21
  74. data/gemspecs/rubyjdwp.gemspec +0 -21
  75. data/gemspecs/statistics.gemspec +0 -21
  76. data/redist/session.gem +0 -433
data.tar.gz.sig CHANGED
Binary file
data/ChangeLog CHANGED
@@ -1,3 +1,82 @@
1
+ 2008-04-10 Eric Hodel <drbrain@segment7.net>
2
+
3
+ * lib/rubygems.rb: Fix Gem.prefix so it reports nil when rubygems.rb
4
+ is in sitelibdir, libdir, or doesn't have 'lib' as a parent directory.
5
+ * doc/release_notes/rel_1_1_1.rdoc: RubyGems 1.1.1 release notes.
6
+ * lib/rubygems/rubygems_version.rb: 1.1.1.
7
+
8
+ 2008-04-07 Eric Hodel <drbrain@segment7.net>
9
+
10
+ * lib/rubygems/server.rb: Fix fragment URIs. Patch by James Tucker.
11
+ * lib/rubygems/commands/update_command.rb: Pass
12
+ --no-format-executable to setup.rb. Patch by Stephen Bannasch.
13
+
14
+ 2008-04-06 Chad Woolley <thewoolleyman@gmail.com>
15
+
16
+ * lib/rubygems.rb: Add setter Gems.platforms=, to allow platforms
17
+ to be set/reset when invoking or testing RubyGems programatically.
18
+ Also force Gems.platforms to automatically reset to default of
19
+ [Gem::Platform::RUBY, Gem::Platform.local] if cleared.
20
+ * lib/rubygems/version_option.rb: Change add_platform_option
21
+ to initialize Gem.platforms to contain only Gem::Platform::RUBY
22
+
23
+ 2008-04-04 Eric Hodel <drbrain@segment7.net>
24
+
25
+ * lib/rubygems/source_index.rb: Make Gem::SourceIndex#refresh!
26
+ more-correct. Reported by Paul Haddad.
27
+ * lib/rubygems.rb: Add Gem::refresh. Bug #19176 by Hongli Lai.
28
+ * lib/rubygems/dependency_installer.rb: Put downloaded gems into
29
+ install_dir's cache. Patch #19182 by Richard Brown.
30
+
31
+ 2008-04-03 Eric Hodel <drbrain@segment7.net>
32
+
33
+ * lib/rubygems/source_info_cache.rb: Merge full cache file into
34
+ latest data. Don't write cache files when checking for them. Only
35
+ update full cache file when we've read it. Refresh all data when
36
+ loading all data.
37
+ * lib/rubygems/dependency_installer.rb: Fix --force to work without
38
+ network for dependent gems. Fix all-fetching test.
39
+ * lib/rubygems/commands/query_command.rb: Obey --all flag for gem
40
+ query.
41
+ * lib/rubygems/commands/environment_command.rb: Don't display
42
+ RubyGemsPackageVersion.
43
+ * lib/rubygems/indexer.rb: Fix typo. Patch by Tom Copeland.
44
+ * lib/rubygems/command_manager.rb: Display RubyGemsVersion with
45
+ --version.
46
+ * lib/rubygems/commands/pristine_command.rb: Rebuild extensions along
47
+ with everything else. Patch #19281 by Dr. Nic Williams.
48
+
49
+ 2008-04-01 Eric Hodel <drbrain@segment7.net>
50
+
51
+ * lib/rubygems.rb: Fix prefix to point to directory above RubyGems,
52
+ so RubyGems will be installed into lib/.
53
+ * setup.rb: Work around apple's libdir-installed RubyGems, by
54
+ installing into sitelibdir.
55
+ * Rakefile: Add svnversion to RubyGems version number for `rake
56
+ install`.
57
+
58
+ 2008-03-31 Luis Lavena <luislavena@gmail.com>
59
+
60
+ * test/: Allow tests to use a random (but controlled) port number
61
+ instead of a hardcoded one. This helps CI tools when running
62
+ parallels builds.
63
+
64
+ 2008-03-30 Luis Lavena <luislavena@gmail.com>
65
+
66
+ * test/test_gem.rb: Leave APPLE_GEM_HOME tests only to *nixes.
67
+ * lib/rubygems/remote_fetcher.rb: Errno::ECONNABORTED raised on Windows
68
+ on closed Keep-Alive connections.
69
+
70
+ 2008-03-29 Eric Hodel <drbrain@segment7.net>
71
+
72
+ * gemspecs/: Removed.
73
+ * examples/: Removed.
74
+ * doc/design/: Removed.
75
+ * doc/rdoc_templates/: Removed.
76
+ * Rakefile: Package doc/release_notes/.
77
+ * setup.rb: Use full path to release_notes, ensure RDoc can be
78
+ both removed and installed.
79
+
1
80
  2008-03-28 Eric Hodel <drbrain@segment7.net>
2
81
 
3
82
  * bin/gem, Rakefile: RubyGems now requires Ruby > 1.8.3.
data/README CHANGED
@@ -32,10 +32,8 @@ For more details and other options, see:
32
32
 
33
33
  [./bin/...] binary commands (gem, gem_server, etc)
34
34
  [./lib/...] the RubyGems library
35
- [./packages/...] default RubyGems packages (currently only 'sources')
35
+ [./pkgs/...] default RubyGems packages (currently only 'sources')
36
36
  [./test/...] unit and functional tests
37
- [./examples/...] example library w/gemspec for generating and installing gems
38
- [./gemspecs/...] example gemspecs
39
37
 
40
38
  == Credits
41
39
 
data/Rakefile CHANGED
@@ -6,6 +6,8 @@
6
6
  # See LICENSE.txt for permissions.
7
7
  #++
8
8
 
9
+ $:.unshift 'lib'
10
+
9
11
  require 'rubygems'
10
12
  require 'rake/clean'
11
13
  require 'rake/testtask'
@@ -14,10 +16,22 @@ require 'rake/gempackagetask'
14
16
  require 'rake/rdoctask'
15
17
 
16
18
  def announce(msg='')
17
- STDERR.puts msg
19
+ $stderr.puts msg
20
+ end
21
+
22
+ def generate_rubygems_version(path, version)
23
+ open path, 'w' do |f|
24
+ f.puts <<-EOF
25
+ # DO NOT EDIT
26
+ # This file is auto-generated by build scripts.
27
+ # See: rake update_version
28
+ module Gem
29
+ RubyGemsVersion = '#{version}'
30
+ end
31
+ EOF
32
+ end
18
33
  end
19
34
 
20
- # Disable certs for now.
21
35
  if RUBY_PLATFORM.match('mswin')
22
36
  ENV['CERT_DIR'] ||= (File.join(ENV['USERPROFILE'], '.gem'))
23
37
  else
@@ -88,15 +102,15 @@ task :build_tests do
88
102
  open("#{html_dir}/summary.html") do |inf|
89
103
  open("#{html_dir}/summary.new", "w") do |outf|
90
104
  inf.each do |line|
91
- if line =~ /td align/
92
- line = " <td align=\"left\">#{Time.now}</td><td align=\"right\">"
93
- end
94
- outf.puts line
105
+ if line =~ /td align/
106
+ line = " <td align=\"left\">#{Time.now}</td><td align=\"right\">"
107
+ end
108
+ outf.puts line
95
109
  end
96
110
  end
97
111
  end
98
112
  mv "#{html_dir}/summary.html", "#{html_dir}/summary.old"
99
- mv "#{html_dir}/summary.new", "#{html_dir}/summary.html"
113
+ mv "#{html_dir}/summary.new", "#{html_dir}/summary.html"
100
114
  end
101
115
 
102
116
  # Shortcuts for test targets
@@ -119,33 +133,31 @@ task :release => [
119
133
  :update_version,
120
134
  :package,
121
135
  :tag] do
122
-
123
- announce
136
+
137
+ announce
124
138
  announce "**************************************************************"
125
139
  announce "* Release #{PKG_VERSION} Complete."
126
140
  announce "* Packages ready to upload."
127
141
  announce "**************************************************************"
128
- announce
142
+ announce
129
143
  end
130
144
 
131
- # Validate that everything is ready to go for a release.
145
+ desc "Validate that everything is ready to go for a release."
132
146
  task :prerelease do
133
- announce
147
+ announce
134
148
  announce "**************************************************************"
135
149
  announce "* Making RubyGem Release #{PKG_VERSION}"
136
150
  announce "* (current version #{CURRENT_VERSION})"
137
151
  announce "**************************************************************"
138
- announce
152
+ announce
139
153
 
140
154
  # Is a release number supplied?
141
- unless ENV['REL']
142
- fail "Usage: rake release REL=x.y.z [REUSE=tag_suffix]"
143
- end
155
+ raise "Usage: rake release REL=x.y.z [REUSE=tag_suffix]" unless ENV['REL']
144
156
 
145
157
  # Is the release different than the current release.
146
158
  # (or is REUSE set?)
147
159
  if PKG_VERSION == CURRENT_VERSION && ! ENV['REUSE']
148
- fail "Current version is #{PKG_VERSION}, must specify REUSE=tag_suffix to reuse version"
160
+ raise "Current version is #{PKG_VERSION}, must specify REUSE=tag_suffix to reuse version"
149
161
  end
150
162
 
151
163
  # Are all source files checked in?
@@ -166,14 +178,9 @@ task :update_version => [:prerelease] do
166
178
  announce "No version change ... skipping version update"
167
179
  else
168
180
  announce "Updating RubyGem version to #{PKG_VERSION}"
169
- open("lib/rubygems/rubygems_version.rb", "w") do |f|
170
- f.puts "# DO NOT EDIT"
171
- f.puts "# This file is auto-generated by build scripts."
172
- f.puts "# See: rake update_version"
173
- f.puts "module Gem"
174
- f.puts " RubyGemsVersion = '#{PKG_VERSION}'"
175
- f.puts "end"
176
- end
181
+
182
+ generate_rubygems_version 'lib/rubygems/rubygems_version.rb', PKG_VERSION
183
+
177
184
  if ENV['RELTEST']
178
185
  announce "Release Task Testing, skipping commiting of new version"
179
186
  else
@@ -214,14 +221,13 @@ end
214
221
  # Create a task to build the RDOC documentation tree.
215
222
 
216
223
  desc "Create the RDOC html files"
217
- rd = Rake::RDocTask.new("rdoc") { |rdoc|
224
+ Rake::RDocTask.new("rdoc") { |rdoc|
218
225
  rdoc.rdoc_dir = 'html'
219
226
  rdoc.title = "RubyGems"
220
227
  rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README'
221
228
  rdoc.rdoc_files.include('README', 'TODO', 'LICENSE.txt', 'GPL.txt')
222
229
  rdoc.rdoc_files.include('lib/**/*.rb')
223
230
  rdoc.rdoc_files.include('doc/**/*.rdoc')
224
- # rdoc.rdoc_files.include('test/**/*.rb')
225
231
  }
226
232
 
227
233
  desc "Publish the RDOCs on RubyForge"
@@ -261,19 +267,20 @@ end
261
267
  # Package tasks
262
268
 
263
269
  PKG_FILES = FileList[
264
- "Rakefile", "ChangeLog", "TODO", "README", "LICENSE.txt",
270
+ ".document",
271
+ "ChangeLog",
265
272
  "GPL.txt",
266
- "setup.rb",
273
+ "LICENSE.txt",
274
+ "README",
275
+ "Rakefile",
276
+ "TODO",
267
277
  "bin/*",
268
- "doc/*.css", "doc/*.rb",
269
- "examples/**/*",
270
- "gemspecs/**/*",
278
+ "doc/release_notes/*",
271
279
  "lib/**/*.rb",
272
280
  "pkgs/**/*",
273
- "redist/*.gem",
274
281
  "scripts/*.rb",
275
- "test/**/*",
276
- ".document"
282
+ "setup.rb",
283
+ "test/**/*"
277
284
  ]
278
285
  PKG_FILES.exclude(%r(^test/temp(/|$)))
279
286
 
@@ -322,34 +329,39 @@ file "pkg/rubygems-update.gemspec" => ["pkg", "Rakefile"] do |t|
322
329
  open(t.name, "w") do |f| f.puts Spec.to_yaml end
323
330
  end
324
331
 
325
- # Install RubyGems
326
-
327
332
  desc "Install RubyGems"
328
333
  task :install do
329
334
  ruby 'setup.rb'
330
- end
331
335
 
332
- # Run 'gem' (using local bin and lib directories).
333
- # e.g.
334
- # rake rungem -- install -r blahblah --test
336
+ svnversion = `svnversion`.split(':').last.sub(/[^\d]/, '').strip
337
+
338
+ unless svnversion.empty? then
339
+ current_version = Gem::RubyGemsVersion.split '.', 4
340
+ rubygems_version = (current_version[0, 3] << svnversion).join '.'
341
+ rubygems_version_file = File.join Gem::ConfigMap[:sitelibdir], 'rubygems',
342
+ 'rubygems_version.rb'
343
+
344
+ generate_rubygems_version rubygems_version_file, rubygems_version
345
+ end
346
+ end
335
347
 
336
- desc "Run local 'gem'"
348
+ desc "Run local 'gem' e.g. rake rungem -- install -i ~/tmp/gems"
337
349
  task :rungem do
338
350
  ARGV.shift
339
- exec "ruby -Ilib bin/gem #{ARGV.join(' ')}"
351
+ exec(Gem.ruby, '-Ilib', 'bin/gem', *ARGV)
340
352
  end
341
353
 
342
354
  # Misc Tasks ---------------------------------------------------------
343
355
 
344
356
  def egrep(pattern)
345
- Dir['**/*.rb'].each do |fn|
357
+ Dir['{bin,lib,test,util}/**/*.rb'].each do |fn|
346
358
  count = 0
347
359
  open(fn) do |f|
348
360
  while line = f.gets
349
- count += 1
350
- if line =~ pattern
351
- puts "#{fn}:#{count}:#{line}"
352
- end
361
+ count += 1
362
+ if line =~ pattern
363
+ puts "#{fn}:#{count}:#{line}"
364
+ end
353
365
  end
354
366
  end
355
367
  end
@@ -366,7 +378,7 @@ task :dbg do
366
378
  end
367
379
 
368
380
  desc "List all ruby files"
369
- task :rubyfiles do
381
+ task :rubyfiles do
370
382
  puts Dir['**/*.rb'].reject { |fn| fn =~ /^pkg/ }
371
383
  puts Dir['bin/*'].reject { |fn| fn =~ /CVS|(~$)|(\.rb$)/ }
372
384
  end
@@ -0,0 +1,29 @@
1
+ == Announcing the RubyGems Documentation Site
2
+
3
+ http://docs.rubygems.org
4
+
5
+ Concurrent with RubyGems 0.8.7, I am very pleased to announce the
6
+ public release of the RubyGems documentation website. This site is
7
+ built upon the excellent Hieraki application (the same one used to
8
+ document Ruby on Rails).
9
+
10
+ After fighting with wiki spammers and missing data, the RubyGems team
11
+ decided to move the documentation to something a little more durable
12
+ than a wiki page. The content from the wiki pages have been reviewed,
13
+ reorganized, and moved to the docs.rubygems.org site.
14
+
15
+ The move is not complete, there is still information on the wiki that
16
+ has not made it into the RubyGems document set yet. But we will
17
+ continue to convert the site as time goes on.
18
+
19
+ We feel the Hieraki application gives us a much better opportunity to
20
+ provide quality documentation for the RubyGems system. We hope you
21
+ enjoy it.
22
+
23
+ Thanks to Tobias L�tke for Hieraki and to Bruce Williams for the
24
+ RubyGems icon.
25
+
26
+ If you are interested in helping with the RubyGems documentation,
27
+ please contact Jim Weirich (jim@weirichhouse.org) or Chad Fowler
28
+ (chad@chadfowler.com) about becoming an RubyGems document author.
29
+
@@ -0,0 +1,4 @@
1
+ == Release 0.2.0: March 14, 2004
2
+
3
+ * Initial public release
4
+
@@ -0,0 +1,21 @@
1
+ == Release 0.3.0: April 30, 2004
2
+
3
+ * Cleanup of command-line arguments and handling. Most commands accept a
4
+ --local or --remote modifier.
5
+ * Creation of Application Gems (packages that include executable programs).
6
+ See http://rubygems.rubyforge.org/wiki/wiki.pl?DeveloperGuide for information
7
+ on how to use it.
8
+ * Basic functionality for installing binary gems from source (:extensions
9
+ property of gem specification holds an array of paths to extconf.rb files to
10
+ be used for compilation)
11
+ * Install library "stub" allowing a normal 'require' to work (which then does
12
+ the rubygems require and 'require_gem'
13
+ * --run-tests runs the test suite specified by the "test_suite_file" property
14
+ of a gem specification
15
+ * HTTP Proxy support works. Rewrite of HTTP code.
16
+ * Unit and functional tests added (see Rakefile).
17
+ * Prompt before remote-installing dependencies during gem installation.
18
+ * Config file for storing preferences for 'gem' command usage.
19
+ * Generally improved error messages (still more work to do)
20
+ * Rearranged gem directory structure for cleanliness.
21
+
@@ -0,0 +1,4 @@
1
+ == Release 0.4.0: May 31, 2004
2
+
3
+ * Minor bug fixes including Windows compatability issues
4
+
@@ -0,0 +1,26 @@
1
+ == Release 0.5.0: Jun 6, 2004
2
+
3
+ * Jim added the ability to specify version constraints to avoid API
4
+ incompatibilities. This has been the subject of much debate for the past
5
+ couple of months, with many ideas and code contributed by Eivind Eklund and
6
+ Mauricio Fernandez. The following set of assertions shows how it works:
7
+
8
+ assert_inadequate("1.3", "~> 1.4")
9
+ assert_adequate( "1.4", "~> 1.4")
10
+ assert_adequate( "1.5", "~> 1.4")
11
+ assert_inadequate("2.0", "~> 1.4") # This one is key--the new operator
12
+ # disallows major version number
13
+ # differences.
14
+
15
+ * Group gem search output when multiple versions exist for a given gem:
16
+
17
+ activerecord (0.7.8, 0.7.7, 0.7.6, 0.7.5)
18
+ Implements the ActiveRecord pattern for ORM.
19
+
20
+ * Add arbitrary RDoc-able files via gemspec (not just Ruby source files) for
21
+ people who have, for example, README.rdoc in their distributions. Add to
22
+ gemspec via: spec.extra_rdoc_files = ["list", "of", "files"]. Ruby files are
23
+ automatically included.
24
+
25
+ * Some small bug fixes
26
+
@@ -0,0 +1,16 @@
1
+ == Release 0.6.0: Jun 8, 2004
2
+
3
+ * Collapse output of --search and --list (and gem_server) operations so that
4
+ each gem is listed only once, with each of its versions listed on the same
5
+ line.
6
+
7
+ * bin/gem: new --upgrade-all option allows one to upgrade every installed gem
8
+
9
+ * new #required_ruby_version attribute added to gem specification for
10
+ specifying a dependency on which version of ruby the gem needs. Format it
11
+ accepts is the same as the Gem::Version::Requirement format:
12
+
13
+ spec.required_ruby_version = "> 1.8.0"
14
+
15
+ * --install-stub defaults to true, so library stubs are created
16
+
@@ -0,0 +1,4 @@
1
+ == Release 0.7.0: Jul 9, 2004
2
+
3
+ * See ChangeLog.
4
+
@@ -0,0 +1,23 @@
1
+ == Release 0.8.0: Sep 12, 2004
2
+
3
+ * Remove need for library stubs. Set the RUBYOPT environment variable to
4
+ include "rrubygems", and a normal require will find gem files. Continue to
5
+ use 'require_gem gem_name, version' to specify gem versions.
6
+ * Deprecated "test_suite_file" gemspec attribute in favor of "test_files" array.
7
+ * Generates rdoc by default on installs.
8
+ * Adopted tar/gzip file format, thanks to Mauricio Fernandez.
9
+ * "gem rdoc" allows generation of rdoc after gem installation (will add a "gem
10
+ test"
11
+ * Application stubs can now accept an optional parameter of _VERSION_ that will
12
+ run an arbitrary version of the application requested.
13
+ * Various bug fixes
14
+ * Various platform-independency improvements
15
+ * "gem spec --all" displays spec info for all installed version of a given gem.
16
+ * Dynamic caching of sources
17
+ * Support for user-definable sources on the command line (thanks Assaph Mehr)
18
+ * More intelligent support for platform-dependent gems. Use Platform::CURRENT
19
+ when building a gem to set its platform to the one you're building on.
20
+ Installation displays a choice of platform-dependent gems, allowing the user
21
+ to pick.
22
+ * Added "gem unpack" for "unpacking" a gem to the current directory
23
+