rubygems-update 3.5.6 → 3.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -0
- data/Manifest.txt +4 -4
- data/bundler/CHANGELOG.md +18 -0
- data/bundler/lib/bundler/build_metadata.rb +2 -2
- data/bundler/lib/bundler/cli/binstubs.rb +1 -1
- data/bundler/lib/bundler/cli/plugin.rb +2 -2
- data/bundler/lib/bundler/cli.rb +1 -1
- data/bundler/lib/bundler/dsl.rb +16 -1
- data/bundler/lib/bundler/man/bundle-add.1 +1 -1
- data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
- data/bundler/lib/bundler/man/bundle-cache.1 +1 -1
- data/bundler/lib/bundler/man/bundle-check.1 +1 -1
- data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
- data/bundler/lib/bundler/man/bundle-config.1 +1 -1
- data/bundler/lib/bundler/man/bundle-console.1 +1 -1
- data/bundler/lib/bundler/man/bundle-doctor.1 +1 -1
- data/bundler/lib/bundler/man/bundle-exec.1 +1 -1
- data/bundler/lib/bundler/man/bundle-gem.1 +1 -1
- data/bundler/lib/bundler/man/bundle-help.1 +1 -1
- data/bundler/lib/bundler/man/bundle-info.1 +1 -1
- data/bundler/lib/bundler/man/bundle-init.1 +1 -1
- data/bundler/lib/bundler/man/bundle-inject.1 +1 -1
- data/bundler/lib/bundler/man/bundle-install.1 +3 -3
- data/bundler/lib/bundler/man/bundle-install.1.ronn +2 -2
- data/bundler/lib/bundler/man/bundle-list.1 +1 -1
- data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
- data/bundler/lib/bundler/man/bundle-open.1 +1 -1
- data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
- data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
- data/bundler/lib/bundler/man/bundle-plugin.1 +4 -4
- data/bundler/lib/bundler/man/bundle-plugin.1.ronn +3 -3
- data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
- data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
- data/bundler/lib/bundler/man/bundle-show.1 +1 -1
- data/bundler/lib/bundler/man/bundle-update.1 +1 -1
- data/bundler/lib/bundler/man/bundle-version.1 +1 -1
- data/bundler/lib/bundler/man/bundle-viz.1 +1 -1
- data/bundler/lib/bundler/man/bundle.1 +1 -1
- data/bundler/lib/bundler/man/gemfile.5 +3 -3
- data/bundler/lib/bundler/man/gemfile.5.ronn +2 -2
- data/bundler/lib/bundler/plugin/installer.rb +5 -9
- data/bundler/lib/bundler/settings.rb +10 -7
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -3
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +0 -5
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +1 -0
- data/bundler/lib/bundler/vendored_net_http.rb +7 -3
- data/bundler/lib/bundler/vendored_timeout.rb +7 -3
- data/bundler/lib/bundler/version.rb +1 -1
- data/lib/rubygems/command.rb +1 -1
- data/lib/rubygems/command_manager.rb +1 -1
- data/lib/rubygems/commands/help_command.rb +2 -2
- data/lib/rubygems/commands/rdoc_command.rb +1 -8
- data/lib/rubygems/defaults.rb +4 -4
- data/lib/rubygems/dependency.rb +2 -2
- data/lib/rubygems/dependency_list.rb +1 -1
- data/lib/rubygems/ext/cargo_builder.rb +1 -1
- data/lib/rubygems/gemcutter_utilities.rb +1 -1
- data/lib/rubygems/remote_fetcher.rb +1 -1
- data/lib/rubygems/request.rb +1 -1
- data/lib/rubygems/request_set.rb +1 -1
- data/lib/rubygems/s3_uri_signer.rb +1 -1
- data/lib/rubygems/safe_yaml.rb +10 -1
- data/lib/rubygems/security.rb +1 -1
- data/lib/rubygems/specification.rb +1 -1
- data/lib/rubygems/specification_policy.rb +9 -1
- data/lib/rubygems/util/licenses.rb +43 -0
- data/lib/rubygems/vendor/molinillo/lib/molinillo/dependency_graph.rb +1 -1
- data/lib/rubygems/vendored_net_http.rb +5 -0
- data/lib/rubygems/vendored_timeout.rb +5 -0
- data/lib/rubygems.rb +2 -2
- data/rubygems-update.gemspec +1 -1
- metadata +7 -7
- data/lib/rubygems/net/http.rb +0 -3
- data/lib/rubygems/timeout.rb +0 -3
- /data/lib/rubygems/{optparse.rb → vendored_optparse.rb} +0 -0
- /data/lib/rubygems/{tsort.rb → vendored_tsort.rb} +0 -0
@@ -27,9 +27,10 @@ Gem::Specification.new do |spec|
|
|
27
27
|
|
28
28
|
# Specify which files should be added to the gem when it is released.
|
29
29
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
gemspec = File.basename(__FILE__)
|
31
|
+
spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
|
32
|
+
ls.readlines("\x0", chomp: true).reject do |f|
|
33
|
+
(f == gemspec) ||
|
33
34
|
f.start_with?(*%w[bin/ test/ spec/ features/ .git <%= config[:ci_config_path] %>appveyor Gemfile])
|
34
35
|
end
|
35
36
|
end
|
@@ -2,12 +2,7 @@ AllCops:
|
|
2
2
|
TargetRubyVersion: <%= ::Gem::Version.new(config[:required_ruby_version]).segments[0..1].join(".") %>
|
3
3
|
|
4
4
|
Style/StringLiterals:
|
5
|
-
Enabled: true
|
6
5
|
EnforcedStyle: double_quotes
|
7
6
|
|
8
7
|
Style/StringLiteralsInInterpolation:
|
9
|
-
Enabled: true
|
10
8
|
EnforcedStyle: double_quotes
|
11
|
-
|
12
|
-
Layout/LineLength:
|
13
|
-
Max: 120
|
@@ -1,8 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
begin
|
4
|
-
require "rubygems/
|
4
|
+
require "rubygems/vendored_net_http"
|
5
5
|
rescue LoadError
|
6
|
-
|
7
|
-
|
6
|
+
begin
|
7
|
+
require "rubygems/net/http"
|
8
|
+
rescue LoadError
|
9
|
+
require "net/http"
|
10
|
+
Gem::Net = Net
|
11
|
+
end
|
8
12
|
end
|
@@ -1,8 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
begin
|
4
|
-
require "rubygems/
|
4
|
+
require "rubygems/vendored_timeout"
|
5
5
|
rescue LoadError
|
6
|
-
|
7
|
-
|
6
|
+
begin
|
7
|
+
require "rubygems/timeout"
|
8
|
+
rescue LoadError
|
9
|
+
require "timeout"
|
10
|
+
Gem::Timeout = Timeout
|
11
|
+
end
|
8
12
|
end
|
data/lib/rubygems/command.rb
CHANGED
@@ -59,7 +59,7 @@ multiple environments. The RubyGems implementation is designed to be
|
|
59
59
|
compatible with Bundler's Gemfile format. You can see additional
|
60
60
|
documentation on the format at:
|
61
61
|
|
62
|
-
|
62
|
+
https://bundler.io
|
63
63
|
|
64
64
|
RubyGems automatically looks for these gem dependencies files:
|
65
65
|
|
@@ -172,7 +172,7 @@ and #platforms methods:
|
|
172
172
|
See the bundler Gemfile manual page for a list of platforms supported in a gem
|
173
173
|
dependencies file.:
|
174
174
|
|
175
|
-
|
175
|
+
https://bundler.io/v2.5/man/gemfile.5.html
|
176
176
|
|
177
177
|
Ruby Version and Engine Dependency
|
178
178
|
==================================
|
@@ -84,14 +84,7 @@ Use --overwrite to force rebuilding of documentation.
|
|
84
84
|
FileUtils.rm_rf File.join(spec.doc_dir, "rdoc")
|
85
85
|
end
|
86
86
|
|
87
|
-
|
88
|
-
doc.generate
|
89
|
-
rescue Errno::ENOENT => e
|
90
|
-
match = / - /.match(e.message)
|
91
|
-
alert_error "Unable to document #{spec.full_name}, " \
|
92
|
-
" #{match.post_match} is missing, skipping"
|
93
|
-
terminate_interaction 1 if specs.length == 1
|
94
|
-
end
|
87
|
+
doc.generate
|
95
88
|
end
|
96
89
|
end
|
97
90
|
end
|
data/lib/rubygems/defaults.rb
CHANGED
@@ -112,7 +112,7 @@ module Gem
|
|
112
112
|
# The path to standard location of the user's configuration directory.
|
113
113
|
|
114
114
|
def self.config_home
|
115
|
-
@config_home ||=
|
115
|
+
@config_home ||= ENV["XDG_CONFIG_HOME"] || File.join(Gem.user_home, ".config")
|
116
116
|
end
|
117
117
|
|
118
118
|
##
|
@@ -145,21 +145,21 @@ module Gem
|
|
145
145
|
# The path to standard location of the user's cache directory.
|
146
146
|
|
147
147
|
def self.cache_home
|
148
|
-
@cache_home ||=
|
148
|
+
@cache_home ||= ENV["XDG_CACHE_HOME"] || File.join(Gem.user_home, ".cache")
|
149
149
|
end
|
150
150
|
|
151
151
|
##
|
152
152
|
# The path to standard location of the user's data directory.
|
153
153
|
|
154
154
|
def self.data_home
|
155
|
-
@data_home ||=
|
155
|
+
@data_home ||= ENV["XDG_DATA_HOME"] || File.join(Gem.user_home, ".local", "share")
|
156
156
|
end
|
157
157
|
|
158
158
|
##
|
159
159
|
# The path to standard location of the user's state directory.
|
160
160
|
|
161
161
|
def self.state_home
|
162
|
-
@state_home ||=
|
162
|
+
@state_home ||= ENV["XDG_STATE_HOME"] || File.join(Gem.user_home, ".local", "state")
|
163
163
|
end
|
164
164
|
|
165
165
|
##
|
data/lib/rubygems/dependency.rb
CHANGED
@@ -328,9 +328,9 @@ class Gem::Dependency
|
|
328
328
|
return active if active
|
329
329
|
|
330
330
|
unless prerelease?
|
331
|
-
#
|
331
|
+
# Consider prereleases only as a fallback
|
332
332
|
pre, matches = matches.partition {|spec| spec.version.prerelease? }
|
333
|
-
matches
|
333
|
+
matches = pre if matches.empty?
|
334
334
|
end
|
335
335
|
|
336
336
|
matches.first
|
@@ -293,7 +293,7 @@ EOF
|
|
293
293
|
|
294
294
|
case var_name
|
295
295
|
# On windows, it is assumed that mkmf has setup an exports file for the
|
296
|
-
# extension, so we have to
|
296
|
+
# extension, so we have to create one ourselves.
|
297
297
|
when "DEFFILE"
|
298
298
|
write_deffile(dest_dir, crate_name)
|
299
299
|
else
|
@@ -85,7 +85,7 @@ module Gem::GemcutterUtilities
|
|
85
85
|
# If +allowed_push_host+ metadata is present, then it will only allow that host.
|
86
86
|
|
87
87
|
def rubygems_api_request(method, path, host = nil, allowed_push_host = nil, scope: nil, credentials: {}, &block)
|
88
|
-
require_relative "
|
88
|
+
require_relative "vendored_net_http"
|
89
89
|
|
90
90
|
self.host = host if host
|
91
91
|
unless self.host
|
@@ -74,7 +74,7 @@ class Gem::RemoteFetcher
|
|
74
74
|
|
75
75
|
def initialize(proxy=nil, dns=nil, headers={})
|
76
76
|
require_relative "core_ext/tcpsocket_init" if Gem.configuration.ipv4_fallback_enabled
|
77
|
-
require_relative "
|
77
|
+
require_relative "vendored_net_http"
|
78
78
|
require "stringio"
|
79
79
|
require_relative "vendor/uri/lib/uri"
|
80
80
|
|
data/lib/rubygems/request.rb
CHANGED
data/lib/rubygems/request_set.rb
CHANGED
data/lib/rubygems/safe_yaml.rb
CHANGED
@@ -25,8 +25,17 @@ module Gem
|
|
25
25
|
runtime
|
26
26
|
].freeze
|
27
27
|
|
28
|
+
@aliases_enabled = true
|
29
|
+
def self.aliases_enabled=(value) # :nodoc:
|
30
|
+
@aliases_enabled = !!value
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.aliases_enabled? # :nodoc:
|
34
|
+
@aliases_enabled
|
35
|
+
end
|
36
|
+
|
28
37
|
def self.safe_load(input)
|
29
|
-
::Psych.safe_load(input, permitted_classes: PERMITTED_CLASSES, permitted_symbols: PERMITTED_SYMBOLS, aliases:
|
38
|
+
::Psych.safe_load(input, permitted_classes: PERMITTED_CLASSES, permitted_symbols: PERMITTED_SYMBOLS, aliases: @aliases_enabled)
|
30
39
|
end
|
31
40
|
|
32
41
|
def self.load(input)
|
data/lib/rubygems/security.rb
CHANGED
@@ -341,7 +341,7 @@ class Gem::Specification < Gem::BasicSpecification
|
|
341
341
|
# https://opensource.org/licenses/ approved.
|
342
342
|
#
|
343
343
|
# The most commonly used OSI-approved licenses are MIT and Apache-2.0.
|
344
|
-
# GitHub also provides a license picker at
|
344
|
+
# GitHub also provides a license picker at https://choosealicense.com/.
|
345
345
|
#
|
346
346
|
# You can also use a custom license file along with your gemspec and specify
|
347
347
|
# a LicenseRef-<idstring>, where idstring is the name of the file containing
|
@@ -7,7 +7,7 @@ class Gem::SpecificationPolicy
|
|
7
7
|
|
8
8
|
VALID_NAME_PATTERN = /\A[a-zA-Z0-9\.\-\_]+\z/ # :nodoc:
|
9
9
|
|
10
|
-
SPECIAL_CHARACTERS = /\A[#{Regexp.escape(
|
10
|
+
SPECIAL_CHARACTERS = /\A[#{Regexp.escape(".-_")}]+/ # :nodoc:
|
11
11
|
|
12
12
|
VALID_URI_PATTERN = %r{\Ahttps?:\/\/([^\s:@]+:[^\s:@]*@)?[A-Za-z\d\-]+(\.[A-Za-z\d\-]+)+\.?(:\d{1,5})?([\/?]\S*)?\z} # :nodoc:
|
13
13
|
|
@@ -103,6 +103,8 @@ class Gem::SpecificationPolicy
|
|
103
103
|
|
104
104
|
validate_dependencies
|
105
105
|
|
106
|
+
validate_required_ruby_version
|
107
|
+
|
106
108
|
validate_extensions
|
107
109
|
|
108
110
|
validate_removed_attributes
|
@@ -227,6 +229,12 @@ duplicate dependency on #{dep}, (#{prev.requirement}) use:
|
|
227
229
|
end
|
228
230
|
end
|
229
231
|
|
232
|
+
def validate_required_ruby_version
|
233
|
+
if @specification.required_ruby_version.requirements == [Gem::Requirement::DefaultRequirement]
|
234
|
+
warning "make sure you specify the oldest ruby version constraint (like \">= 3.0\") that you want your gem to support by setting the `required_ruby_version` gemspec attribute"
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
230
238
|
##
|
231
239
|
# Issues a warning for each file to be packaged which is world-readable.
|
232
240
|
#
|
@@ -28,6 +28,7 @@ class Gem::Licenses
|
|
28
28
|
AGPL-3.0-or-later
|
29
29
|
AMDPLPA
|
30
30
|
AML
|
31
|
+
AML-glslang
|
31
32
|
AMPAS
|
32
33
|
ANTLR-PD
|
33
34
|
ANTLR-PD-fallback
|
@@ -42,6 +43,7 @@ class Gem::Licenses
|
|
42
43
|
Abstyles
|
43
44
|
AdaCore-doc
|
44
45
|
Adobe-2006
|
46
|
+
Adobe-Display-PostScript
|
45
47
|
Adobe-Glyph
|
46
48
|
Adobe-Utopia
|
47
49
|
Afmparse
|
@@ -57,6 +59,7 @@ class Gem::Licenses
|
|
57
59
|
Artistic-2.0
|
58
60
|
BSD-1-Clause
|
59
61
|
BSD-2-Clause
|
62
|
+
BSD-2-Clause-Darwin
|
60
63
|
BSD-2-Clause-Patent
|
61
64
|
BSD-2-Clause-Views
|
62
65
|
BSD-3-Clause
|
@@ -71,6 +74,7 @@ class Gem::Licenses
|
|
71
74
|
BSD-3-Clause-No-Nuclear-Warranty
|
72
75
|
BSD-3-Clause-Open-MPI
|
73
76
|
BSD-3-Clause-Sun
|
77
|
+
BSD-3-Clause-acpica
|
74
78
|
BSD-3-Clause-flex
|
75
79
|
BSD-4-Clause
|
76
80
|
BSD-4-Clause-Shortened
|
@@ -82,7 +86,9 @@ class Gem::Licenses
|
|
82
86
|
BSD-Inferno-Nettverk
|
83
87
|
BSD-Protection
|
84
88
|
BSD-Source-Code
|
89
|
+
BSD-Source-beginning-file
|
85
90
|
BSD-Systemics
|
91
|
+
BSD-Systemics-W3Works
|
86
92
|
BSL-1.0
|
87
93
|
BUSL-1.1
|
88
94
|
Baekmuk
|
@@ -96,6 +102,7 @@ class Gem::Licenses
|
|
96
102
|
BlueOak-1.0.0
|
97
103
|
Boehm-GC
|
98
104
|
Borceux
|
105
|
+
Brian-Gladman-2-Clause
|
99
106
|
Brian-Gladman-3-Clause
|
100
107
|
C-UDA-1.0
|
101
108
|
CAL-1.0
|
@@ -107,6 +114,7 @@ class Gem::Licenses
|
|
107
114
|
CC-BY-2.5-AU
|
108
115
|
CC-BY-3.0
|
109
116
|
CC-BY-3.0-AT
|
117
|
+
CC-BY-3.0-AU
|
110
118
|
CC-BY-3.0-DE
|
111
119
|
CC-BY-3.0-IGO
|
112
120
|
CC-BY-3.0-NL
|
@@ -172,6 +180,7 @@ class Gem::Licenses
|
|
172
180
|
CERN-OHL-W-2.0
|
173
181
|
CFITSIO
|
174
182
|
CMU-Mach
|
183
|
+
CMU-Mach-nodoc
|
175
184
|
CNRI-Jython
|
176
185
|
CNRI-Python
|
177
186
|
CNRI-Python-GPL-Compatible
|
@@ -181,6 +190,7 @@ class Gem::Licenses
|
|
181
190
|
CPOL-1.02
|
182
191
|
CUA-OPL-1.0
|
183
192
|
Caldera
|
193
|
+
Caldera-no-preamble
|
184
194
|
ClArtistic
|
185
195
|
Clips
|
186
196
|
Community-Spec-1.0
|
@@ -191,10 +201,12 @@ class Gem::Licenses
|
|
191
201
|
CrystalStacker
|
192
202
|
Cube
|
193
203
|
D-FSL-1.0
|
204
|
+
DEC-3-Clause
|
194
205
|
DL-DE-BY-2.0
|
195
206
|
DL-DE-ZERO-2.0
|
196
207
|
DOC
|
197
208
|
DRL-1.0
|
209
|
+
DRL-1.1
|
198
210
|
DSDP
|
199
211
|
Dotseqn
|
200
212
|
ECL-1.0
|
@@ -215,6 +227,7 @@ class Gem::Licenses
|
|
215
227
|
FBM
|
216
228
|
FDK-AAC
|
217
229
|
FSFAP
|
230
|
+
FSFAP-no-warranty-disclaimer
|
218
231
|
FSFUL
|
219
232
|
FSFULLR
|
220
233
|
FSFULLRWD
|
@@ -225,6 +238,7 @@ class Gem::Licenses
|
|
225
238
|
FreeBSD-DOC
|
226
239
|
FreeImage
|
227
240
|
Furuseth
|
241
|
+
GCR-docs
|
228
242
|
GD
|
229
243
|
GFDL-1.1-invariants-only
|
230
244
|
GFDL-1.1-invariants-or-later
|
@@ -260,6 +274,10 @@ class Gem::Licenses
|
|
260
274
|
HP-1989
|
261
275
|
HPND
|
262
276
|
HPND-DEC
|
277
|
+
HPND-Fenneberg-Livingston
|
278
|
+
HPND-INRIA-IMAG
|
279
|
+
HPND-Kevlin-Henney
|
280
|
+
HPND-MIT-disclaimer
|
263
281
|
HPND-Markus-Kuhn
|
264
282
|
HPND-Pbmplus
|
265
283
|
HPND-UC
|
@@ -267,6 +285,7 @@ class Gem::Licenses
|
|
267
285
|
HPND-doc-sell
|
268
286
|
HPND-export-US
|
269
287
|
HPND-export-US-modify
|
288
|
+
HPND-sell-MIT-disclaimer-xserver
|
270
289
|
HPND-sell-regexpr
|
271
290
|
HPND-sell-variant
|
272
291
|
HPND-sell-variant-MIT-disclaimer
|
@@ -281,6 +300,7 @@ class Gem::Licenses
|
|
281
300
|
IPA
|
282
301
|
IPL-1.0
|
283
302
|
ISC
|
303
|
+
ISC-Veillard
|
284
304
|
ImageMagick
|
285
305
|
Imlib2
|
286
306
|
Info-ZIP
|
@@ -306,6 +326,7 @@ class Gem::Licenses
|
|
306
326
|
LGPL-3.0-or-later
|
307
327
|
LGPLLR
|
308
328
|
LOOP
|
329
|
+
LPD-document
|
309
330
|
LPL-1.0
|
310
331
|
LPL-1.02
|
311
332
|
LPPL-1.0
|
@@ -350,6 +371,8 @@ class Gem::Licenses
|
|
350
371
|
MS-PL
|
351
372
|
MS-RL
|
352
373
|
MTLL
|
374
|
+
Mackerras-3-Clause
|
375
|
+
Mackerras-3-Clause-acknowledgment
|
353
376
|
MakeIndex
|
354
377
|
Martin-Birgmeier
|
355
378
|
McPhee-slideshow
|
@@ -434,6 +457,8 @@ class Gem::Licenses
|
|
434
457
|
OSL-3.0
|
435
458
|
OpenPBS-2.3
|
436
459
|
OpenSSL
|
460
|
+
OpenSSL-standalone
|
461
|
+
OpenVision
|
437
462
|
PADL
|
438
463
|
PDDL-1.0
|
439
464
|
PHP-3.0
|
@@ -441,6 +466,7 @@ class Gem::Licenses
|
|
441
466
|
PSF-2.0
|
442
467
|
Parity-6.0.0
|
443
468
|
Parity-7.0.0
|
469
|
+
Pixar
|
444
470
|
Plexus
|
445
471
|
PolyForm-Noncommercial-1.0.0
|
446
472
|
PolyForm-Small-Business-1.0.0
|
@@ -459,6 +485,7 @@ class Gem::Licenses
|
|
459
485
|
Rdisc
|
460
486
|
Ruby
|
461
487
|
SAX-PD
|
488
|
+
SAX-PD-2.0
|
462
489
|
SCEA
|
463
490
|
SGI-B-1.0
|
464
491
|
SGI-B-1.1
|
@@ -476,6 +503,7 @@ class Gem::Licenses
|
|
476
503
|
SPL-1.0
|
477
504
|
SSH-OpenSSH
|
478
505
|
SSH-short
|
506
|
+
SSLeay-standalone
|
479
507
|
SSPL-1.0
|
480
508
|
SWL
|
481
509
|
Saxpath
|
@@ -489,11 +517,13 @@ class Gem::Licenses
|
|
489
517
|
Spencer-94
|
490
518
|
Spencer-99
|
491
519
|
SugarCRM-1.1.3
|
520
|
+
Sun-PPP
|
492
521
|
SunPro
|
493
522
|
Symlinks
|
494
523
|
TAPR-OHL-1.0
|
495
524
|
TCL
|
496
525
|
TCP-wrappers
|
526
|
+
TGPPL-1.0
|
497
527
|
TMate
|
498
528
|
TORQUE-1.1
|
499
529
|
TOSL
|
@@ -506,8 +536,10 @@ class Gem::Licenses
|
|
506
536
|
TermReadKey
|
507
537
|
UCAR
|
508
538
|
UCL-1.0
|
539
|
+
UMich-Merit
|
509
540
|
UPL-1.0
|
510
541
|
URT-RLE
|
542
|
+
Unicode-3.0
|
511
543
|
Unicode-DFS-2015
|
512
544
|
Unicode-DFS-2016
|
513
545
|
Unicode-TOU
|
@@ -542,6 +574,7 @@ class Gem::Licenses
|
|
542
574
|
Zimbra-1.3
|
543
575
|
Zimbra-1.4
|
544
576
|
Zlib
|
577
|
+
bcrypt-Solar-Designer
|
545
578
|
blessing
|
546
579
|
bzip2-1.0.6
|
547
580
|
check-cvs
|
@@ -557,6 +590,8 @@ class Gem::Licenses
|
|
557
590
|
fwlw
|
558
591
|
gSOAP-1.3b
|
559
592
|
gnuplot
|
593
|
+
gtkbook
|
594
|
+
hdparm
|
560
595
|
iMatix
|
561
596
|
libpng-2.0
|
562
597
|
libselinux-1.0
|
@@ -564,6 +599,7 @@ class Gem::Licenses
|
|
564
599
|
libutil-David-Nugent
|
565
600
|
lsof
|
566
601
|
magaz
|
602
|
+
mailprio
|
567
603
|
metamail
|
568
604
|
mpi-permissive
|
569
605
|
mpich2
|
@@ -572,12 +608,15 @@ class Gem::Licenses
|
|
572
608
|
psfrag
|
573
609
|
psutils
|
574
610
|
python-ldap
|
611
|
+
radvd
|
575
612
|
snprintf
|
613
|
+
softSurfer
|
576
614
|
ssh-keyscan
|
577
615
|
swrule
|
578
616
|
ulem
|
579
617
|
w3m
|
580
618
|
xinetd
|
619
|
+
xkeyboard-config-Zinoviev
|
581
620
|
xlock
|
582
621
|
xpp
|
583
622
|
zlib-acknowledgement
|
@@ -626,6 +665,7 @@ class Gem::Licenses
|
|
626
665
|
Autoconf-exception-generic
|
627
666
|
Autoconf-exception-generic-3.0
|
628
667
|
Autoconf-exception-macro
|
668
|
+
Bison-exception-1.24
|
629
669
|
Bison-exception-2.2
|
630
670
|
Bootloader-exception
|
631
671
|
CLISP-exception-2.0
|
@@ -638,6 +678,7 @@ class Gem::Licenses
|
|
638
678
|
GCC-exception-2.0-note
|
639
679
|
GCC-exception-3.1
|
640
680
|
GNAT-exception
|
681
|
+
GNOME-examples-exception
|
641
682
|
GNU-compiler-exception
|
642
683
|
GPL-3.0-interface-exception
|
643
684
|
GPL-3.0-linking-exception
|
@@ -645,6 +686,7 @@ class Gem::Licenses
|
|
645
686
|
GPL-CC-1.0
|
646
687
|
GStreamer-exception-2005
|
647
688
|
GStreamer-exception-2008
|
689
|
+
Gmsh-exception
|
648
690
|
KiCad-libraries-exception
|
649
691
|
LGPL-3.0-linking-exception
|
650
692
|
LLGPL
|
@@ -671,6 +713,7 @@ class Gem::Licenses
|
|
671
713
|
WxWindows-exception-3.1
|
672
714
|
cryptsetup-OpenSSL-exception
|
673
715
|
eCos-exception-2.0
|
716
|
+
fmt-exception
|
674
717
|
freertos-exception-2.0
|
675
718
|
gnu-javamail-exception
|
676
719
|
i2p-gpl-java-exception
|
data/lib/rubygems.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
require "rbconfig"
|
10
10
|
|
11
11
|
module Gem
|
12
|
-
VERSION = "3.5.
|
12
|
+
VERSION = "3.5.7"
|
13
13
|
end
|
14
14
|
|
15
15
|
# Must be first since it unloads the prelude from 1.9.2
|
@@ -1225,7 +1225,7 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|
1225
1225
|
|
1226
1226
|
def find_unresolved_default_spec(path)
|
1227
1227
|
default_spec = @path_to_default_spec_map[path]
|
1228
|
-
|
1228
|
+
default_spec if default_spec && loaded_specs[default_spec.name] != default_spec
|
1229
1229
|
end
|
1230
1230
|
|
1231
1231
|
##
|
data/rubygems-update.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "rubygems-update"
|
5
|
-
s.version = "3.5.
|
5
|
+
s.version = "3.5.7"
|
6
6
|
s.authors = ["Jim Weirich", "Chad Fowler", "Eric Hodel", "Luis Lavena", "Aaron Patterson", "Samuel Giddins", "André Arko", "Evan Phoenix", "Hiroshi SHIBATA"]
|
7
7
|
s.email = ["", "", "drbrain@segment7.net", "luislavena@gmail.com", "aaron@tenderlovemaking.com", "segiddins@segiddins.me", "andre@arko.net", "evan@phx.io", "hsbt@ruby-lang.org"]
|
8
8
|
|