bundler 2.4.22 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +53 -0
- data/bundler.gemspec +4 -2
- data/exe/bundle +1 -10
- data/lib/bundler/build_metadata.rb +3 -3
- data/lib/bundler/capistrano.rb +1 -1
- data/lib/bundler/checksum.rb +245 -0
- data/lib/bundler/ci_detector.rb +75 -0
- data/lib/bundler/cli/add.rb +3 -3
- data/lib/bundler/cli/binstubs.rb +4 -4
- data/lib/bundler/cli/cache.rb +1 -1
- data/lib/bundler/cli/check.rb +1 -1
- data/lib/bundler/cli/common.rb +9 -1
- data/lib/bundler/cli/config.rb +8 -7
- data/lib/bundler/cli/console.rb +3 -2
- data/lib/bundler/cli/doctor.rb +2 -2
- data/lib/bundler/cli/exec.rb +1 -1
- data/lib/bundler/cli/gem.rb +28 -23
- data/lib/bundler/cli/info.rb +2 -13
- data/lib/bundler/cli/install.rb +5 -4
- data/lib/bundler/cli/issue.rb +1 -1
- data/lib/bundler/cli/lock.rb +4 -4
- data/lib/bundler/cli/open.rb +1 -1
- data/lib/bundler/cli/outdated.rb +6 -6
- data/lib/bundler/cli/plugin.rb +7 -14
- data/lib/bundler/cli/pristine.rb +38 -30
- data/lib/bundler/cli/show.rb +2 -2
- data/lib/bundler/cli/update.rb +5 -5
- data/lib/bundler/cli.rb +215 -263
- data/lib/bundler/compact_index_client/cache.rb +29 -9
- data/lib/bundler/compact_index_client/cache_file.rb +153 -0
- data/lib/bundler/compact_index_client/gem_parser.rb +7 -3
- data/lib/bundler/compact_index_client/updater.rb +79 -81
- data/lib/bundler/compact_index_client.rb +14 -7
- data/lib/bundler/constants.rb +1 -1
- data/lib/bundler/current_ruby.rb +5 -21
- data/lib/bundler/definition.rb +42 -15
- data/lib/bundler/dependency.rb +16 -12
- data/lib/bundler/digest.rb +2 -2
- data/lib/bundler/dsl.rb +43 -25
- data/lib/bundler/endpoint_specification.rb +5 -1
- data/lib/bundler/env.rb +1 -3
- data/lib/bundler/errors.rb +43 -0
- data/lib/bundler/fetcher/base.rb +3 -1
- data/lib/bundler/fetcher/compact_index.rb +4 -4
- data/lib/bundler/fetcher/downloader.rb +13 -11
- data/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
- data/lib/bundler/fetcher/index.rb +1 -1
- data/lib/bundler/fetcher.rb +28 -25
- data/lib/bundler/friendly_errors.rb +5 -5
- data/lib/bundler/gem_helper.rb +1 -1
- data/lib/bundler/gem_helpers.rb +5 -2
- data/lib/bundler/graph.rb +9 -9
- data/lib/bundler/index.rb +1 -2
- data/lib/bundler/injector.rb +1 -1
- data/lib/bundler/inline.rb +3 -3
- data/lib/bundler/installer/gem_installer.rb +5 -5
- data/lib/bundler/installer/parallel_installer.rb +16 -8
- data/lib/bundler/installer/standalone.rb +2 -3
- data/lib/bundler/installer.rb +9 -9
- data/lib/bundler/lazy_specification.rb +24 -17
- data/lib/bundler/lockfile_generator.rb +9 -0
- data/lib/bundler/lockfile_parser.rb +81 -10
- data/lib/bundler/man/bundle-add.1 +3 -26
- data/lib/bundler/man/bundle-binstubs.1 +4 -16
- data/lib/bundler/man/bundle-cache.1 +3 -24
- data/lib/bundler/man/bundle-check.1 +3 -12
- data/lib/bundler/man/bundle-clean.1 +3 -10
- data/lib/bundler/man/bundle-config.1 +20 -211
- data/lib/bundler/man/bundle-config.1.ronn +6 -0
- data/lib/bundler/man/bundle-console.1 +4 -22
- data/lib/bundler/man/bundle-doctor.1 +4 -18
- data/lib/bundler/man/bundle-exec.1 +12 -73
- data/lib/bundler/man/bundle-gem.1 +13 -49
- data/lib/bundler/man/bundle-help.1 +3 -7
- data/lib/bundler/man/bundle-info.1 +3 -9
- data/lib/bundler/man/bundle-init.1 +3 -12
- data/lib/bundler/man/bundle-inject.1 +6 -19
- data/lib/bundler/man/bundle-install.1 +27 -125
- data/lib/bundler/man/bundle-install.1.ronn +1 -0
- data/lib/bundler/man/bundle-list.1 +4 -19
- data/lib/bundler/man/bundle-lock.1 +5 -29
- data/lib/bundler/man/bundle-open.1 +7 -27
- data/lib/bundler/man/bundle-outdated.1 +3 -55
- data/lib/bundler/man/bundle-outdated.1.ronn +1 -0
- data/lib/bundler/man/bundle-platform.1 +5 -27
- data/lib/bundler/man/bundle-plugin.1 +3 -29
- data/lib/bundler/man/bundle-pristine.1 +5 -16
- data/lib/bundler/man/bundle-remove.1 +4 -14
- data/lib/bundler/man/bundle-show.1 +3 -10
- data/lib/bundler/man/bundle-update.1 +18 -137
- data/lib/bundler/man/bundle-version.1 +3 -16
- data/lib/bundler/man/bundle-viz.1 +4 -16
- data/lib/bundler/man/bundle.1 +5 -44
- data/lib/bundler/man/gemfile.5 +24 -301
- data/lib/bundler/man/gemfile.5.ronn +4 -0
- data/lib/bundler/match_metadata.rb +4 -0
- data/lib/bundler/match_platform.rb +1 -1
- data/lib/bundler/plugin/api/source.rb +3 -2
- data/lib/bundler/plugin/installer.rb +1 -1
- data/lib/bundler/plugin.rb +3 -3
- data/lib/bundler/resolver/base.rb +1 -1
- data/lib/bundler/resolver/incompatibility.rb +1 -1
- data/lib/bundler/resolver/spec_group.rb +1 -4
- data/lib/bundler/resolver.rb +16 -16
- data/lib/bundler/ruby_dsl.rb +20 -12
- data/lib/bundler/ruby_version.rb +1 -1
- data/lib/bundler/rubygems_ext.rb +24 -50
- data/lib/bundler/rubygems_gem_installer.rb +6 -56
- data/lib/bundler/rubygems_integration.rb +25 -94
- data/lib/bundler/runtime.rb +2 -2
- data/lib/bundler/self_manager.rb +23 -7
- data/lib/bundler/settings.rb +27 -7
- data/lib/bundler/setup.rb +4 -1
- data/lib/bundler/shared_helpers.rb +35 -13
- data/lib/bundler/source/git/git_proxy.rb +15 -15
- data/lib/bundler/source/git.rb +4 -3
- data/lib/bundler/source/metadata.rb +15 -15
- data/lib/bundler/source/path.rb +7 -6
- data/lib/bundler/source/rubygems.rb +21 -14
- data/lib/bundler/source.rb +2 -0
- data/lib/bundler/spec_set.rb +38 -10
- data/lib/bundler/stub_specification.rb +1 -0
- data/lib/bundler/templates/Executable.bundler +1 -1
- data/lib/bundler/templates/newgem/README.md.tt +3 -3
- data/lib/bundler/templates/newgem/Rakefile.tt +2 -6
- data/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +1 -1
- data/lib/bundler/templates/newgem/standard.yml.tt +1 -1
- data/lib/bundler/ui/shell.rb +1 -1
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
- data/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +53 -6
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +8 -20
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +3 -3
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +2 -2
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +1 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +35 -35
- data/lib/bundler/vendor/tsort/lib/tsort.rb +3 -0
- data/lib/bundler/vendor/uri/lib/uri/common.rb +256 -132
- data/lib/bundler/vendor/uri/lib/uri/generic.rb +1 -0
- data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +95 -31
- data/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/lib/bundler/vendored_net_http.rb +8 -0
- data/lib/bundler/vendored_persistent.rb +0 -4
- data/lib/bundler/vendored_timeout.rb +8 -0
- data/lib/bundler/version.rb +1 -1
- data/lib/bundler/vlad.rb +1 -1
- data/lib/bundler/yaml_serializer.rb +3 -3
- data/lib/bundler.rb +38 -27
- metadata +11 -5
@@ -68,16 +68,32 @@ module Bundler::URI
|
|
68
68
|
end
|
69
69
|
private_constant :Schemes
|
70
70
|
|
71
|
+
# Registers the given +klass+ as the class to be instantiated
|
72
|
+
# when parsing a \Bundler::URI with the given +scheme+:
|
71
73
|
#
|
72
|
-
#
|
73
|
-
#
|
74
|
-
# can be registered (no -/+/. allowed).
|
74
|
+
# Bundler::URI.register_scheme('MS_SEARCH', Bundler::URI::Generic) # => Bundler::URI::Generic
|
75
|
+
# Bundler::URI.scheme_list['MS_SEARCH'] # => Bundler::URI::Generic
|
75
76
|
#
|
77
|
+
# Note that after calling String#upcase on +scheme+, it must be a valid
|
78
|
+
# constant name.
|
76
79
|
def self.register_scheme(scheme, klass)
|
77
80
|
Schemes.const_set(scheme.to_s.upcase, klass)
|
78
81
|
end
|
79
82
|
|
80
|
-
# Returns a
|
83
|
+
# Returns a hash of the defined schemes:
|
84
|
+
#
|
85
|
+
# Bundler::URI.scheme_list
|
86
|
+
# # =>
|
87
|
+
# {"MAILTO"=>Bundler::URI::MailTo,
|
88
|
+
# "LDAPS"=>Bundler::URI::LDAPS,
|
89
|
+
# "WS"=>Bundler::URI::WS,
|
90
|
+
# "HTTP"=>Bundler::URI::HTTP,
|
91
|
+
# "HTTPS"=>Bundler::URI::HTTPS,
|
92
|
+
# "LDAP"=>Bundler::URI::LDAP,
|
93
|
+
# "FILE"=>Bundler::URI::File,
|
94
|
+
# "FTP"=>Bundler::URI::FTP}
|
95
|
+
#
|
96
|
+
# Related: Bundler::URI.register_scheme.
|
81
97
|
def self.scheme_list
|
82
98
|
Schemes.constants.map { |name|
|
83
99
|
[name.to_s.upcase, Schemes.const_get(name)]
|
@@ -88,9 +104,21 @@ module Bundler::URI
|
|
88
104
|
private_constant :INITIAL_SCHEMES
|
89
105
|
Ractor.make_shareable(INITIAL_SCHEMES) if defined?(Ractor)
|
90
106
|
|
107
|
+
# Returns a new object constructed from the given +scheme+, +arguments+,
|
108
|
+
# and +default+:
|
109
|
+
#
|
110
|
+
# - The new object is an instance of <tt>Bundler::URI.scheme_list[scheme.upcase]</tt>.
|
111
|
+
# - The object is initialized by calling the class initializer
|
112
|
+
# using +scheme+ and +arguments+.
|
113
|
+
# See Bundler::URI::Generic.new.
|
114
|
+
#
|
115
|
+
# Examples:
|
91
116
|
#
|
92
|
-
#
|
93
|
-
#
|
117
|
+
# values = ['john.doe', 'www.example.com', '123', nil, '/forum/questions/', nil, 'tag=networking&order=newest', 'top']
|
118
|
+
# Bundler::URI.for('https', *values)
|
119
|
+
# # => #<Bundler::URI::HTTPS https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top>
|
120
|
+
# Bundler::URI.for('foo', *values, default: Bundler::URI::HTTP)
|
121
|
+
# # => #<Bundler::URI::HTTP foo://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top>
|
94
122
|
#
|
95
123
|
def self.for(scheme, *arguments, default: Generic)
|
96
124
|
const_name = scheme.to_s.upcase
|
@@ -121,95 +149,49 @@ module Bundler::URI
|
|
121
149
|
#
|
122
150
|
class BadURIError < Error; end
|
123
151
|
|
124
|
-
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
# * Port
|
142
|
-
# * Registry
|
143
|
-
# * Path
|
144
|
-
# * Opaque
|
145
|
-
# * Query
|
146
|
-
# * Fragment
|
147
|
-
#
|
148
|
-
# == Usage
|
149
|
-
#
|
150
|
-
# require 'bundler/vendor/uri/lib/uri'
|
151
|
-
#
|
152
|
-
# Bundler::URI.split("http://www.ruby-lang.org/")
|
153
|
-
# # => ["http", nil, "www.ruby-lang.org", nil, nil, "/", nil, nil, nil]
|
152
|
+
# Returns a 9-element array representing the parts of the \Bundler::URI
|
153
|
+
# formed from the string +uri+;
|
154
|
+
# each array element is a string or +nil+:
|
155
|
+
#
|
156
|
+
# names = %w[scheme userinfo host port registry path opaque query fragment]
|
157
|
+
# values = Bundler::URI.split('https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top')
|
158
|
+
# names.zip(values)
|
159
|
+
# # =>
|
160
|
+
# [["scheme", "https"],
|
161
|
+
# ["userinfo", "john.doe"],
|
162
|
+
# ["host", "www.example.com"],
|
163
|
+
# ["port", "123"],
|
164
|
+
# ["registry", nil],
|
165
|
+
# ["path", "/forum/questions/"],
|
166
|
+
# ["opaque", nil],
|
167
|
+
# ["query", "tag=networking&order=newest"],
|
168
|
+
# ["fragment", "top"]]
|
154
169
|
#
|
155
170
|
def self.split(uri)
|
156
171
|
RFC3986_PARSER.split(uri)
|
157
172
|
end
|
158
173
|
|
174
|
+
# Returns a new \Bundler::URI object constructed from the given string +uri+:
|
159
175
|
#
|
160
|
-
#
|
161
|
-
#
|
162
|
-
# Bundler::URI
|
163
|
-
#
|
164
|
-
# == Args
|
165
|
-
#
|
166
|
-
# +uri_str+::
|
167
|
-
# String with Bundler::URI.
|
168
|
-
#
|
169
|
-
# == Description
|
170
|
-
#
|
171
|
-
# Creates one of the Bundler::URI's subclasses instance from the string.
|
172
|
-
#
|
173
|
-
# == Raises
|
174
|
-
#
|
175
|
-
# Bundler::URI::InvalidURIError::
|
176
|
-
# Raised if Bundler::URI given is not a correct one.
|
176
|
+
# Bundler::URI.parse('https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top')
|
177
|
+
# # => #<Bundler::URI::HTTPS https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top>
|
178
|
+
# Bundler::URI.parse('http://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top')
|
179
|
+
# # => #<Bundler::URI::HTTP http://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top>
|
177
180
|
#
|
178
|
-
#
|
179
|
-
#
|
180
|
-
# require 'bundler/vendor/uri/lib/uri'
|
181
|
-
#
|
182
|
-
# uri = Bundler::URI.parse("http://www.ruby-lang.org/")
|
183
|
-
# # => #<Bundler::URI::HTTP http://www.ruby-lang.org/>
|
184
|
-
# uri.scheme
|
185
|
-
# # => "http"
|
186
|
-
# uri.host
|
187
|
-
# # => "www.ruby-lang.org"
|
188
|
-
#
|
189
|
-
# It's recommended to first ::escape the provided +uri_str+ if there are any
|
190
|
-
# invalid Bundler::URI characters.
|
181
|
+
# It's recommended to first ::escape string +uri+
|
182
|
+
# if it may contain invalid Bundler::URI characters.
|
191
183
|
#
|
192
184
|
def self.parse(uri)
|
193
185
|
RFC3986_PARSER.parse(uri)
|
194
186
|
end
|
195
187
|
|
188
|
+
# Merges the given Bundler::URI strings +str+
|
189
|
+
# per {RFC 2396}[https://www.rfc-editor.org/rfc/rfc2396.html].
|
196
190
|
#
|
197
|
-
#
|
198
|
-
#
|
199
|
-
# Bundler::URI::join(str[, str, ...])
|
191
|
+
# Each string in +str+ is converted to an
|
192
|
+
# {RFC3986 Bundler::URI}[https://www.rfc-editor.org/rfc/rfc3986.html] before being merged.
|
200
193
|
#
|
201
|
-
#
|
202
|
-
#
|
203
|
-
# +str+::
|
204
|
-
# String(s) to work with, will be converted to RFC3986 URIs before merging.
|
205
|
-
#
|
206
|
-
# == Description
|
207
|
-
#
|
208
|
-
# Joins URIs.
|
209
|
-
#
|
210
|
-
# == Usage
|
211
|
-
#
|
212
|
-
# require 'bundler/vendor/uri/lib/uri'
|
194
|
+
# Examples:
|
213
195
|
#
|
214
196
|
# Bundler::URI.join("http://example.com/","main.rbx")
|
215
197
|
# # => #<Bundler::URI::HTTP http://example.com/main.rbx>
|
@@ -254,7 +236,7 @@ module Bundler::URI
|
|
254
236
|
# Bundler::URI.extract("text here http://foo.example.org/bla and here mailto:test@example.com and here also.")
|
255
237
|
# # => ["http://foo.example.com/bla", "mailto:test@example.com"]
|
256
238
|
#
|
257
|
-
def self.extract(str, schemes = nil, &block)
|
239
|
+
def self.extract(str, schemes = nil, &block) # :nodoc:
|
258
240
|
warn "Bundler::URI.extract is obsolete", uplevel: 1 if $VERBOSE
|
259
241
|
DEFAULT_PARSER.extract(str, schemes, &block)
|
260
242
|
end
|
@@ -291,7 +273,7 @@ module Bundler::URI
|
|
291
273
|
# p $&
|
292
274
|
# end
|
293
275
|
#
|
294
|
-
def self.regexp(schemes = nil)
|
276
|
+
def self.regexp(schemes = nil)# :nodoc:
|
295
277
|
warn "Bundler::URI.regexp is obsolete", uplevel: 1 if $VERBOSE
|
296
278
|
DEFAULT_PARSER.make_regexp(schemes)
|
297
279
|
end
|
@@ -314,40 +296,86 @@ module Bundler::URI
|
|
314
296
|
TBLDECWWWCOMP_['+'] = ' '
|
315
297
|
TBLDECWWWCOMP_.freeze
|
316
298
|
|
317
|
-
#
|
299
|
+
# Returns a URL-encoded string derived from the given string +str+.
|
300
|
+
#
|
301
|
+
# The returned string:
|
302
|
+
#
|
303
|
+
# - Preserves:
|
304
|
+
#
|
305
|
+
# - Characters <tt>'*'</tt>, <tt>'.'</tt>, <tt>'-'</tt>, and <tt>'_'</tt>.
|
306
|
+
# - Character in ranges <tt>'a'..'z'</tt>, <tt>'A'..'Z'</tt>,
|
307
|
+
# and <tt>'0'..'9'</tt>.
|
308
|
+
#
|
309
|
+
# Example:
|
318
310
|
#
|
319
|
-
#
|
320
|
-
#
|
311
|
+
# Bundler::URI.encode_www_form_component('*.-_azAZ09')
|
312
|
+
# # => "*.-_azAZ09"
|
321
313
|
#
|
322
|
-
#
|
314
|
+
# - Converts:
|
323
315
|
#
|
324
|
-
#
|
325
|
-
#
|
316
|
+
# - Character <tt>' '</tt> to character <tt>'+'</tt>.
|
317
|
+
# - Any other character to "percent notation";
|
318
|
+
# the percent notation for character <i>c</i> is <tt>'%%%X' % c.ord</tt>.
|
326
319
|
#
|
327
|
-
#
|
320
|
+
# Example:
|
321
|
+
#
|
322
|
+
# Bundler::URI.encode_www_form_component('Here are some punctuation characters: ,;?:')
|
323
|
+
# # => "Here+are+some+punctuation+characters%3A+%2C%3B%3F%3A"
|
324
|
+
#
|
325
|
+
# Encoding:
|
326
|
+
#
|
327
|
+
# - If +str+ has encoding Encoding::ASCII_8BIT, argument +enc+ is ignored.
|
328
|
+
# - Otherwise +str+ is converted first to Encoding::UTF_8
|
329
|
+
# (with suitable character replacements),
|
330
|
+
# and then to encoding +enc+.
|
331
|
+
#
|
332
|
+
# In either case, the returned string has forced encoding Encoding::US_ASCII.
|
333
|
+
#
|
334
|
+
# Related: Bundler::URI.encode_uri_component (encodes <tt>' '</tt> as <tt>'%20'</tt>).
|
328
335
|
def self.encode_www_form_component(str, enc=nil)
|
329
336
|
_encode_uri_component(/[^*\-.0-9A-Z_a-z]/, TBLENCWWWCOMP_, str, enc)
|
330
337
|
end
|
331
338
|
|
332
|
-
#
|
339
|
+
# Returns a string decoded from the given \URL-encoded string +str+.
|
340
|
+
#
|
341
|
+
# The given string is first encoded as Encoding::ASCII-8BIT (using String#b),
|
342
|
+
# then decoded (as below), and finally force-encoded to the given encoding +enc+.
|
343
|
+
#
|
344
|
+
# The returned string:
|
345
|
+
#
|
346
|
+
# - Preserves:
|
347
|
+
#
|
348
|
+
# - Characters <tt>'*'</tt>, <tt>'.'</tt>, <tt>'-'</tt>, and <tt>'_'</tt>.
|
349
|
+
# - Character in ranges <tt>'a'..'z'</tt>, <tt>'A'..'Z'</tt>,
|
350
|
+
# and <tt>'0'..'9'</tt>.
|
351
|
+
#
|
352
|
+
# Example:
|
353
|
+
#
|
354
|
+
# Bundler::URI.decode_www_form_component('*.-_azAZ09')
|
355
|
+
# # => "*.-_azAZ09"
|
356
|
+
#
|
357
|
+
# - Converts:
|
358
|
+
#
|
359
|
+
# - Character <tt>'+'</tt> to character <tt>' '</tt>.
|
360
|
+
# - Each "percent notation" to an ASCII character.
|
333
361
|
#
|
334
|
-
#
|
362
|
+
# Example:
|
335
363
|
#
|
336
|
-
#
|
364
|
+
# Bundler::URI.decode_www_form_component('Here+are+some+punctuation+characters%3A+%2C%3B%3F%3A')
|
365
|
+
# # => "Here are some punctuation characters: ,;?:"
|
366
|
+
#
|
367
|
+
# Related: Bundler::URI.decode_uri_component (preserves <tt>'+'</tt>).
|
337
368
|
def self.decode_www_form_component(str, enc=Encoding::UTF_8)
|
338
369
|
_decode_uri_component(/\+|%\h\h/, str, enc)
|
339
370
|
end
|
340
371
|
|
341
|
-
#
|
342
|
-
#
|
343
|
-
# This encodes SP to %20 instead of +.
|
372
|
+
# Like Bundler::URI.encode_www_form_component, except that <tt>' '</tt> (space)
|
373
|
+
# is encoded as <tt>'%20'</tt> (instead of <tt>'+'</tt>).
|
344
374
|
def self.encode_uri_component(str, enc=nil)
|
345
375
|
_encode_uri_component(/[^*\-.0-9A-Z_a-z]/, TBLENCURICOMP_, str, enc)
|
346
376
|
end
|
347
377
|
|
348
|
-
#
|
349
|
-
#
|
350
|
-
# This does not decode + to SP.
|
378
|
+
# Like Bundler::URI.decode_www_form_component, except that <tt>'+'</tt> is preserved.
|
351
379
|
def self.decode_uri_component(str, enc=Encoding::UTF_8)
|
352
380
|
_decode_uri_component(/%\h\h/, str, enc)
|
353
381
|
end
|
@@ -372,33 +400,104 @@ module Bundler::URI
|
|
372
400
|
end
|
373
401
|
private_class_method :_decode_uri_component
|
374
402
|
|
375
|
-
#
|
403
|
+
# Returns a URL-encoded string derived from the given
|
404
|
+
# {Enumerable}[https://docs.ruby-lang.org/en/master/Enumerable.html#module-Enumerable-label-Enumerable+in+Ruby+Classes]
|
405
|
+
# +enum+.
|
406
|
+
#
|
407
|
+
# The result is suitable for use as form data
|
408
|
+
# for an \HTTP request whose <tt>Content-Type</tt> is
|
409
|
+
# <tt>'application/x-www-form-urlencoded'</tt>.
|
410
|
+
#
|
411
|
+
# The returned string consists of the elements of +enum+,
|
412
|
+
# each converted to one or more URL-encoded strings,
|
413
|
+
# and all joined with character <tt>'&'</tt>.
|
414
|
+
#
|
415
|
+
# Simple examples:
|
416
|
+
#
|
417
|
+
# Bundler::URI.encode_www_form([['foo', 0], ['bar', 1], ['baz', 2]])
|
418
|
+
# # => "foo=0&bar=1&baz=2"
|
419
|
+
# Bundler::URI.encode_www_form({foo: 0, bar: 1, baz: 2})
|
420
|
+
# # => "foo=0&bar=1&baz=2"
|
421
|
+
#
|
422
|
+
# The returned string is formed using method Bundler::URI.encode_www_form_component,
|
423
|
+
# which converts certain characters:
|
424
|
+
#
|
425
|
+
# Bundler::URI.encode_www_form('f#o': '/', 'b-r': '$', 'b z': '@')
|
426
|
+
# # => "f%23o=%2F&b-r=%24&b+z=%40"
|
427
|
+
#
|
428
|
+
# When +enum+ is Array-like, each element +ele+ is converted to a field:
|
429
|
+
#
|
430
|
+
# - If +ele+ is an array of two or more elements,
|
431
|
+
# the field is formed from its first two elements
|
432
|
+
# (and any additional elements are ignored):
|
433
|
+
#
|
434
|
+
# name = Bundler::URI.encode_www_form_component(ele[0], enc)
|
435
|
+
# value = Bundler::URI.encode_www_form_component(ele[1], enc)
|
436
|
+
# "#{name}=#{value}"
|
376
437
|
#
|
377
|
-
#
|
378
|
-
# from given an Enumerable object.
|
438
|
+
# Examples:
|
379
439
|
#
|
380
|
-
#
|
440
|
+
# Bundler::URI.encode_www_form([%w[foo bar], %w[baz bat bah]])
|
441
|
+
# # => "foo=bar&baz=bat"
|
442
|
+
# Bundler::URI.encode_www_form([['foo', 0], ['bar', :baz, 'bat']])
|
443
|
+
# # => "foo=0&bar=baz"
|
381
444
|
#
|
382
|
-
#
|
383
|
-
#
|
384
|
-
# encoding or mixed encoding data. (Strings which are encoded in an HTML5
|
385
|
-
# ASCII incompatible encoding are converted to UTF-8.)
|
445
|
+
# - If +ele+ is an array of one element,
|
446
|
+
# the field is formed from <tt>ele[0]</tt>:
|
386
447
|
#
|
387
|
-
#
|
388
|
-
# multipart/form-data.
|
448
|
+
# Bundler::URI.encode_www_form_component(ele[0])
|
389
449
|
#
|
390
|
-
#
|
450
|
+
# Example:
|
391
451
|
#
|
392
|
-
#
|
393
|
-
#
|
394
|
-
#
|
395
|
-
#
|
396
|
-
#
|
397
|
-
#
|
398
|
-
#
|
399
|
-
#
|
452
|
+
# Bundler::URI.encode_www_form([['foo'], [:bar], [0]])
|
453
|
+
# # => "foo&bar&0"
|
454
|
+
#
|
455
|
+
# - Otherwise the field is formed from +ele+:
|
456
|
+
#
|
457
|
+
# Bundler::URI.encode_www_form_component(ele)
|
458
|
+
#
|
459
|
+
# Example:
|
460
|
+
#
|
461
|
+
# Bundler::URI.encode_www_form(['foo', :bar, 0])
|
462
|
+
# # => "foo&bar&0"
|
463
|
+
#
|
464
|
+
# The elements of an Array-like +enum+ may be mixture:
|
465
|
+
#
|
466
|
+
# Bundler::URI.encode_www_form([['foo', 0], ['bar', 1, 2], ['baz'], :bat])
|
467
|
+
# # => "foo=0&bar=1&baz&bat"
|
468
|
+
#
|
469
|
+
# When +enum+ is Hash-like,
|
470
|
+
# each +key+/+value+ pair is converted to one or more fields:
|
471
|
+
#
|
472
|
+
# - If +value+ is
|
473
|
+
# {Array-convertible}[https://docs.ruby-lang.org/en/master/implicit_conversion_rdoc.html#label-Array-Convertible+Objects],
|
474
|
+
# each element +ele+ in +value+ is paired with +key+ to form a field:
|
475
|
+
#
|
476
|
+
# name = Bundler::URI.encode_www_form_component(key, enc)
|
477
|
+
# value = Bundler::URI.encode_www_form_component(ele, enc)
|
478
|
+
# "#{name}=#{value}"
|
479
|
+
#
|
480
|
+
# Example:
|
481
|
+
#
|
482
|
+
# Bundler::URI.encode_www_form({foo: [:bar, 1], baz: [:bat, :bam, 2]})
|
483
|
+
# # => "foo=bar&foo=1&baz=bat&baz=bam&baz=2"
|
484
|
+
#
|
485
|
+
# - Otherwise, +key+ and +value+ are paired to form a field:
|
486
|
+
#
|
487
|
+
# name = Bundler::URI.encode_www_form_component(key, enc)
|
488
|
+
# value = Bundler::URI.encode_www_form_component(value, enc)
|
489
|
+
# "#{name}=#{value}"
|
490
|
+
#
|
491
|
+
# Example:
|
492
|
+
#
|
493
|
+
# Bundler::URI.encode_www_form({foo: 0, bar: 1, baz: 2})
|
494
|
+
# # => "foo=0&bar=1&baz=2"
|
495
|
+
#
|
496
|
+
# The elements of a Hash-like +enum+ may be mixture:
|
497
|
+
#
|
498
|
+
# Bundler::URI.encode_www_form({foo: [0, 1], bar: 2})
|
499
|
+
# # => "foo=0&foo=1&bar=2"
|
400
500
|
#
|
401
|
-
# See Bundler::URI.encode_www_form_component, Bundler::URI.decode_www_form.
|
402
501
|
def self.encode_www_form(enum, enc=nil)
|
403
502
|
enum.map do |k,v|
|
404
503
|
if v.nil?
|
@@ -419,22 +518,39 @@ module Bundler::URI
|
|
419
518
|
end.join('&')
|
420
519
|
end
|
421
520
|
|
422
|
-
#
|
521
|
+
# Returns name/value pairs derived from the given string +str+,
|
522
|
+
# which must be an ASCII string.
|
523
|
+
#
|
524
|
+
# The method may be used to decode the body of Net::HTTPResponse object +res+
|
525
|
+
# for which <tt>res['Content-Type']</tt> is <tt>'application/x-www-form-urlencoded'</tt>.
|
526
|
+
#
|
527
|
+
# The returned data is an array of 2-element subarrays;
|
528
|
+
# each subarray is a name/value pair (both are strings).
|
529
|
+
# Each returned string has encoding +enc+,
|
530
|
+
# and has had invalid characters removed via
|
531
|
+
# {String#scrub}[https://docs.ruby-lang.org/en/master/String.html#method-i-scrub].
|
423
532
|
#
|
424
|
-
#
|
425
|
-
# and returns an array of key-value arrays.
|
533
|
+
# A simple example:
|
426
534
|
#
|
427
|
-
#
|
428
|
-
#
|
535
|
+
# Bundler::URI.decode_www_form('foo=0&bar=1&baz')
|
536
|
+
# # => [["foo", "0"], ["bar", "1"], ["baz", ""]]
|
429
537
|
#
|
430
|
-
#
|
431
|
-
#
|
432
|
-
#
|
433
|
-
#
|
434
|
-
#
|
435
|
-
#
|
538
|
+
# The returned strings have certain conversions,
|
539
|
+
# similar to those performed in Bundler::URI.decode_www_form_component:
|
540
|
+
#
|
541
|
+
# Bundler::URI.decode_www_form('f%23o=%2F&b-r=%24&b+z=%40')
|
542
|
+
# # => [["f#o", "/"], ["b-r", "$"], ["b z", "@"]]
|
543
|
+
#
|
544
|
+
# The given string may contain consecutive separators:
|
545
|
+
#
|
546
|
+
# Bundler::URI.decode_www_form('foo=0&&bar=1&&baz=2')
|
547
|
+
# # => [["foo", "0"], ["", ""], ["bar", "1"], ["", ""], ["baz", "2"]]
|
548
|
+
#
|
549
|
+
# A different separator may be specified:
|
550
|
+
#
|
551
|
+
# Bundler::URI.decode_www_form('foo=0--bar=1--baz', separator: '--')
|
552
|
+
# # => [["foo", "0"], ["bar", "1"], ["baz", ""]]
|
436
553
|
#
|
437
|
-
# See Bundler::URI.decode_www_form_component, Bundler::URI.encode_www_form.
|
438
554
|
def self.decode_www_form(str, enc=Encoding::UTF_8, separator: '&', use__charset_: false, isindex: false)
|
439
555
|
raise ArgumentError, "the input of #{self.name}.#{__method__} must be ASCII only string" unless str.ascii_only?
|
440
556
|
ary = []
|
@@ -713,7 +829,15 @@ end # module Bundler::URI
|
|
713
829
|
module Bundler
|
714
830
|
|
715
831
|
#
|
716
|
-
# Returns
|
832
|
+
# Returns a \Bundler::URI object derived from the given +uri+,
|
833
|
+
# which may be a \Bundler::URI string or an existing \Bundler::URI object:
|
834
|
+
#
|
835
|
+
# # Returns a new Bundler::URI.
|
836
|
+
# uri = Bundler::URI('http://github.com/ruby/ruby')
|
837
|
+
# # => #<Bundler::URI::HTTP http://github.com/ruby/ruby>
|
838
|
+
# # Returns the given Bundler::URI.
|
839
|
+
# Bundler::URI(uri)
|
840
|
+
# # => #<Bundler::URI::HTTP http://github.com/ruby/ruby>
|
717
841
|
#
|
718
842
|
def URI(uri)
|
719
843
|
if uri.is_a?(Bundler::URI::Generic)
|