rubygems-update 1.3.4 → 1.3.5
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/.document +1 -1
- data/ChangeLog +19 -0
- data/History.txt +799 -0
- data/Manifest.txt +1 -30
- data/README +29 -10
- data/Rakefile +71 -315
- data/lib/rubygems.rb +3 -2
- data/lib/rubygems/commands/setup_command.rb +27 -17
- data/lib/rubygems/commands/which_command.rb +1 -1
- data/lib/rubygems/config_file.rb +11 -4
- data/lib/rubygems/indexer.rb +6 -6
- data/lib/rubygems/source_index.rb +25 -19
- data/lib/rubygems/spec_fetcher.rb +14 -7
- data/lib/rubygems/specification.rb +1 -1
- data/test/test_gem.rb +0 -8
- data/test/test_gem_commands_dependency_command.rb +4 -0
- data/test/test_gem_commands_uninstall_command.rb +20 -0
- data/test/test_gem_indexer.rb +63 -24
- data/test/test_gem_source_index.rb +4 -3
- data/test/test_gem_spec_fetcher.rb +16 -2
- metadata +163 -47
- metadata.gz.sig +0 -0
- data/doc/release_notes/docs-rubygems-announce.rdoc +0 -29
- data/doc/release_notes/rel_0_2_0.rdoc +0 -4
- data/doc/release_notes/rel_0_3_0.rdoc +0 -21
- data/doc/release_notes/rel_0_4_0.rdoc +0 -4
- data/doc/release_notes/rel_0_5_0.rdoc +0 -26
- data/doc/release_notes/rel_0_6_0.rdoc +0 -16
- data/doc/release_notes/rel_0_7_0.rdoc +0 -4
- data/doc/release_notes/rel_0_8_0.rdoc +0 -23
- data/doc/release_notes/rel_0_8_1.rdoc +0 -4
- data/doc/release_notes/rel_0_8_10.rdoc +0 -70
- data/doc/release_notes/rel_0_8_11.rdoc +0 -102
- data/doc/release_notes/rel_0_8_3.rdoc +0 -113
- data/doc/release_notes/rel_0_8_4.rdoc +0 -51
- data/doc/release_notes/rel_0_8_5.rdoc +0 -117
- data/doc/release_notes/rel_0_8_7.rdoc +0 -135
- data/doc/release_notes/rel_0_9_0.rdoc +0 -109
- data/doc/release_notes/rel_0_9_2.rdoc +0 -69
- data/doc/release_notes/rel_0_9_3.rdoc +0 -66
- data/doc/release_notes/rel_0_9_4.rdoc +0 -67
- data/doc/release_notes/rel_0_9_5.rdoc +0 -108
- data/doc/release_notes/rel_1_0_0.rdoc +0 -67
- data/doc/release_notes/rel_1_0_1.rdoc +0 -56
- data/doc/release_notes/rel_1_1_0.rdoc +0 -85
- data/doc/release_notes/rel_1_1_1.rdoc +0 -64
- data/doc/release_notes/rel_1_2_0.rdoc +0 -105
- data/doc/release_notes/rel_1_3_0.rdoc +0 -125
- data/doc/release_notes/rel_1_3_1.rdoc +0 -75
- data/doc/release_notes/rel_1_3_2.rdoc +0 -119
- data/doc/release_notes/rel_1_3_3.rdoc +0 -95
- data/lib/rubygems/rubygems_version.rb +0 -19
@@ -1,135 +0,0 @@
|
|
1
|
-
= Announce: RubyGems Release 0.8.7
|
2
|
-
|
3
|
-
Time passes quickly, and so does software development. Release 0.8.7
|
4
|
-
of RubyGems is availble for public release. Although another point
|
5
|
-
release, you will find a number of very nice new features.
|
6
|
-
|
7
|
-
First the numbers, 220 different gems available, over 25,000
|
8
|
-
downloads of RubyGems, and nearly 190,000 gems downloads. Thanks to
|
9
|
-
everyone for their support.
|
10
|
-
|
11
|
-
== What's New
|
12
|
-
|
13
|
-
Even though it has only been a few weeks since that last release,
|
14
|
-
there are quite a number of new features in 0.8.7. A complete list of
|
15
|
-
new features will be given below, but here is a summary of the hot
|
16
|
-
items.
|
17
|
-
|
18
|
-
* The bug that prevented some users from installing rails has been
|
19
|
-
squashed. A big thanks to Bill Guindon (aGorilla) for helping track
|
20
|
-
that one down.
|
21
|
-
|
22
|
-
There are several new commands available on the gem command:
|
23
|
-
|
24
|
-
* gem cleanup GEMNAME -- Cleanup (uninstall) all the old versions of
|
25
|
-
gem. If the gem name is omitted, the entire repository is cleaned.
|
26
|
-
|
27
|
-
* gem dependency GEMNAME -- Show the dependencies for the named gems.
|
28
|
-
This is really helpful when trying to figure out what gem needs what
|
29
|
-
other gem.
|
30
|
-
|
31
|
-
There changes to the existing commands as well.
|
32
|
-
|
33
|
-
* gem uninstall is much smarter about removing gems from the
|
34
|
-
repository. Lists of gems are now uninstalled in proper dependency
|
35
|
-
order (ie. if A depends on B, A is uninstalled first). Also,
|
36
|
-
warnings about broken dependencies occur only when removing the
|
37
|
-
*last* gem that supports a dependency is removed.
|
38
|
-
|
39
|
-
Both gem install and gem uninstall support some new command line
|
40
|
-
options that can reduce the amount of yes/no queries given the user.
|
41
|
-
For install we have:
|
42
|
-
|
43
|
-
* --ignore-dependencies -- Only install requests gems, no
|
44
|
-
dependendecies are automatically installed.
|
45
|
-
* --include-dependencies -- Automatically install dependencies,
|
46
|
-
without confirmation.
|
47
|
-
|
48
|
-
For gem uninstall, the new options are:
|
49
|
-
|
50
|
-
* --all -- Uninstall all matching gems without confirmation.
|
51
|
-
* --ignore-dependencies -- Uninstall, even if dependencies are broken.
|
52
|
-
* --executables -- Remove executables without confirmation
|
53
|
-
|
54
|
-
Under general cleanup, gems will not, by default, run RDoc on packages
|
55
|
-
that do not have the RDoc flag set.
|
56
|
-
|
57
|
-
And finally there is a new library file 'gemconfigure' to aid in
|
58
|
-
writing version sensitive applications (without undue dependencies on
|
59
|
-
RubyGems); and 'gemwhich', a short script to locate libraries in the
|
60
|
-
file system. You can read more about them here:
|
61
|
-
|
62
|
-
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
63
|
-
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
64
|
-
|
65
|
-
== What is RubyGems?
|
66
|
-
|
67
|
-
RubyGems is a package management system for Ruby applications and
|
68
|
-
libraries. RubyGems one command download makes installing Ruby software
|
69
|
-
fun and enjoyable again. (Ok, not really.)
|
70
|
-
|
71
|
-
Many gems are available for download from the RubyForge site. Browse
|
72
|
-
the list of gems with a "gem list --remote" command and download what
|
73
|
-
you need with a simple "gem install <name-of-gem>". RubyGems takes care
|
74
|
-
of the details of installing, not only the gem you requested, but also
|
75
|
-
any gems needed by the software you selected.
|
76
|
-
|
77
|
-
== How can I get all this great stuff?
|
78
|
-
|
79
|
-
Well, here's how ...
|
80
|
-
|
81
|
-
To download and install:
|
82
|
-
|
83
|
-
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
84
|
-
2. UNPACK INTO A DIRECTORY AND CD THERE
|
85
|
-
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
86
|
-
|
87
|
-
... or, if you have RubyGems version 0.8.5 or later ....
|
88
|
-
|
89
|
-
$ gem update --system (again, might need to be admin/root)
|
90
|
-
|
91
|
-
... If you don't have a recent RubyGems, you can still do the two-step ....
|
92
|
-
|
93
|
-
$ gem install rubygems-update (again, might need to be admin/root)
|
94
|
-
$ update_rubygems (... here too)
|
95
|
-
|
96
|
-
== Detailed Change List
|
97
|
-
|
98
|
-
This list touches on most of the user visible changes in the RubyGems
|
99
|
-
change log. See the change log file for even more details.
|
100
|
-
|
101
|
-
* Fixed bug in cache manager that caused the cache to be reread every
|
102
|
-
time on Windows.
|
103
|
-
|
104
|
-
* Removed annoying message about not finding .gemrc.
|
105
|
-
|
106
|
-
* Uninstall command will now accept the following options:
|
107
|
-
* --all (uninstall all matches without query),
|
108
|
-
* --ignore-dependencies (ignore dependency constraints while
|
109
|
-
uninstalling),
|
110
|
-
* --executables (remove the executables without querying).
|
111
|
-
|
112
|
-
* New command: "gem cleanup" will remove all old versions of the list
|
113
|
-
gems (or the entire repository).
|
114
|
-
|
115
|
-
* Uninstalling now will only query if removing a gem actually will
|
116
|
-
cause a dependency to be unfulfilled.
|
117
|
-
|
118
|
-
* A new library file "gemconfigure.rb" makes is easy to take advantage
|
119
|
-
of dynamic versioning without becoming tied to using RubyGems.
|
120
|
-
|
121
|
-
* Source URIs given to the --source option will now assume an
|
122
|
-
"http://" prefix if one is not given.
|
123
|
-
|
124
|
-
* New Command: "gem dependency" will show the dependency requirements
|
125
|
-
of any installed gem. Reverse dependencies are also supported.
|
126
|
-
|
127
|
-
== Thanks
|
128
|
-
|
129
|
-
Thanks to David Heinemeier Hansson for a number of suggestions that
|
130
|
-
made it into this release. Also thanks go to Bill Guindon (aGorilla)
|
131
|
-
and Jim Freeze for feedback and testing of intermediate versions.
|
132
|
-
|
133
|
-
Keep those gems coming!
|
134
|
-
|
135
|
-
-- Jim & Chad (for the RubyGems team)
|
@@ -1,109 +0,0 @@
|
|
1
|
-
= Announce: RubyGems Release 0.9.0
|
2
|
-
|
3
|
-
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
4
|
-
This release includes a number of new features and bug fixes. The
|
5
|
-
number one change is that we can now download the gem index
|
6
|
-
incrementally. This will greatly speed up the gem command when only a
|
7
|
-
few gems are out of date.
|
8
|
-
|
9
|
-
Major Enhancments include:
|
10
|
-
|
11
|
-
* The gem index is now downloaded incrementally, only updating entries
|
12
|
-
that are out of date. If more than 50 entries are out of date, we
|
13
|
-
revert back to a bulk download.
|
14
|
-
* Several patches related to allowing RubyGems to work with
|
15
|
-
authenticating proxies (from Danie Roux and Anatol Pomozov). Just
|
16
|
-
put the user and password in the proxy URL (e.g. -p
|
17
|
-
http://user:password@proxy.address.com:8080) or use the
|
18
|
-
HTTP_PROXY_USER and HTTP_PROXY_PASS environment variables.
|
19
|
-
* The gem unpack command can now accept a file path rather than just a
|
20
|
-
install gem name.
|
21
|
-
* Both RI and RDOC documents are now generated by default.
|
22
|
-
* A gemri command is included to read gem RI docs (only needed for
|
23
|
-
Ruby 1.8.4 or earlier).
|
24
|
-
|
25
|
-
Minor enhancements include:
|
26
|
-
|
27
|
-
* Verison 0.0.0 is now a valid gem version.
|
28
|
-
* Better detection of missing SSL functionality.
|
29
|
-
* SSL is not required if the security policy does not require
|
30
|
-
signature checking.
|
31
|
-
* Rake built extensions are now supported (Tilman Sauerbeck).
|
32
|
-
* Several autorequire bug fixes.
|
33
|
-
* --traceback is now an alias for --backtrace (I can never remember
|
34
|
-
which one it is).
|
35
|
-
* SAFE=1 compatibility fixes.
|
36
|
-
* .rbw is now a supported suffix for RubyGem's custom require.
|
37
|
-
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
38
|
-
|
39
|
-
Bug Fixes:
|
40
|
-
|
41
|
-
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
42
|
-
cross-Ruby version compatibility issues.
|
43
|
-
* Fixed bug where the wrong executables could be uninstalled (Eric
|
44
|
-
Hodel).
|
45
|
-
* Fixed bug where gem unpack occasionally unpacked the wrong gem.
|
46
|
-
* Fixed bug where a fatal error occured when permissions on .gemrc
|
47
|
-
were too restrictive (reported by Luca Pireddu).
|
48
|
-
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
49
|
-
* Fixed several Upgrade => Update typos.
|
50
|
-
|
51
|
-
== What is RubyGems?
|
52
|
-
|
53
|
-
RubyGems is a package management system for Ruby applications and
|
54
|
-
libraries. RubyGems one command download makes installing Ruby software
|
55
|
-
fun and enjoyable again. (Ok, not really.)
|
56
|
-
|
57
|
-
Many gems are available for download from the RubyForge site. Browse
|
58
|
-
the list of gems with a "gem list --remote" command and download what
|
59
|
-
you need with a simple "gem install <name-of-gem>". RubyGems takes care
|
60
|
-
of the details of installing, not only the gem you requested, but also
|
61
|
-
any gems needed by the software you selected.
|
62
|
-
|
63
|
-
== RubyGems Statistics
|
64
|
-
|
65
|
-
* About 780 different gems are available from RubyForge
|
66
|
-
* Over 350 thousand downloads of the RubyGems software
|
67
|
-
* Over 4 million gem downloads
|
68
|
-
|
69
|
-
If you are interested in finding out when new gems are released, I
|
70
|
-
maintain an RSS feed at http://onestepback.org/gemwatch.rss.
|
71
|
-
|
72
|
-
== How can I get RubyGems?
|
73
|
-
|
74
|
-
If you have a recent version of RubyGems (0.8.5 or later), then all
|
75
|
-
you need to do is:
|
76
|
-
|
77
|
-
$ gem update --system (you might need to be admin/root)
|
78
|
-
|
79
|
-
(Note: You may have to run the command twice if you have any previosly
|
80
|
-
installed rubygems-update gems).
|
81
|
-
|
82
|
-
If you have an older version of RubyGems installed, then you can still
|
83
|
-
do it in two steps:
|
84
|
-
|
85
|
-
$ gem install rubygems-update (again, might need to be admin/root)
|
86
|
-
$ update_rubygems (... here too)
|
87
|
-
|
88
|
-
If you don't have any gems install, there is still the pre-gem
|
89
|
-
approach to getting software ... doing it manually:
|
90
|
-
|
91
|
-
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
92
|
-
2. UNPACK INTO A DIRECTORY AND CD THERE
|
93
|
-
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
94
|
-
|
95
|
-
== What's Next
|
96
|
-
|
97
|
-
The next big thing on the plate is to integrate the local/remote gem
|
98
|
-
logic and make the whole thing more consistent.
|
99
|
-
|
100
|
-
== Thanks
|
101
|
-
|
102
|
-
Major contributors to this release include:
|
103
|
-
|
104
|
-
* Danie Roux, Anatol Pomozov, Eric Hodel, Luca Pireddu, and Tilman
|
105
|
-
Sauerbeck.
|
106
|
-
|
107
|
-
Keep those gems coming!
|
108
|
-
|
109
|
-
-- Jim & Chad (for the RubyGems team)
|
@@ -1,69 +0,0 @@
|
|
1
|
-
= Announce: RubyGems Release 0.9.2
|
2
|
-
|
3
|
-
Release 0.9.2 is a maintenance release of RubyGems that fix some minor
|
4
|
-
bugs in the 0.9.1 release.
|
5
|
-
|
6
|
-
Bug Fixes Include:
|
7
|
-
|
8
|
-
* The "unpack" command now works properly.
|
9
|
-
* User name and password are now passed properly to the authenticating
|
10
|
-
proxy when downloading gems.
|
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 1300 different gems are available from RubyForge
|
27
|
-
* Over 500 thousand downloads of the RubyGems software
|
28
|
-
* Over 8.5 million gem downloads
|
29
|
-
|
30
|
-
If you are interested in finding out when new gems are released, I
|
31
|
-
maintain an RSS feed at http://onestepback.org/gemwatch.rss.
|
32
|
-
|
33
|
-
== How can I get RubyGems?
|
34
|
-
|
35
|
-
If you have a recent version of RubyGems (0.8.5 or later), then all
|
36
|
-
you need to do is:
|
37
|
-
|
38
|
-
$ gem update --system (you might need to be admin/root)
|
39
|
-
|
40
|
-
(Note: You may have to run the command twice if you have any previosly
|
41
|
-
installed rubygems-update gems).
|
42
|
-
|
43
|
-
If you have an older version of RubyGems installed, then you can still
|
44
|
-
do it in two steps:
|
45
|
-
|
46
|
-
$ gem install rubygems-update (again, might need to be admin/root)
|
47
|
-
$ update_rubygems (... here too)
|
48
|
-
|
49
|
-
If you don't have any gems install, there is still the pre-gem
|
50
|
-
approach to getting software ... doing it manually:
|
51
|
-
|
52
|
-
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
53
|
-
2. UNPACK INTO A DIRECTORY AND CD THERE
|
54
|
-
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
55
|
-
|
56
|
-
== What's Next
|
57
|
-
|
58
|
-
The next big thing on the plate is to integrate the local/remote gem
|
59
|
-
logic and make the whole thing more consistent.
|
60
|
-
|
61
|
-
== Thanks
|
62
|
-
|
63
|
-
Major contributors to this release include:
|
64
|
-
|
65
|
-
* Anatol Pomozov
|
66
|
-
|
67
|
-
Keep those gems coming!
|
68
|
-
|
69
|
-
-- Jim & Chad (for the RubyGems team)
|
@@ -1,66 +0,0 @@
|
|
1
|
-
= Announce: RubyGems Release 0.9.3
|
2
|
-
|
3
|
-
Release 0.9.3 is a maintenance release of RubyGems that fixes a problem
|
4
|
-
with ZLib on Windows playforms.
|
5
|
-
|
6
|
-
If you are experiencing "Buffer Error" problems with RubyGems, we
|
7
|
-
recommend upgrading to RubyGems 0.9.3.
|
8
|
-
|
9
|
-
Bug Fixes Include:
|
10
|
-
|
11
|
-
The ZLib library on Windows will occasionally complains about a buffer
|
12
|
-
error when unpacking gems. The Gems software has a workaround for
|
13
|
-
that problem, but the workaround was only enabled for versions of ZLib
|
14
|
-
1.2.1 or earlier. We have received several reports of the error
|
15
|
-
occuring with ZLib 1.2.3, so we have permanently enabled the work
|
16
|
-
around on all versions.
|
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
|
22
|
-
software 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
|
27
|
-
care of the details of installing, not only the gem you requested, but
|
28
|
-
also any gems needed by the software you selected.
|
29
|
-
|
30
|
-
== How can I get RubyGems?
|
31
|
-
|
32
|
-
If you have a recent version of RubyGems (0.8.5 or later), then all
|
33
|
-
you need to do is:
|
34
|
-
|
35
|
-
$ gem update --system (you might need to be admin/root)
|
36
|
-
|
37
|
-
(Note: You may have to run the command twice if you have any previosly
|
38
|
-
installed rubygems-update gems).
|
39
|
-
|
40
|
-
If you have an older version of RubyGems installed, then you can still
|
41
|
-
do it in two steps:
|
42
|
-
|
43
|
-
$ gem install rubygems-update (again, might need to be admin/root)
|
44
|
-
$ update_rubygems (... here too)
|
45
|
-
|
46
|
-
If you don't have any gems install, there is still the pre-gem
|
47
|
-
approach to getting software ... doing it manually:
|
48
|
-
|
49
|
-
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
50
|
-
2. UNPACK INTO A DIRECTORY AND CD THERE
|
51
|
-
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
52
|
-
|
53
|
-
== What's Next
|
54
|
-
|
55
|
-
The next big thing on the plate is to integrate the local/remote gem
|
56
|
-
logic and make the whole thing more consistent.
|
57
|
-
|
58
|
-
== Thanks
|
59
|
-
|
60
|
-
Major contributors to this release include:
|
61
|
-
|
62
|
-
* Jamis Buck (for discovering the ZLib problem).
|
63
|
-
|
64
|
-
Keep those gems coming!
|
65
|
-
|
66
|
-
-- Jim & Chad (for the RubyGems team)
|
@@ -1,67 +0,0 @@
|
|
1
|
-
= Announce: RubyGems Release 0.9.4
|
2
|
-
|
3
|
-
Release 0.9.4 is a maintenance release of RubyGems that fixes a number of small bugs.
|
4
|
-
|
5
|
-
If you are experiencing problems with the source index (e.g. strange
|
6
|
-
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
7
|
-
messsage), we recommend upgrading to RubyGems 0.9.4.
|
8
|
-
|
9
|
-
Bug Fixes Include:
|
10
|
-
|
11
|
-
* Several people have been experiencing problems with no method errors
|
12
|
-
on the source index cache. The source index cache is now a bit more
|
13
|
-
self healing. Furthermore, if the source index cache is
|
14
|
-
irreparable, then it is automatically dropped and reloaded.
|
15
|
-
|
16
|
-
* The source cache files may now be dropped with the "gem sources
|
17
|
-
--clear-all" command. (This command may require root is the system
|
18
|
-
source cache is in a root protected area).
|
19
|
-
|
20
|
-
* Several sub-commands were accidently dropped from the "gem" command.
|
21
|
-
These commands have been restored.
|
22
|
-
|
23
|
-
== What is RubyGems?
|
24
|
-
|
25
|
-
RubyGems is a package management system for Ruby applications and
|
26
|
-
libraries. RubyGems one command download makes installing Ruby
|
27
|
-
software fun and enjoyable again. (Ok, not really.)
|
28
|
-
|
29
|
-
Many gems are available for download from the RubyForge site. Browse
|
30
|
-
the list of gems with a "gem list --remote" command and download what
|
31
|
-
you need with a simple "gem install <name-of-gem>". RubyGems takes
|
32
|
-
care of the details of installing, not only the gem you requested, but
|
33
|
-
also any gems needed by the software you selected.
|
34
|
-
|
35
|
-
== How can I get RubyGems?
|
36
|
-
|
37
|
-
If you have a recent version of RubyGems (0.8.5 or later), then all
|
38
|
-
you need to do is:
|
39
|
-
|
40
|
-
$ gem update --system (you might need to be admin/root)
|
41
|
-
|
42
|
-
(Note: You may have to run the command twice if you have any previosly
|
43
|
-
installed rubygems-update gems).
|
44
|
-
|
45
|
-
If you have an older version of RubyGems installed, then you can still
|
46
|
-
do it in two steps:
|
47
|
-
|
48
|
-
$ gem install rubygems-update (again, might need to be admin/root)
|
49
|
-
$ update_rubygems (... here too)
|
50
|
-
|
51
|
-
If you don't have any gems install, there is still the pre-gem
|
52
|
-
approach to getting software ... doing it manually:
|
53
|
-
|
54
|
-
1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
|
55
|
-
2. UNPACK INTO A DIRECTORY AND CD THERE
|
56
|
-
3. INSTALL WITH: ruby setup.rb all (you may need admin/root privilege)
|
57
|
-
|
58
|
-
== What's Next
|
59
|
-
|
60
|
-
The next big thing on the plate is to integrate the local/remote gem
|
61
|
-
logic and make the whole thing more consistent.
|
62
|
-
|
63
|
-
== Thanks
|
64
|
-
|
65
|
-
Keep those gems coming!
|
66
|
-
|
67
|
-
-- Jim & Chad (for the RubyGems team)
|