rubygems-update 1.8.23 → 1.8.23.2
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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +2 -0
- data.tar.gz.sig +0 -0
- data/CVE-2013-4287.txt +36 -0
- data/CVE-2013-4363.txt +45 -0
- data/History.txt +18 -0
- data/Manifest.txt +2 -1
- data/Rakefile +3 -1
- data/lib/rubygems.rb +1 -1
- data/lib/rubygems/version.rb +2 -2
- data/test/rubygems/test_gem_requirement.rb +11 -9
- data/test/rubygems/test_gem_version.rb +9 -3
- metadata +152 -154
- metadata.gz.sig +0 -0
- data/.travis.yml +0 -14
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4485176fa4a497c3790dc6a32bd8e55bb2f77534
|
4
|
+
data.tar.gz: 6dc935f3b3e6ec40bb7200a3a3809395f2020e70
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: baf41d09f58583dc2e7576c16cca00a10831f12c446f570acec68cafcaedf15c202c208c65fdb20b0df28c9545189b4f78ddec0db24340bf05b2697db4eb5b38
|
7
|
+
data.tar.gz: c971a892d2221997ac3bb54f1ffc44a171c2c956605a9127acc99415890d30e390052f1fdd458ea016fd55499ad4309fc2b0f7093b9997c71232c3ba268b0cf4
|
checksums.yaml.gz.sig
ADDED
data.tar.gz.sig
ADDED
Binary file
|
data/CVE-2013-4287.txt
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
= Algorithmic complexity vulnerability in RubyGems 2.0.7 and older
|
2
|
+
|
3
|
+
RubyGems validates versions with a regular expression that is vulnerable to
|
4
|
+
denial of service due to a backtracking regular expression. For specially
|
5
|
+
crafted RubyGems versions attackers can cause denial of service through CPU
|
6
|
+
consumption.
|
7
|
+
|
8
|
+
RubyGems versions 2.0.7 and older, 2.1.0.rc.1 and 2.1.0.rc.2 are vulnerable.
|
9
|
+
|
10
|
+
Ruby versions 1.9.0 through 2.0.0p247 are vulnerable as they contain embedded
|
11
|
+
versions of RubyGems.
|
12
|
+
|
13
|
+
It does not appear to be possible to exploit this vulnerability by installing a
|
14
|
+
gem for RubyGems 1.8.x or 2.0.x. Vulnerable uses of RubyGems API include
|
15
|
+
packaging a gem (through `gem build`, Gem::Package or Gem::PackageTask),
|
16
|
+
sending user input to Gem::Version.new, Gem::Version.correct? or use of the
|
17
|
+
Gem::Version::VERSION_PATTERN or Gem::Version::ANCHORED_VERSION_PATTERN
|
18
|
+
constants.
|
19
|
+
|
20
|
+
Notably, users of bundler that install gems from git are vulnerable if a
|
21
|
+
malicious author changes the gemspec to an invalid version.
|
22
|
+
|
23
|
+
The vulnerability can be fixed by changing the first grouping to an atomic
|
24
|
+
grouping in Gem::Version::VERSION_PATTERN in lib/rubygems/version.rb. For
|
25
|
+
RubyGems 2.0.x:
|
26
|
+
|
27
|
+
- VERSION_PATTERN = '[0-9]+(\.[0-9a-zA-Z]+)*(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?' # :nodoc:
|
28
|
+
+ VERSION_PATTERN = '[0-9]+(?>\.[0-9a-zA-Z]+)*(-[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)?' # :nodoc:
|
29
|
+
|
30
|
+
For RubyGems 1.8.x:
|
31
|
+
|
32
|
+
- VERSION_PATTERN = '[0-9]+(\.[0-9a-zA-Z]+)*' # :nodoc:
|
33
|
+
+ VERSION_PATTERN = '[0-9]+(?>\.[0-9a-zA-Z]+)*' # :nodoc:
|
34
|
+
|
35
|
+
This vulnerability was discovered by Damir Sharipov <dammer2k@gmail.com>
|
36
|
+
|
data/CVE-2013-4363.txt
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
= Algorithmic complexity vulnerability in RubyGems 2.1.4 and older
|
2
|
+
|
3
|
+
The patch for CVE-2013-4287 was insufficiently verified so the combined
|
4
|
+
regular expression for verifying gem version remains vulnerable following
|
5
|
+
CVE-2013-4287.
|
6
|
+
|
7
|
+
RubyGems validates versions with a regular expression that is vulnerable to
|
8
|
+
denial of service due to backtracking. For specially crafted RubyGems
|
9
|
+
versions attackers can cause denial of service through CPU consumption.
|
10
|
+
|
11
|
+
RubyGems versions 2.1.4 and older are vulnerable.
|
12
|
+
|
13
|
+
Ruby versions 1.9.0 through 2.0.0p247 are vulnerable as they contain embedded
|
14
|
+
versions of RubyGems.
|
15
|
+
|
16
|
+
It does not appear to be possible to exploit this vulnerability by installing a
|
17
|
+
gem for RubyGems 1.8.x or newer. Vulnerable uses of RubyGems API include
|
18
|
+
packaging a gem (through `gem build`, Gem::Package or Gem::PackageTask),
|
19
|
+
sending user input to Gem::Version.new, Gem::Version.correct? or use of the
|
20
|
+
Gem::Version::VERSION_PATTERN or Gem::Version::ANCHORED_VERSION_PATTERN
|
21
|
+
constants.
|
22
|
+
|
23
|
+
Notably, users of bundler that install gems from git are vulnerable if a
|
24
|
+
malicious author changes the gemspec to an invalid version.
|
25
|
+
|
26
|
+
The vulnerability can be fixed by changing the "*" repetition to a "?"
|
27
|
+
repetition in Gem::Version::ANCHORED_VERSION_PATTERN in
|
28
|
+
lib/rubygems/version.rb. For RubyGems 2.1.x:
|
29
|
+
|
30
|
+
- ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})*\s*\z/ # :nodoc:
|
31
|
+
+ ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})?\s*\z/ # :nodoc:
|
32
|
+
|
33
|
+
For RubyGems 2.0.x:
|
34
|
+
|
35
|
+
- ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})*\s*\z/ # :nodoc:
|
36
|
+
+ ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})?\s*\z/ # :nodoc:
|
37
|
+
|
38
|
+
For RubyGems 1.8.x:
|
39
|
+
|
40
|
+
- ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})*\s*\z/ # :nodoc:
|
41
|
+
+ ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})?\s*\z/ # :nodoc:
|
42
|
+
|
43
|
+
|
44
|
+
This vulnerability was discovered by Alexander Cherepanov <cherepan@mccme.ru>
|
45
|
+
|
data/History.txt
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# coding: UTF-8
|
2
2
|
|
3
|
+
=== 1.8.23.2 / 2013-09-24
|
4
|
+
|
5
|
+
Security fixes:
|
6
|
+
|
7
|
+
* RubyGems 2.1.4 and earlier are vulnerable to excessive CPU usage due to a
|
8
|
+
backtracking in Gem::Version validation. See CVE-2013-4363 for full details
|
9
|
+
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
10
|
+
1.8.23.2 (for Ruby 1.9.3).
|
11
|
+
|
12
|
+
=== 1.8.23.1 / 2013-09-09
|
13
|
+
|
14
|
+
Security fixes:
|
15
|
+
|
16
|
+
* RubyGems 2.0.7 and earlier are vulnerable to excessive CPU usage due to a
|
17
|
+
backtracking in Gem::Version validation. See CVE-2013-4287 for full details
|
18
|
+
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
19
|
+
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
20
|
+
|
3
21
|
=== 1.8.23 / 2012-04-19
|
4
22
|
|
5
23
|
This release increases the security used when RubyGems is talking to
|
data/Manifest.txt
CHANGED
data/Rakefile
CHANGED
@@ -50,7 +50,9 @@ hoe = Hoe.spec 'rubygems-update' do
|
|
50
50
|
extra_dev_deps << ['rcov', '~> 0.9.0']
|
51
51
|
extra_dev_deps << ['ZenTest', '~> 4.5']
|
52
52
|
|
53
|
-
self.extra_rdoc_files = Dir["*.rdoc"]
|
53
|
+
self.extra_rdoc_files = Dir["*.rdoc"] + %w[
|
54
|
+
CVE-2013-4287.txt
|
55
|
+
]
|
54
56
|
|
55
57
|
spec_extras['rdoc_options'] = proc do |rdoc_options|
|
56
58
|
rdoc_options << "--title=RubyGems #{self.version} Documentation"
|
data/lib/rubygems.rb
CHANGED
data/lib/rubygems/version.rb
CHANGED
@@ -145,8 +145,8 @@ class Gem::Version
|
|
145
145
|
|
146
146
|
include Comparable
|
147
147
|
|
148
|
-
VERSION_PATTERN = '[0-9]+(
|
149
|
-
ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})
|
148
|
+
VERSION_PATTERN = '[0-9]+(?>\.[0-9a-zA-Z]+)*' # :nodoc:
|
149
|
+
ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})?\s*\z/ # :nodoc:
|
150
150
|
|
151
151
|
##
|
152
152
|
# A string representation of this Version.
|
@@ -37,17 +37,19 @@ class TestGemRequirement < Gem::TestCase
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def test_parse_bad
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
40
|
+
[
|
41
|
+
nil,
|
42
|
+
'',
|
43
|
+
'! 1',
|
44
|
+
'= junk',
|
45
|
+
'1..2',
|
46
|
+
].each do |bad|
|
47
|
+
e = assert_raises ArgumentError do
|
48
|
+
Gem::Requirement.parse bad
|
49
|
+
end
|
45
50
|
|
46
|
-
|
47
|
-
Gem::Requirement.parse ""
|
51
|
+
assert_equal "Illformed requirement [#{bad.inspect}]", e.message
|
48
52
|
end
|
49
|
-
|
50
|
-
assert_equal 'Illformed requirement [""]', e.message
|
51
53
|
end
|
52
54
|
|
53
55
|
def test_prerelease_eh
|
@@ -64,12 +64,18 @@ class TestGemVersion < Gem::TestCase
|
|
64
64
|
end
|
65
65
|
|
66
66
|
def test_initialize_bad
|
67
|
-
[
|
68
|
-
|
67
|
+
%W[
|
68
|
+
junk
|
69
|
+
1.0\n2.0
|
70
|
+
1..2
|
71
|
+
1.2\ 3.4
|
72
|
+
1-2-3
|
73
|
+
].each do |bad|
|
74
|
+
e = assert_raises ArgumentError, bad do
|
69
75
|
Gem::Version.new bad
|
70
76
|
end
|
71
77
|
|
72
|
-
assert_equal "Malformed version number string #{bad}", e.message
|
78
|
+
assert_equal "Malformed version number string #{bad}", e.message, bad
|
73
79
|
end
|
74
80
|
end
|
75
81
|
|
metadata
CHANGED
@@ -1,177 +1,184 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubygems-update
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 8
|
9
|
-
- 23
|
10
|
-
version: 1.8.23
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.8.23.2
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Jim Weirich
|
14
8
|
- Chad Fowler
|
15
9
|
- Eric Hodel
|
16
10
|
autorequire:
|
17
11
|
bindir: bin
|
18
|
-
cert_chain:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
12
|
+
cert_chain:
|
13
|
+
- |
|
14
|
+
-----BEGIN CERTIFICATE-----
|
15
|
+
MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMRAwDgYDVQQDDAdkcmJy
|
16
|
+
YWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZFgNu
|
17
|
+
ZXQwHhcNMTMwMjI4MDUyMjA4WhcNMTQwMjI4MDUyMjA4WjBBMRAwDgYDVQQDDAdk
|
18
|
+
cmJyYWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZ
|
19
|
+
FgNuZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbbgLrGLGIDE76
|
20
|
+
LV/cvxdEzCuYuS3oG9PrSZnuDweySUfdp/so0cDq+j8bqy6OzZSw07gdjwFMSd6J
|
21
|
+
U5ddZCVywn5nnAQ+Ui7jMW54CYt5/H6f2US6U0hQOjJR6cpfiymgxGdfyTiVcvTm
|
22
|
+
Gj/okWrQl0NjYOYBpDi+9PPmaH2RmLJu0dB/NylsDnW5j6yN1BEI8MfJRR+HRKZY
|
23
|
+
mUtgzBwF1V4KIZQ8EuL6I/nHVu07i6IkrpAgxpXUfdJQJi0oZAqXurAV3yTxkFwd
|
24
|
+
g62YrrW26mDe+pZBzR6bpLE+PmXCzz7UxUq3AE0gPHbiMXie3EFE0oxnsU3lIduh
|
25
|
+
sCANiQ8BAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
|
26
|
+
BBS5k4Z75VSpdM0AclG2UvzFA/VW5DAfBgNVHREEGDAWgRRkcmJyYWluQHNlZ21l
|
27
|
+
bnQ3Lm5ldDAfBgNVHRIEGDAWgRRkcmJyYWluQHNlZ21lbnQ3Lm5ldDANBgkqhkiG
|
28
|
+
9w0BAQUFAAOCAQEAOflo4Md5aJF//EetzXIGZ2EI5PzKWX/mMpp7cxFyDcVPtTv0
|
29
|
+
js/6zWrWSbd60W9Kn4ch3nYiATFKhisgeYotDDz2/pb/x1ivJn4vEvs9kYKVvbF8
|
30
|
+
V7MV/O5HDW8Q0pA1SljI6GzcOgejtUMxZCyyyDdbUpyAMdt9UpqTZkZ5z1sicgQk
|
31
|
+
5o2XJ+OhceOIUVqVh1r6DNY5tLVaGJabtBmJAYFVznDcHiSFybGKBa5n25Egql1t
|
32
|
+
KDyY1VIazVgoC8XvR4h/95/iScPiuglzA+DBG1hip1xScAtw05BrXyUNrc9CEMYU
|
33
|
+
wgF94UVoHRp6ywo8I7NP3HcwFQDFNEZPNGXsng==
|
34
|
+
-----END CERTIFICATE-----
|
35
|
+
date: 2013-09-24 00:00:00.000000000 Z
|
36
|
+
dependencies:
|
37
|
+
- !ruby/object:Gem::Dependency
|
23
38
|
name: minitest
|
24
|
-
|
25
|
-
|
26
|
-
none: false
|
27
|
-
requirements:
|
39
|
+
requirement: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
28
41
|
- - ~>
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
segments:
|
32
|
-
- 2
|
33
|
-
- 12
|
34
|
-
version: "2.12"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '5.0'
|
35
44
|
type: :development
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: builder
|
39
45
|
prerelease: false
|
40
|
-
|
41
|
-
|
42
|
-
|
46
|
+
version_requirements: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ~>
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '5.0'
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: rdoc
|
53
|
+
requirement: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
43
55
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
46
|
-
segments:
|
47
|
-
- 2
|
48
|
-
- 1
|
49
|
-
version: "2.1"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '4.0'
|
50
58
|
type: :development
|
51
|
-
version_requirements: *id002
|
52
|
-
- !ruby/object:Gem::Dependency
|
53
|
-
name: hoe-seattlerb
|
54
59
|
prerelease: false
|
55
|
-
|
56
|
-
|
57
|
-
|
60
|
+
version_requirements: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ~>
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '4.0'
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: builder
|
67
|
+
requirement: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
58
69
|
- - ~>
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
|
61
|
-
segments:
|
62
|
-
- 1
|
63
|
-
- 2
|
64
|
-
version: "1.2"
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '2.1'
|
65
72
|
type: :development
|
66
|
-
version_requirements: *id003
|
67
|
-
- !ruby/object:Gem::Dependency
|
68
|
-
name: session
|
69
73
|
prerelease: false
|
70
|
-
|
71
|
-
|
72
|
-
|
74
|
+
version_requirements: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ~>
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '2.1'
|
79
|
+
- !ruby/object:Gem::Dependency
|
80
|
+
name: hoe-seattlerb
|
81
|
+
requirement: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
73
83
|
- - ~>
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
|
76
|
-
segments:
|
77
|
-
- 2
|
78
|
-
- 4
|
79
|
-
version: "2.4"
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '1.2'
|
80
86
|
type: :development
|
81
|
-
version_requirements: *id004
|
82
|
-
- !ruby/object:Gem::Dependency
|
83
|
-
name: rdoc
|
84
87
|
prerelease: false
|
85
|
-
|
86
|
-
|
87
|
-
requirements:
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
88
90
|
- - ~>
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '1.2'
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: session
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ~>
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '2.4'
|
95
100
|
type: :development
|
96
|
-
version_requirements: *id005
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: rcov
|
99
101
|
prerelease: false
|
100
|
-
|
101
|
-
|
102
|
-
requirements:
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
103
104
|
- - ~>
|
104
|
-
- !ruby/object:Gem::Version
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '2.4'
|
107
|
+
- !ruby/object:Gem::Dependency
|
108
|
+
name: rcov
|
109
|
+
requirement: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ~>
|
112
|
+
- !ruby/object:Gem::Version
|
110
113
|
version: 0.9.0
|
111
114
|
type: :development
|
112
|
-
version_requirements: *id006
|
113
|
-
- !ruby/object:Gem::Dependency
|
114
|
-
name: ZenTest
|
115
115
|
prerelease: false
|
116
|
-
|
117
|
-
|
118
|
-
requirements:
|
116
|
+
version_requirements: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
119
118
|
- - ~>
|
120
|
-
- !ruby/object:Gem::Version
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: 0.9.0
|
121
|
+
- !ruby/object:Gem::Dependency
|
122
|
+
name: ZenTest
|
123
|
+
requirement: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ~>
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '4.5'
|
126
128
|
type: :development
|
127
|
-
version_requirements: *id007
|
128
|
-
- !ruby/object:Gem::Dependency
|
129
|
-
name: hoe
|
130
129
|
prerelease: false
|
131
|
-
|
132
|
-
|
133
|
-
requirements:
|
130
|
+
version_requirements: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
134
132
|
- - ~>
|
135
|
-
- !ruby/object:Gem::Version
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '4.5'
|
135
|
+
- !ruby/object:Gem::Dependency
|
136
|
+
name: hoe
|
137
|
+
requirement: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - ~>
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '3.7'
|
141
142
|
type: :development
|
142
|
-
|
143
|
+
prerelease: false
|
144
|
+
version_requirements: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ~>
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '3.7'
|
143
149
|
description: |-
|
144
150
|
RubyGems is a package management framework for Ruby.
|
145
|
-
|
151
|
+
|
146
152
|
This gem is an update for the RubyGems software. You must have an
|
147
153
|
installation of RubyGems before this update can be applied.
|
148
|
-
|
154
|
+
|
149
155
|
See Gem for information on RubyGems (or `ri Gem`)
|
150
|
-
|
156
|
+
|
151
157
|
To upgrade to the latest RubyGems, run:
|
152
|
-
|
158
|
+
|
153
159
|
$ gem update --system # you might need to be an administrator or root
|
154
|
-
|
160
|
+
|
155
161
|
See UPGRADING.rdoc for more details and alternative instructions.
|
156
|
-
|
162
|
+
|
157
163
|
-----
|
158
|
-
|
164
|
+
|
159
165
|
If you don't have RubyGems installed, your can still do it manually:
|
160
|
-
|
166
|
+
|
161
167
|
* Download from: https://rubygems.org/pages/download
|
162
168
|
* Unpack into a directory and cd there
|
163
169
|
* Install with: ruby setup.rb # you may need admin/root privilege
|
164
|
-
|
170
|
+
|
165
171
|
For more details and other options, see:
|
166
|
-
|
172
|
+
|
167
173
|
ruby setup.rb --help
|
168
|
-
email:
|
174
|
+
email:
|
169
175
|
- rubygems-developers@rubyforge.org
|
170
|
-
executables:
|
176
|
+
executables:
|
171
177
|
- update_rubygems
|
172
178
|
extensions: []
|
173
|
-
|
174
|
-
|
179
|
+
extra_rdoc_files:
|
180
|
+
- CVE-2013-4287.txt
|
181
|
+
- CVE-2013-4363.txt
|
175
182
|
- History.txt
|
176
183
|
- LICENSE.txt
|
177
184
|
- MIT.txt
|
@@ -179,10 +186,11 @@ extra_rdoc_files:
|
|
179
186
|
- README.rdoc
|
180
187
|
- UPGRADING.rdoc
|
181
188
|
- hide_lib_for_update/note.txt
|
182
|
-
files:
|
189
|
+
files:
|
183
190
|
- .autotest
|
184
191
|
- .document
|
185
|
-
- .
|
192
|
+
- CVE-2013-4287.txt
|
193
|
+
- CVE-2013-4363.txt
|
186
194
|
- History.txt
|
187
195
|
- LICENSE.txt
|
188
196
|
- MIT.txt
|
@@ -385,43 +393,33 @@ files:
|
|
385
393
|
- util/CL2notes
|
386
394
|
- .gemtest
|
387
395
|
homepage: http://rubygems.org
|
388
|
-
licenses:
|
389
|
-
|
396
|
+
licenses:
|
397
|
+
- MIT
|
398
|
+
metadata: {}
|
390
399
|
post_install_message:
|
391
|
-
rdoc_options:
|
400
|
+
rdoc_options:
|
392
401
|
- --main
|
393
402
|
- README.rdoc
|
394
|
-
- --title=RubyGems 1.8.23 Documentation
|
395
|
-
require_paths:
|
403
|
+
- --title=RubyGems 1.8.23.2 Documentation
|
404
|
+
require_paths:
|
396
405
|
- hide_lib_for_update
|
397
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
- !ruby/object:Gem::Version
|
402
|
-
hash: 57
|
403
|
-
segments:
|
404
|
-
- 1
|
405
|
-
- 8
|
406
|
-
- 7
|
406
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
407
|
+
requirements:
|
408
|
+
- - '>='
|
409
|
+
- !ruby/object:Gem::Version
|
407
410
|
version: 1.8.7
|
408
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
hash: 3
|
414
|
-
segments:
|
415
|
-
- 0
|
416
|
-
version: "0"
|
411
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
412
|
+
requirements:
|
413
|
+
- - '>='
|
414
|
+
- !ruby/object:Gem::Version
|
415
|
+
version: '0'
|
417
416
|
requirements: []
|
418
|
-
|
419
417
|
rubyforge_project: rubygems
|
420
|
-
rubygems_version: 1.
|
418
|
+
rubygems_version: 2.1.4
|
421
419
|
signing_key:
|
422
|
-
specification_version:
|
420
|
+
specification_version: 4
|
423
421
|
summary: RubyGems is a package management framework for Ruby
|
424
|
-
test_files:
|
422
|
+
test_files:
|
425
423
|
- test/rubygems/test_config.rb
|
426
424
|
- test/rubygems/test_gem.rb
|
427
425
|
- test/rubygems/test_gem_builder.rb
|
metadata.gz.sig
ADDED
Binary file
|
data/.travis.yml
DELETED