rubygems-update 1.3.4 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (53) hide show
  1. data.tar.gz.sig +0 -0
  2. data/.document +1 -1
  3. data/ChangeLog +19 -0
  4. data/History.txt +799 -0
  5. data/Manifest.txt +1 -30
  6. data/README +29 -10
  7. data/Rakefile +71 -315
  8. data/lib/rubygems.rb +3 -2
  9. data/lib/rubygems/commands/setup_command.rb +27 -17
  10. data/lib/rubygems/commands/which_command.rb +1 -1
  11. data/lib/rubygems/config_file.rb +11 -4
  12. data/lib/rubygems/indexer.rb +6 -6
  13. data/lib/rubygems/source_index.rb +25 -19
  14. data/lib/rubygems/spec_fetcher.rb +14 -7
  15. data/lib/rubygems/specification.rb +1 -1
  16. data/test/test_gem.rb +0 -8
  17. data/test/test_gem_commands_dependency_command.rb +4 -0
  18. data/test/test_gem_commands_uninstall_command.rb +20 -0
  19. data/test/test_gem_indexer.rb +63 -24
  20. data/test/test_gem_source_index.rb +4 -3
  21. data/test/test_gem_spec_fetcher.rb +16 -2
  22. metadata +163 -47
  23. metadata.gz.sig +0 -0
  24. data/doc/release_notes/docs-rubygems-announce.rdoc +0 -29
  25. data/doc/release_notes/rel_0_2_0.rdoc +0 -4
  26. data/doc/release_notes/rel_0_3_0.rdoc +0 -21
  27. data/doc/release_notes/rel_0_4_0.rdoc +0 -4
  28. data/doc/release_notes/rel_0_5_0.rdoc +0 -26
  29. data/doc/release_notes/rel_0_6_0.rdoc +0 -16
  30. data/doc/release_notes/rel_0_7_0.rdoc +0 -4
  31. data/doc/release_notes/rel_0_8_0.rdoc +0 -23
  32. data/doc/release_notes/rel_0_8_1.rdoc +0 -4
  33. data/doc/release_notes/rel_0_8_10.rdoc +0 -70
  34. data/doc/release_notes/rel_0_8_11.rdoc +0 -102
  35. data/doc/release_notes/rel_0_8_3.rdoc +0 -113
  36. data/doc/release_notes/rel_0_8_4.rdoc +0 -51
  37. data/doc/release_notes/rel_0_8_5.rdoc +0 -117
  38. data/doc/release_notes/rel_0_8_7.rdoc +0 -135
  39. data/doc/release_notes/rel_0_9_0.rdoc +0 -109
  40. data/doc/release_notes/rel_0_9_2.rdoc +0 -69
  41. data/doc/release_notes/rel_0_9_3.rdoc +0 -66
  42. data/doc/release_notes/rel_0_9_4.rdoc +0 -67
  43. data/doc/release_notes/rel_0_9_5.rdoc +0 -108
  44. data/doc/release_notes/rel_1_0_0.rdoc +0 -67
  45. data/doc/release_notes/rel_1_0_1.rdoc +0 -56
  46. data/doc/release_notes/rel_1_1_0.rdoc +0 -85
  47. data/doc/release_notes/rel_1_1_1.rdoc +0 -64
  48. data/doc/release_notes/rel_1_2_0.rdoc +0 -105
  49. data/doc/release_notes/rel_1_3_0.rdoc +0 -125
  50. data/doc/release_notes/rel_1_3_1.rdoc +0 -75
  51. data/doc/release_notes/rel_1_3_2.rdoc +0 -119
  52. data/doc/release_notes/rel_1_3_3.rdoc +0 -95
  53. data/lib/rubygems/rubygems_version.rb +0 -19
@@ -1,125 +0,0 @@
1
- = Announce: RubyGems Release 1.3.0
2
-
3
- Release 1.3.0 adds new features and fixes some bugs.
4
-
5
- New features:
6
-
7
- * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
8
- stdout is not a TTY, except with --both.
9
- * Added Gem.find_files, allows a gem to discover features provided by other
10
- gems.
11
- * Added pre/post (un)install hooks for packagers of RubyGems. (Not for gems
12
- themselves).
13
- * RubyGems now installs gems into ~/.gem if GEM_HOME is not writable. Use
14
- --no-user-install command-line switch to disable this behavior.
15
- * Fetching specs for update now uses If-Modified-Since requests.
16
- * RubyGems now updates the ri cache when the rdoc gem is installed and
17
- documentation is generated.
18
-
19
- Deprecation Notices:
20
-
21
- * Gem::manage_gems now warns when called. It will be removed on or after March
22
- 2009.
23
-
24
- Bugs Fixed:
25
-
26
- * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
27
- Bug #20775 by Hemant Kumar.
28
- * RubyGems now uses the regexp we already have for `gem list --installed`. Bug
29
- #20876 by Nick Hoffman.
30
- * Platform is now forced to Gem::Platform::RUBY when nil or blank in the
31
- indexer. Fixes various uninstallable gems.
32
- * Handle EINVAL on seek. Based on patch in bug #20791 by Neil Wilson.
33
- * Fix HTTPS support. Patch #21072 by Alex Arnell.
34
- * RubyGems now loads all cache files even if latest has been loaded. Bug
35
- #20776 by Uwe Kubosch.
36
- * RubyGems checks for support of development dependencies for #to_ruby. Bug
37
- #20778 by Evan Weaver.
38
- * Now specifications from the future can be loaded.
39
- * Binary script uninstallation fixed. Bug #21234 by Neil Wilson.
40
- * Uninstallation with -i fixed. Bug #20812 by John Clayton.
41
- * Gem::Uninstaller#remove_all now calls Gem::Uninstaller#uninstall_gem so hooks
42
- get called. Bug #21242 by Neil Wilson.
43
- * Gem.ruby now properly escaped on windows. Fixes problem with extension
44
- compilation.
45
- * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
46
- * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
47
-
48
- Other Changes Include:
49
-
50
- * `gem help install` now describes _version_ argument to executable stubs
51
- * `gem help environment` describes environment variables and ~/.gemrc and
52
- /etc/gemrc
53
- * On-disk gemspecs are now read in UTF-8 and written with a UTF-8 magic comment
54
- * Rakefile
55
- * If the SETUP_OPTIONS environment variable is set, pass its contents as
56
- arguments to setup.rb
57
- * lib/rubygems/platform.rb
58
- * Remove deprecated constant warnings and really deprecate them. (WIN32,
59
- etc).
60
- * lib/rubygems/remote_fetcher.rb
61
- * Now uses ~/.gem/cache if the cache dir in GEM_HOME is not writable.
62
- * lib/rubygems/source_index.rb
63
- * Deprecate options to 'search' other than Gem::Dependency instances and
64
- issue warning until November 2008.
65
- * setup.rb
66
- * --destdir folder structure now built using Pathname, so it works for
67
- Windows platforms.
68
- * test/*
69
- * Fixes to run tests when under test/rubygems/. Patch by Yusuke ENDOH
70
- [ruby-core:17353].
71
- * test/test_ext_configure_builder.rb
72
- * Locale-free patch by Yusuke Endoh [ruby-core:17444].
73
-
74
- For a full list of changes to RubyGems and the contributor for each change, see
75
- the ChangeLog file.
76
-
77
- Special thanks to Chad Wooley for backwards compatibility testing and Luis
78
- Lavena for continuing windows support.
79
-
80
- == How can I get RubyGems?
81
-
82
- NOTE: If you have installed RubyGems using a package system you may want to
83
- install a new RubyGems through the same packaging system.
84
-
85
- If you have a recent version of RubyGems (0.8.5 or later), then all
86
- you need to do is:
87
-
88
- $ gem update --system (you might need to be admin/root)
89
-
90
- NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no
91
- rubygems-update installed. You will need to follow the second set of update
92
- instructions if you see "Nothing to update".
93
-
94
- NOTE: You may have to run the command twice if you have any previosly
95
- installed rubygems-update gems.
96
-
97
- If you have an older version of RubyGems installed, then you can still
98
- do it in two steps:
99
-
100
- $ gem install rubygems-update (again, might need to be admin/root)
101
- $ update_rubygems (... here too)
102
-
103
- If you don't have any gems install, there is still the pre-gem
104
- approach to getting software ... doing it manually:
105
-
106
- 1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
107
- 2. UNPACK INTO A DIRECTORY AND CD THERE
108
- 3. INSTALL WITH: ruby setup.rb (you may need admin/root privilege)
109
-
110
- == To File Bugs
111
-
112
- The RubyGems bug tracker can be found on RubyForge at:
113
- http://rubyforge.org/tracker/?func=add&group_id=126&atid=575
114
-
115
- When filing a bug, `gem env` output will be helpful in diagnosing the issue.
116
-
117
- If you find a bug where RubyGems crashes, please provide debug output. You can
118
- do that with `gem --debug the_command`.
119
-
120
- == Thanks
121
-
122
- Keep those gems coming!
123
-
124
- -- Jim & Chad & Eric (for the RubyGems team)
125
-
@@ -1,75 +0,0 @@
1
- = Announce: RubyGems Release 1.3.1
2
-
3
- NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no
4
- rubygems-update installed. You will need to follow the second set of update
5
- instructions if you see "Nothing to update".
6
-
7
- Release 1.3.1 fixes some bugs.
8
-
9
- Bugs fixed:
10
-
11
- * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
12
- issues related to no uid support under Windows.
13
- * Fix requires for Gem::inflate, Gem::deflate, etc.
14
- * Make Gem.dir respect :gemhome value from config. (Note: this feature may be
15
- removed since it is hard to implement on 1.9.)
16
- * Kernel methods are now private. Patch #20801 by James M. Lawrence.
17
- * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
18
- * Silence PATH warning.
19
-
20
- Deprecation Notices:
21
-
22
- * Gem::manage_gems will be removed on or after March 2009.
23
-
24
- For a full list of changes to RubyGems and the contributor for each change, see
25
- the ChangeLog file.
26
-
27
- Special thanks to Chad Wooley for backwards compatibility testing and Luis
28
- Lavena for continuing windows support.
29
-
30
- == How can I get RubyGems?
31
-
32
- NOTE: If you have installed RubyGems using a package system you may want to
33
- install a new RubyGems through the same packaging system.
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: RubyGems 1.1 and 1.2 have problems upgrading when there is no
41
- rubygems-update installed. You will need to follow the second set of update
42
- instructions if you see "Nothing to update".
43
-
44
- NOTE: You may have to run the command twice if you have any previosly
45
- installed rubygems-update gems.
46
-
47
- If you have an older version of RubyGems installed, then you can still
48
- do it in two steps:
49
-
50
- $ gem install rubygems-update (again, might need to be admin/root)
51
- $ update_rubygems (... here too)
52
-
53
- If you don't have any gems install, there is still the pre-gem
54
- approach to getting software ... doing it manually:
55
-
56
- 1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
57
- 2. UNPACK INTO A DIRECTORY AND CD THERE
58
- 3. INSTALL WITH: ruby setup.rb (you may need admin/root privilege)
59
-
60
- == To File Bugs
61
-
62
- The RubyGems bug tracker can be found on RubyForge at:
63
- http://rubyforge.org/tracker/?func=add&group_id=126&atid=575
64
-
65
- When filing a bug, `gem env` output will be helpful in diagnosing the issue.
66
-
67
- If you find a bug where RubyGems crashes, please provide debug output. You can
68
- do that with `gem --debug the_command`.
69
-
70
- == Thanks
71
-
72
- Keep those gems coming!
73
-
74
- -- Jim & Chad & Eric (for the RubyGems team)
75
-
@@ -1,119 +0,0 @@
1
- = Announce: RubyGems Release 1.3.2
2
-
3
- NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no
4
- rubygems-update installed. You will need to follow the second set of update
5
- instructions if you see "Nothing to update".
6
-
7
- Release 1.3.2 fixes some bugs and adds some features.
8
-
9
- Select New Features:
10
-
11
- * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
12
- This can be used to add commands (See Gem::CommandManager) or add
13
- install/uninstall hooks (See Gem::Installer and Gem::Uninstaller).
14
- * Gem::Version now understands prerelease versions using letters. (eg.
15
- '1.2.1.b') Thanks to Josh Susser, Alex Vollmer and Phil Hagelberg.
16
- * RubyGems now includes a Rake task for creating gems which replaces rake's
17
- Rake::GemPackageTask. See Gem::PackageTask.
18
- * Gem::find_files now returns paths in $LOAD_PATH.
19
- * Added Gem::promote_load_path for use with Gem::find_files
20
- * Added Gem::bin_path to make finding executables easier. Patch #24114 by
21
- James Tucker.
22
- * Various improvements to build arguments for installing gems.
23
- * `gem contents` added --all and --no-prefix.
24
- * Gem::Specification
25
- * #validate strips directories and errors on not-files.
26
- * #description no longer removes newlines.
27
- * #name must be a String.
28
- * FIXME and TODO are no longer allowed in various fields.
29
- * Added support for a license attribute. Feature #11041 (partial).
30
- * Removed Gem::Specification::list, too much process growth. Bug #23668 by
31
- Steve Purcell.
32
- * `gem generate_index`
33
- * Can now generate an RSS feed.
34
- * Modern indicies can now be updated incrementally.
35
- * Legacy indicies can be updated separately from modern.
36
-
37
- Select Bugs Fixed:
38
-
39
- * Better gem activation error message. Patch #23082.
40
- * Kernel methods are now private. Patch #20801 by James M. Lawrence.
41
- * Fixed various usability issues with `gem check`.
42
- * `gem update` now rescues InstallError and continues. Bug #19268 by Gabriel
43
- Wilkins.
44
- * Allow 'https', 'file' as a valid schemes for --source. Patch #22485.
45
- * `gem install`
46
- * Now removes existing path before installing. Bug #22837.
47
- * Uses Gem::bin_path in executable stubs to work around Kernel#load bug in
48
- 1.9.
49
- * Correctly handle build args (after --) via the API. Bug #23210.
50
- * --user-install
51
- * `gem install --no-user-install` now works. Patch #23573 by Alf Mikula.
52
- * `gem uninstall` can now uninstall from ~/.gem. Bug #23760 by Roger Pack.
53
- * setup.rb
54
- * Clarify RubyGems RDoc installation location. Bug #22656 by Gian Marco
55
- Gherardi.
56
- * Allow setup to run from read-only location. Patch #21862 by Luis Herrera.
57
- * Fixed overwriting ruby executable when BASERUBY was not set. Bug #24958
58
- by Michael Soulier.
59
- * Ensure we're in a RubyGems dir when installing.
60
- * Deal with extraneous quotation mark when autogenerating .bat file on MS
61
- Windows. Bug #22712.
62
-
63
- Deprecation Notices:
64
-
65
- * Gem::manage_gems has been removed.
66
- * Time::today will be removed in RubyGems 1.4.
67
-
68
- For a full list of changes to RubyGems and the contributor for each change, see
69
- the ChangeLog file.
70
-
71
- Special thanks to Chad Wooley for backwards compatibility testing and Luis
72
- Lavena and Daniel Berger for continuing windows support.
73
-
74
- == How can I get RubyGems?
75
-
76
- NOTE: If you have installed RubyGems using a package system you may want to
77
- install a new RubyGems through the same packaging system.
78
-
79
- If you have a recent version of RubyGems (0.8.5 or later), then all
80
- you need to do is:
81
-
82
- $ gem update --system (you might need to be admin/root)
83
-
84
- NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no
85
- rubygems-update installed. You will need to follow the second set of update
86
- instructions if you see "Nothing to update".
87
-
88
- NOTE: You may have to run the command twice if you have any previosly
89
- installed rubygems-update gems.
90
-
91
- If you have an older version of RubyGems installed, then you can still
92
- do it in two steps:
93
-
94
- $ gem install rubygems-update (again, might need to be admin/root)
95
- $ update_rubygems (... here too)
96
-
97
- If you don't have any gems install, there is still the pre-gem
98
- approach to getting software ... doing it manually:
99
-
100
- 1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
101
- 2. UNPACK INTO A DIRECTORY AND CD THERE
102
- 3. INSTALL WITH: ruby setup.rb (you may need admin/root privilege)
103
-
104
- == To File Bugs
105
-
106
- The RubyGems bug tracker can be found on RubyForge at:
107
- http://rubyforge.org/tracker/?func=add&group_id=126&atid=575
108
-
109
- When filing a bug, `gem env` output will be helpful in diagnosing the issue.
110
-
111
- If you find a bug where RubyGems crashes, please provide debug output. You can
112
- do that with `gem --debug the_command`.
113
-
114
- == Thanks
115
-
116
- Keep those gems coming!
117
-
118
- -- The RubyGems team
119
-
@@ -1,95 +0,0 @@
1
- = Announce: RubyGems Release 1.3.3
2
-
3
- NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no
4
- rubygems-update installed. You will need to follow the second set of update
5
- instructions if you see "Nothing to update".
6
-
7
- Release 1.3.3 fixes some bugs and adds some features.
8
-
9
- New Features:
10
-
11
- * `gem server` allows port names (from /etc/services) with --port.
12
- * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
13
- Dobriakov.
14
- * `gem spec` can retrieve single fields from a spec (like `gem spec rake
15
- authors`).
16
- * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
17
- * RDoc is now generated regardless of Gem::Specification#has_rdoc?
18
-
19
- Bug Fixes:
20
-
21
- * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
22
- Eisenberg.
23
- * Gem.bin_path now escapes paths with spaces.
24
- * Rake extension builder uses explicit correctly loads rubygems when invoking
25
- rake.
26
- * Prerelease versions now match "~>" correctly. Patch #25759 by Yossef
27
- Mendelssohn.
28
- * Check bindir for executables, not root when validating. Bug reported by
29
- David Chelimsky.
30
- * Remove Time.today, no way to override it before RubyGems loads. Bug #25564
31
- by Emanuele Vicentini
32
- * Raise Gem::Exception for #installation_path when not installed. Bug #25741
33
- by Daniel Berger.
34
- * Don't raise in Gem::Specification#validate when homepage is nil. Bug #25677
35
- by Mike Burrows.
36
- * Uninstall executables from the correct directory. Bug #25555 by Brett
37
- Eisenberg.
38
- * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
39
- reported by Alf Mikula.
40
-
41
- Deprecation Notices:
42
-
43
- * Gem::manage_gems has been removed.
44
- * Time::today has been removed early. There was no way to make it warn and be
45
- easy to override with user code.
46
-
47
- For a full list of changes to RubyGems and the contributor for each change, see
48
- the ChangeLog file.
49
-
50
- == How can I get RubyGems?
51
-
52
- NOTE: If you have installed RubyGems using a package system you may want to
53
- install a new RubyGems through the same packaging system.
54
-
55
- If you have a recent version of RubyGems (0.8.5 or later), then all
56
- you need to do is:
57
-
58
- $ gem update --system (you might need to be admin/root)
59
-
60
- NOTE: RubyGems 1.1 and 1.2 have problems upgrading when there is no
61
- rubygems-update installed. You will need to follow the second set of update
62
- instructions if you see "Nothing to update".
63
-
64
- NOTE: You may have to run the command twice if you have any previosly
65
- installed rubygems-update gems.
66
-
67
- If you have an older version of RubyGems installed, then you can still
68
- do it in two steps:
69
-
70
- $ gem install rubygems-update (again, might need to be admin/root)
71
- $ update_rubygems (... here too)
72
-
73
- If you don't have any gems install, there is still the pre-gem
74
- approach to getting software ... doing it manually:
75
-
76
- 1. DOWNLOAD FROM: http://rubyforge.org/frs/?group_id=126
77
- 2. UNPACK INTO A DIRECTORY AND CD THERE
78
- 3. INSTALL WITH: ruby setup.rb (you may need admin/root privilege)
79
-
80
- == To File Bugs
81
-
82
- The RubyGems bug tracker can be found on RubyForge at:
83
- http://rubyforge.org/tracker/?func=add&group_id=126&atid=575
84
-
85
- When filing a bug, `gem env` output will be helpful in diagnosing the issue.
86
-
87
- If you find a bug where RubyGems crashes, please provide debug output. You can
88
- do that with `gem --debug the_command`.
89
-
90
- == Thanks
91
-
92
- Keep those gems coming!
93
-
94
- -- The RubyGems team
95
-
@@ -1,19 +0,0 @@
1
- #--
2
- # DO NOT EDIT
3
- # This file is auto-generated by build scripts.
4
- # See: rake update_version
5
- #++
6
-
7
- module Gem
8
-
9
- ##
10
- # The version of RubyGems you are using
11
-
12
- RubyGemsVersion = '1.3.4'
13
-
14
- ##
15
- # The version of RubyGems you are using (duplicated for familiarity)
16
-
17
- VERSION = RubyGemsVersion
18
-
19
- end