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.
- data.tar.gz.sig +0 -0
- data/ChangeLog +79 -0
- data/README +1 -3
- data/Rakefile +61 -49
- data/doc/release_notes/docs-rubygems-announce.rdoc +29 -0
- data/doc/release_notes/rel_0_2_0.rdoc +4 -0
- data/doc/release_notes/rel_0_3_0.rdoc +21 -0
- data/doc/release_notes/rel_0_4_0.rdoc +4 -0
- data/doc/release_notes/rel_0_5_0.rdoc +26 -0
- data/doc/release_notes/rel_0_6_0.rdoc +16 -0
- data/doc/release_notes/rel_0_7_0.rdoc +4 -0
- data/doc/release_notes/rel_0_8_0.rdoc +23 -0
- data/doc/release_notes/rel_0_8_1.rdoc +4 -0
- data/doc/release_notes/rel_0_8_10.rdoc +70 -0
- data/doc/release_notes/rel_0_8_11.rdoc +102 -0
- data/doc/release_notes/rel_0_8_3.rdoc +113 -0
- data/doc/release_notes/rel_0_8_4.rdoc +51 -0
- data/doc/release_notes/rel_0_8_5.rdoc +117 -0
- data/doc/release_notes/rel_0_8_7.rdoc +135 -0
- data/doc/release_notes/rel_0_9_0.rdoc +109 -0
- data/doc/release_notes/rel_0_9_2.rdoc +69 -0
- data/doc/release_notes/rel_0_9_3.rdoc +66 -0
- data/doc/release_notes/rel_0_9_4.rdoc +67 -0
- data/doc/release_notes/rel_0_9_5.rdoc +108 -0
- data/doc/release_notes/rel_1_0_0.rdoc +67 -0
- data/doc/release_notes/rel_1_0_1.rdoc +56 -0
- data/doc/release_notes/rel_1_1_0.rdoc +85 -0
- data/doc/release_notes/rel_1_1_1.rdoc +64 -0
- data/lib/rubygems.rb +29 -5
- data/lib/rubygems/command_manager.rb +1 -1
- data/lib/rubygems/commands/environment_command.rb +1 -1
- data/lib/rubygems/commands/pristine_command.rb +1 -0
- data/lib/rubygems/commands/query_command.rb +4 -2
- data/lib/rubygems/commands/update_command.rb +7 -4
- data/lib/rubygems/dependency_installer.rb +8 -2
- data/lib/rubygems/doc_manager.rb +6 -0
- data/lib/rubygems/indexer.rb +1 -1
- data/lib/rubygems/remote_fetcher.rb +3 -1
- data/lib/rubygems/rubygems_version.rb +1 -1
- data/lib/rubygems/server.rb +5 -5
- data/lib/rubygems/source_index.rb +7 -14
- data/lib/rubygems/source_info_cache.rb +29 -10
- data/lib/rubygems/version_option.rb +1 -2
- data/setup.rb +33 -19
- data/test/gemutilities.rb +13 -0
- data/test/test_gem.rb +58 -21
- data/test/test_gem_commands_environment_command.rb +1 -1
- data/test/test_gem_commands_query_command.rb +6 -4
- data/test/test_gem_commands_update_command.rb +1 -0
- data/test/test_gem_dependency_installer.rb +2 -0
- data/test/test_gem_remote_fetcher.rb +3 -2
- data/test/test_gem_server.rb +1 -1
- data/test/test_gem_source_index.rb +16 -0
- data/test/test_gem_source_info_cache.rb +22 -1
- metadata +32 -32
- metadata.gz.sig +2 -2
- data/doc/doc.css +0 -73
- data/doc/makedoc.rb +0 -10
- data/examples/application/an-app.gemspec +0 -30
- data/examples/application/bin/myapp +0 -3
- data/examples/application/ext/Makefile +0 -139
- data/examples/application/ext/extconf.rb +0 -3
- data/examples/application/ext/foo.c +0 -1
- data/examples/application/lib/somefunctionality.rb +0 -9
- data/gemspecs/README +0 -4
- data/gemspecs/cgikit-1.1.0.gemspec +0 -17
- data/gemspecs/jabber4r.gemspec +0 -26
- data/gemspecs/linguistics.gemspec +0 -22
- data/gemspecs/ook.gemspec +0 -21
- data/gemspecs/progressbar.gemspec +0 -22
- data/gemspecs/redcloth.gemspec +0 -22
- data/gemspecs/rublog.gemspec +0 -23
- data/gemspecs/ruby-doom.gemspec +0 -21
- data/gemspecs/rubyjdwp.gemspec +0 -21
- data/gemspecs/statistics.gemspec +0 -21
- data/redist/session.gem +0 -433
@@ -0,0 +1,70 @@
|
|
1
|
+
= Announce: RubyGems Release 0.8.10
|
2
|
+
|
3
|
+
Version 0.8.10 is bug fix release. We address two bugs in this
|
4
|
+
release, one obscure and the other only slightly annoying.
|
5
|
+
|
6
|
+
In multi-user environments, it is common to supply mulitple versions
|
7
|
+
of gems (for example Rails), allowing individual users to select the
|
8
|
+
version of the gem they desire. This allows a user to be insulated
|
9
|
+
from updates to that gem. RubyGems 0.8.10 fixes a problem where gems
|
10
|
+
could occasionally become confused about the current versions of
|
11
|
+
libraries selected by the user.
|
12
|
+
|
13
|
+
The other annoying bug is that if there are any existing
|
14
|
+
rubygems-update gems installed, then the "gem update --system" command
|
15
|
+
will download a new udpate, but install the latest update prior to the
|
16
|
+
download.
|
17
|
+
|
18
|
+
== What is RubyGems?
|
19
|
+
|
20
|
+
RubyGems is a package management system for Ruby applications and
|
21
|
+
libraries. RubyGems one command download makes installing Ruby software
|
22
|
+
fun and enjoyable again. (Ok, not really.)
|
23
|
+
|
24
|
+
Many gems are available for download from the RubyForge site. Browse
|
25
|
+
the list of gems with a "gem list --remote" command and download what
|
26
|
+
you need with a simple "gem install <name-of-gem>". RubyGems takes care
|
27
|
+
of the details of installing, not only the gem you requested, but also
|
28
|
+
any gems needed by the software you selected.
|
29
|
+
|
30
|
+
== RubyGems Statistics
|
31
|
+
|
32
|
+
* About 230 different gems available (I say _about_ because I don't
|
33
|
+
think "Bangkok" and "bangkok" are really different gems).
|
34
|
+
* Over 30,000 downloads of the RubyGems software
|
35
|
+
* 230,075 gem loads
|
36
|
+
|
37
|
+
If you are interested in finding out when new gems are released, I
|
38
|
+
maintain an RSS feed at http://onestepback.org/gemwatch.rss.
|
39
|
+
|
40
|
+
== How can I get RubyGems?
|
41
|
+
|
42
|
+
If you have a recent version of RubyGems (0.8.5 or later), then all
|
43
|
+
you need to do is:
|
44
|
+
|
45
|
+
$ gem update --system (you might need to be admin/root)
|
46
|
+
|
47
|
+
(Note: You may have to run the command twice if you have any previosly
|
48
|
+
installed rubygems-update gems).
|
49
|
+
|
50
|
+
If you have an older version of RubyGems installed, then you can still
|
51
|
+
do it in two steps:
|
52
|
+
|
53
|
+
$ gem install rubygems-update (again, might need to be admin/root)
|
54
|
+
$ update_rubygems (... here too)
|
55
|
+
|
56
|
+
If you don't have any gems install, there is still the pre-gem
|
57
|
+
approach to getting software ... doing it manually:
|
58
|
+
|
59
|
+
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
60
|
+
2. UNPACK INTO A DIRECTORY AND CD THERE
|
61
|
+
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
62
|
+
|
63
|
+
== Thanks
|
64
|
+
|
65
|
+
Thanks to Tobias Luetke for reporting the problem and assisting in
|
66
|
+
tracking it down.
|
67
|
+
|
68
|
+
Keep those gems coming!
|
69
|
+
|
70
|
+
-- Jim & Chad (for the RubyGems team)
|
@@ -0,0 +1,102 @@
|
|
1
|
+
= Announce: RubyGems Release 0.8.11
|
2
|
+
|
3
|
+
RubyGems Version 0.8.11 is now available. This release includes a
|
4
|
+
number of fixes and enhancements, including the work from the Seattle
|
5
|
+
Ruby Brigade's RubyGems codefest.
|
6
|
+
|
7
|
+
* Improved performance
|
8
|
+
* Ability to sign gems (see http://docs.rubygems.org/read/chapter/21)
|
9
|
+
* New Command: gem contents -- List the contents of an installed gem
|
10
|
+
* New Command: gem rdoc -- Generate rdoc files from an installed gem
|
11
|
+
|
12
|
+
== What is RubyGems?
|
13
|
+
|
14
|
+
RubyGems is a package management system for Ruby applications and
|
15
|
+
libraries. RubyGems one command download makes installing Ruby software
|
16
|
+
fun and enjoyable again. (Ok, not really.)
|
17
|
+
|
18
|
+
Many gems are available for download from the RubyForge site. Browse
|
19
|
+
the list of gems with a "gem list --remote" command and download what
|
20
|
+
you need with a simple "gem install <name-of-gem>". RubyGems takes care
|
21
|
+
of the details of installing, not only the gem you requested, but also
|
22
|
+
any gems needed by the software you selected.
|
23
|
+
|
24
|
+
== RubyGems Statistics
|
25
|
+
|
26
|
+
* About 326 different gems available (Around 100 new gems since the
|
27
|
+
0.8.10 release)
|
28
|
+
* Nearly 64,000 downloads of the RubyGems software
|
29
|
+
* Almost 600,000 gem downloads
|
30
|
+
|
31
|
+
If you are interested in finding out when new gems are released, I
|
32
|
+
maintain an RSS feed at http://onestepback.org/gemwatch.rss.
|
33
|
+
|
34
|
+
== How can I get RubyGems?
|
35
|
+
|
36
|
+
If you have a recent version of RubyGems (0.8.5 or later), then all
|
37
|
+
you need to do is:
|
38
|
+
|
39
|
+
$ gem update --system (you might need to be admin/root)
|
40
|
+
|
41
|
+
(Note: You may have to run the command twice if you have any previosly
|
42
|
+
installed rubygems-update gems).
|
43
|
+
|
44
|
+
If you have an older version of RubyGems installed, then you can still
|
45
|
+
do it in two steps:
|
46
|
+
|
47
|
+
$ gem install rubygems-update (again, might need to be admin/root)
|
48
|
+
$ update_rubygems (... here too)
|
49
|
+
|
50
|
+
If you don't have any gems install, there is still the pre-gem
|
51
|
+
approach to getting software ... doing it manually:
|
52
|
+
|
53
|
+
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
54
|
+
2. UNPACK INTO A DIRECTORY AND CD THERE
|
55
|
+
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
56
|
+
|
57
|
+
== Recent Changes
|
58
|
+
|
59
|
+
* -y is a synonym for --include-dependencies.
|
60
|
+
* Better handling of errors in the top level rescue clause.
|
61
|
+
* Package list command (e.g. gem inspect GEM).
|
62
|
+
* .gemrc now allows cvsrc-like options to set defaults per subcommand.
|
63
|
+
* The autorequire gem spec field will now accept a list.
|
64
|
+
* Substituted Time for Date in specs, increasing performance
|
65
|
+
dramatically.
|
66
|
+
* Fixed reported bug of gem directories ending in "-" (reported by
|
67
|
+
Erik Hatcher).
|
68
|
+
* Fixed but in installer that caused dependency installation to not
|
69
|
+
work.
|
70
|
+
* Added Paul Duncan's gem signing patch.
|
71
|
+
* Added Mark Hubbart's Framework patch (for better integration with OS
|
72
|
+
X).
|
73
|
+
* Added David Glasser's install-from-mirror patch.
|
74
|
+
* Additional internal structural cleanup and test reorganization.
|
75
|
+
|
76
|
+
== What's Next
|
77
|
+
|
78
|
+
We will probably see one more release in the 0.8.x series (hopefully
|
79
|
+
soon) where the source index download function will be revised to
|
80
|
+
perform better with a large number gems.
|
81
|
+
|
82
|
+
After that, the 0.9.x series will start unifying the local and remote
|
83
|
+
installers to get more consistent behavior.
|
84
|
+
|
85
|
+
== Thanks
|
86
|
+
|
87
|
+
Major contributors to this release include:
|
88
|
+
|
89
|
+
* Thanks to the Seattle Ruby Brigade (Doug Beaver, Ryan Davis, Pat
|
90
|
+
Eyler, Eric Hodel, Evan Webb, and Aaron Johnson) for the work they
|
91
|
+
did in their code fest.
|
92
|
+
|
93
|
+
* Thanks to Paul Duncan for the gem signing patch.
|
94
|
+
|
95
|
+
* Thanks to Mark Hubbart for the Mac OS X framework patch.
|
96
|
+
|
97
|
+
* Thanks to Doug Kearns for catching some embarassing typos in several
|
98
|
+
error messages.
|
99
|
+
|
100
|
+
Keep those gems coming!
|
101
|
+
|
102
|
+
-- Jim & Chad (for the RubyGems team)
|
@@ -0,0 +1,113 @@
|
|
1
|
+
= Announce: RubyGems Release 0.8.3
|
2
|
+
|
3
|
+
Wow, over 8000 download of either the RubyGems package or the
|
4
|
+
RubyGems-update gem! And over 150 different packages available as a
|
5
|
+
gem. Things have really moved foreward.
|
6
|
+
|
7
|
+
I am pleased to announce that a new point release of RubyGems is now
|
8
|
+
available on RubyForge. This release is mostly a bug fix and code
|
9
|
+
cleanup release. But the good news is that there are several really
|
10
|
+
annoying issues that have been addressed in 0.8.3.
|
11
|
+
|
12
|
+
But first ...
|
13
|
+
|
14
|
+
== What is RubyGems?
|
15
|
+
|
16
|
+
RubyGems is a package management system for Ruby applications and
|
17
|
+
libraries. RubyGems one command download makes installing Ruby
|
18
|
+
software fun and enjoyable again. (Ok, not really.)
|
19
|
+
|
20
|
+
Many gems are available for download from the RubyForge site. Browse
|
21
|
+
the list of gems with a "gem list --remote" command and download what
|
22
|
+
you need with a simple "gem install <name-of-gem>". RubyGems takes
|
23
|
+
care of the details of installing, not only the gem you requested, but
|
24
|
+
also any gems needed by the software you selected.
|
25
|
+
|
26
|
+
So now you are asking ...
|
27
|
+
|
28
|
+
== How can I get all this great stuff?
|
29
|
+
|
30
|
+
Well, here's how ...
|
31
|
+
|
32
|
+
To download and install:
|
33
|
+
|
34
|
+
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
35
|
+
2. UNPACK INTO A DIRECTORY AND CD THERE
|
36
|
+
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
37
|
+
|
38
|
+
... or, if you have an existing RubyGem installation ....
|
39
|
+
|
40
|
+
$ gem install rubygems-update (again, might need to be admin/root)
|
41
|
+
$ update_rubygems (... here too)
|
42
|
+
|
43
|
+
I bet you are wondering...
|
44
|
+
|
45
|
+
== So What's Changed in this Release?
|
46
|
+
|
47
|
+
No real earth shattering news here, but there were a number of really
|
48
|
+
annoying issues involving other libraries that RubyGems depends upon.
|
49
|
+
0.8.3 contains some workarounds for these issues. In particular:
|
50
|
+
|
51
|
+
* Added workaround for the null byte in Dir string issue. (see
|
52
|
+
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/121702).
|
53
|
+
(Thanks to Mauricio Fern�ndez for the quick response on this one).
|
54
|
+
|
55
|
+
* Added workaround for old version of Zlib on windows that caused
|
56
|
+
Ruwiki to fail to install. (see
|
57
|
+
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/121770)
|
58
|
+
|
59
|
+
* Added workaround for large YAML file issues. (We dynamically cut
|
60
|
+
down the size of the source index YAML file and seem to have worked
|
61
|
+
around immediate issues.
|
62
|
+
|
63
|
+
There has been some minor usability enhancements and changes ...
|
64
|
+
|
65
|
+
* A user specific source index cache can be used when the site-wide
|
66
|
+
cache is unwritable (i.e. because you are running as a non-admin).
|
67
|
+
This *greatly* speeds up gem commands run in non-admin mode when the
|
68
|
+
site-wide cache is out of date.
|
69
|
+
|
70
|
+
* The gem command now used an HTTP HEAD command to detect if the
|
71
|
+
server's source index needs to be downloaed.
|
72
|
+
|
73
|
+
* gem check gemname --test will run unit tests on installed gems that
|
74
|
+
have unit tests.
|
75
|
+
|
76
|
+
* Multiple gem names are allowed on the gem install command line.
|
77
|
+
This means you can do:
|
78
|
+
|
79
|
+
gem install rake rails needle postgres-pr pimki
|
80
|
+
|
81
|
+
(Ok, you get the idea)
|
82
|
+
|
83
|
+
* Multiple authors my be specified in a Gem spec.
|
84
|
+
|
85
|
+
* Switched to using setup.rb (rather than a custom install script) for
|
86
|
+
the installation of RubyGems itself. If you have installed RubyGems
|
87
|
+
before, double check the installation instructions and make sure you
|
88
|
+
use setup.rb instead of install.rb.
|
89
|
+
|
90
|
+
* Ryan Davis has provided a patch so you can use an env variable
|
91
|
+
(GEM_SKIP), to tell loadpath_manager not to load gems of those
|
92
|
+
names. This was useful for him while testing libs that he had in
|
93
|
+
development.
|
94
|
+
|
95
|
+
And finally there have been a number of internal changes, enhancements
|
96
|
+
and just general cleanup. A lot of work has been done in the remote
|
97
|
+
installer area (some of which you can see in the caching changes noted
|
98
|
+
above) in preparation for unifying the local and remote logic so that
|
99
|
+
there is less difference in installing local gems and remote gems. In
|
100
|
+
particular, we want to be able to satisfy dependencies from locally
|
101
|
+
available gem files. We are not there yet, but we are working on it.
|
102
|
+
|
103
|
+
== Summary
|
104
|
+
|
105
|
+
Thanks to everyone for the great feedback we have been getting.
|
106
|
+
Please continue to let us know what you think and what you want. Many
|
107
|
+
minor changes in this release were initiated/requested by folks other
|
108
|
+
than the core gems team. That's great.
|
109
|
+
|
110
|
+
And most of all, keep making and releasing those gems!
|
111
|
+
|
112
|
+
-- Jim (for the RubyGems team)
|
113
|
+
|
@@ -0,0 +1,51 @@
|
|
1
|
+
= Announce: RubyGems Release 0.8.4
|
2
|
+
|
3
|
+
Hello and Happy New Year! We've now surpassed 10,000 downloads of RubyGems and are starting to see a real rhythm of new gems being published. Thanks to the efforts of many dedicated Rubyists, 2005 will be remembered as the year everything took shape in the world of ruby package distribution.
|
4
|
+
|
5
|
+
We have just released RubyGems 0.8.4. 0.8.4 is a small release, but it fixes some fairly major installation issues (thanks Ryan Davis) and addresses some speed issues with requires (thanks Eric Hodel, Gavin Sinclair, and Jim Weirich).
|
6
|
+
|
7
|
+
== What is RubyGems?
|
8
|
+
|
9
|
+
RubyGems is a package management system for Ruby applications and
|
10
|
+
libraries. RubyGems one command download makes installing Ruby
|
11
|
+
software fun and enjoyable again. (Ok, not really.)
|
12
|
+
|
13
|
+
Many gems are available for download from the RubyForge site. Browse
|
14
|
+
the list of gems with a "gem list --remote" command and download what
|
15
|
+
you need with a simple "gem install <name-of-gem>". RubyGems takes
|
16
|
+
care of the details of installing, not only the gem you requested, but
|
17
|
+
also any gems needed by the software you selected.
|
18
|
+
|
19
|
+
So now you are asking ...
|
20
|
+
|
21
|
+
== How can I get all this great stuff?
|
22
|
+
|
23
|
+
Well, here's how ...
|
24
|
+
|
25
|
+
To download and install:
|
26
|
+
|
27
|
+
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
28
|
+
2. UNPACK INTO A DIRECTORY AND CD THERE
|
29
|
+
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
30
|
+
|
31
|
+
... or, if you have an existing RubyGem installation ....
|
32
|
+
|
33
|
+
$ gem install rubygems-update (again, might need to be admin/root)
|
34
|
+
$ update_rubygems (... here too)
|
35
|
+
|
36
|
+
I bet you are wondering...
|
37
|
+
|
38
|
+
== So What's Changed in this Release?
|
39
|
+
|
40
|
+
* Rubygems 0.8.3's installer was broken unless you already had an older version of RubyGems installed. That's fixed.
|
41
|
+
|
42
|
+
* Change in the way Gem::Specification internally deals with lazy attributes and defaults, bringing (with some loadpath_manager changes) a fairly significant increase in speed.
|
43
|
+
|
44
|
+
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
45
|
+
|
46
|
+
* Erik Veenstra's patch for making Gem versions sortable.
|
47
|
+
|
48
|
+
Keep those gems coming!
|
49
|
+
|
50
|
+
-- Chad (for the RubyGems team)
|
51
|
+
|
@@ -0,0 +1,117 @@
|
|
1
|
+
= Announce: RubyGems Release 0.8.5
|
2
|
+
|
3
|
+
Hello one and all. It is time for another RubyGems update. But first
|
4
|
+
the numbers.
|
5
|
+
|
6
|
+
Counting both the tarfile/zipfile download and the rubygem-update gem,
|
7
|
+
we have exceed 20,000 downloads of the RubyGems software, and this
|
8
|
+
doesn't count the number of RubyGems packages were downloaded as part of
|
9
|
+
the Windows one-click installer. New gems are being published all the
|
10
|
+
time. It was just a week or so ago when we saw the 200th gem released,
|
11
|
+
and already we have more 213 unique gems available for download.
|
12
|
+
|
13
|
+
We have just released RubyGems 0.8.5. This latest version of RubyGems
|
14
|
+
has some new functionality, fixes a few bugs and makes some things look
|
15
|
+
prettier. There are more changes in the works, but we wanted to get the
|
16
|
+
new stuff out as fast as possible.
|
17
|
+
|
18
|
+
== Faster Source Cache
|
19
|
+
|
20
|
+
Do you know how you used to dread getting the following message while
|
21
|
+
installing gems?
|
22
|
+
|
23
|
+
Updating Gem source index for: http://gems.rubyforge.org
|
24
|
+
|
25
|
+
It could take up to 30 seconds (on my machine, even worse on others) for
|
26
|
+
that crazy source index to update.
|
27
|
+
|
28
|
+
This latest release of RubyGems speeds that wait time up considerably.
|
29
|
+
The following table gives the following times for installing RedCloth
|
30
|
+
with a required source index update on three system we had available to
|
31
|
+
us. No RDoc generation was included in the following times.
|
32
|
+
|
33
|
+
RubyGems Linux Mac OSX Windows
|
34
|
+
0.8.4 33 secs 73 secs 58 secs
|
35
|
+
0.8.5 8 secs 14 secs 21 secs
|
36
|
+
|
37
|
+
The new caching code is at least 3x faster than previous versions. Woo
|
38
|
+
Hoo!
|
39
|
+
|
40
|
+
== What is RubyGems?
|
41
|
+
|
42
|
+
RubyGems is a package management system for Ruby applications and
|
43
|
+
libraries. RubyGems one command download makes installing Ruby software
|
44
|
+
fun and enjoyable again. (Ok, not really.)
|
45
|
+
|
46
|
+
Many gems are available for download from the RubyForge site. Browse
|
47
|
+
the list of gems with a "gem list --remote" command and download what
|
48
|
+
you need with a simple "gem install <name-of-gem>". RubyGems takes care
|
49
|
+
of the details of installing, not only the gem you requested, but also
|
50
|
+
any gems needed by the software you selected.
|
51
|
+
|
52
|
+
So now you are asking ...
|
53
|
+
|
54
|
+
== How can I get all this great stuff?
|
55
|
+
|
56
|
+
Well, here's how ...
|
57
|
+
|
58
|
+
To download and install:
|
59
|
+
|
60
|
+
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
61
|
+
2. UNPACK INTO A DIRECTORY AND CD THERE
|
62
|
+
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
63
|
+
|
64
|
+
... or, if you have an existing RubyGem installation ....
|
65
|
+
|
66
|
+
$ gem install rubygems-update (again, might need to be admin/root)
|
67
|
+
$ update_rubygems (... here too)
|
68
|
+
|
69
|
+
== So What's Changed in this Release?
|
70
|
+
|
71
|
+
* Fixed a bug where, during installation, partial matches on gem names
|
72
|
+
overshadowed an exact match on the gem name. Exact matches are now
|
73
|
+
required.
|
74
|
+
|
75
|
+
* Applied Austin Ziegler/Kasper Schiess's patch to fix unit test running
|
76
|
+
bug.
|
77
|
+
|
78
|
+
* Applied Lyle Johnson's patch to fix a problem with multiple require
|
79
|
+
paths.
|
80
|
+
|
81
|
+
* "gem update" now accepts a list of gems and only updates the gems
|
82
|
+
listed on the command line. If no list is given then all gems are
|
83
|
+
updated (which is the bahvior of the previousversion.
|
84
|
+
|
85
|
+
* gem_server has been updated with a very nice looking template. Thanks
|
86
|
+
to Martin Ankerl.
|
87
|
+
|
88
|
+
* RubyGems now actively requires Ruby version 1.8.0 or better. Folks
|
89
|
+
trying to run RubyGems on OSX with the default Ruby installation will
|
90
|
+
now get a meaning error message (rather than mysteriously not
|
91
|
+
working).
|
92
|
+
|
93
|
+
* Local source index caching is now /much/ faster. It now using Marshal
|
94
|
+
rather than Yaml.
|
95
|
+
|
96
|
+
* The update command now supports a --system option to update the
|
97
|
+
RubyGems software its self. After installing 0.8.5, updating RubyGems
|
98
|
+
will be a one step process.
|
99
|
+
|
100
|
+
* Dropped that really irritating warning about generating RDocs for
|
101
|
+
packages that didn't specify it had an RDoc. No one really cared
|
102
|
+
about the message and it was confusing to new users.
|
103
|
+
|
104
|
+
* Errors encountered while using require now corrctly reported.
|
105
|
+
|
106
|
+
* Misc. bug fixes. See the ChangeLog file for details.
|
107
|
+
|
108
|
+
== Thanks
|
109
|
+
|
110
|
+
I wish to give a special thanks to Lyle Johnson, Austing Ziegler, and
|
111
|
+
Ksaper Schiess for the patches they provided. And a big thanks to
|
112
|
+
Martin Ankerl for the HTML template upgrade to the gem_server package.
|
113
|
+
It looks really great.
|
114
|
+
|
115
|
+
Keep those gems coming!
|
116
|
+
|
117
|
+
-- Jim & Chad (for the RubyGems team)
|