bundler 2.5.23 → 2.6.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +59 -0
- data/bundler.gemspec +2 -2
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/cli/console.rb +0 -4
- data/lib/bundler/cli/doctor.rb +4 -4
- data/lib/bundler/cli/exec.rb +1 -0
- data/lib/bundler/cli/gem.rb +1 -1
- data/lib/bundler/cli/info.rb +2 -2
- data/lib/bundler/cli/inject.rb +1 -1
- data/lib/bundler/cli/install.rb +4 -0
- data/lib/bundler/cli/lock.rb +20 -1
- data/lib/bundler/cli/pristine.rb +1 -1
- data/lib/bundler/cli/show.rb +2 -2
- data/lib/bundler/cli.rb +22 -53
- data/lib/bundler/compact_index_client/cache_file.rb +0 -5
- data/lib/bundler/compact_index_client/updater.rb +0 -11
- data/lib/bundler/definition.rb +134 -61
- data/lib/bundler/dependency.rb +1 -1
- data/lib/bundler/dsl.rb +2 -13
- data/lib/bundler/endpoint_specification.rb +10 -1
- data/lib/bundler/errors.rb +10 -0
- data/lib/bundler/feature_flag.rb +1 -0
- data/lib/bundler/fetcher/compact_index.rb +1 -1
- data/lib/bundler/fetcher.rb +10 -3
- data/lib/bundler/gem_helpers.rb +21 -5
- data/lib/bundler/injector.rb +2 -2
- data/lib/bundler/installer/standalone.rb +2 -2
- data/lib/bundler/installer.rb +4 -38
- data/lib/bundler/lazy_specification.rb +65 -24
- data/lib/bundler/lockfile_parser.rb +9 -1
- data/lib/bundler/man/bundle-add.1 +13 -10
- data/lib/bundler/man/bundle-add.1.ronn +12 -9
- data/lib/bundler/man/bundle-binstubs.1 +7 -4
- data/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
- data/lib/bundler/man/bundle-cache.1 +30 -2
- data/lib/bundler/man/bundle-cache.1.ronn +31 -2
- data/lib/bundler/man/bundle-check.1 +3 -3
- data/lib/bundler/man/bundle-check.1.ronn +4 -2
- data/lib/bundler/man/bundle-clean.1 +1 -1
- data/lib/bundler/man/bundle-config.1 +3 -1
- data/lib/bundler/man/bundle-config.1.ronn +2 -0
- data/lib/bundler/man/bundle-console.1 +2 -4
- data/lib/bundler/man/bundle-console.1.ronn +2 -7
- data/lib/bundler/man/bundle-doctor.1 +2 -2
- data/lib/bundler/man/bundle-doctor.1.ronn +1 -1
- data/lib/bundler/man/bundle-env.1 +9 -0
- data/lib/bundler/man/bundle-env.1.ronn +10 -0
- data/lib/bundler/man/bundle-exec.1 +5 -2
- data/lib/bundler/man/bundle-exec.1.ronn +4 -1
- data/lib/bundler/man/bundle-fund.1 +22 -0
- data/lib/bundler/man/bundle-fund.1.ronn +25 -0
- data/lib/bundler/man/bundle-gem.1 +17 -5
- data/lib/bundler/man/bundle-gem.1.ronn +27 -6
- data/lib/bundler/man/bundle-help.1 +1 -1
- data/lib/bundler/man/bundle-info.1 +5 -2
- data/lib/bundler/man/bundle-info.1.ronn +6 -2
- data/lib/bundler/man/bundle-init.1 +3 -3
- data/lib/bundler/man/bundle-init.1.ronn +3 -2
- data/lib/bundler/man/bundle-inject.1 +10 -2
- data/lib/bundler/man/bundle-inject.1.ronn +9 -1
- data/lib/bundler/man/bundle-install.1 +14 -11
- data/lib/bundler/man/bundle-install.1.ronn +21 -16
- data/lib/bundler/man/bundle-issue.1 +45 -0
- data/lib/bundler/man/bundle-issue.1.ronn +37 -0
- data/lib/bundler/man/bundle-licenses.1 +9 -0
- data/lib/bundler/man/bundle-licenses.1.ronn +10 -0
- data/lib/bundler/man/bundle-list.1 +1 -1
- data/lib/bundler/man/bundle-list.1.ronn +4 -1
- data/lib/bundler/man/bundle-lock.1 +21 -6
- data/lib/bundler/man/bundle-lock.1.ronn +25 -4
- data/lib/bundler/man/bundle-open.1 +2 -2
- data/lib/bundler/man/bundle-open.1.ronn +2 -1
- data/lib/bundler/man/bundle-outdated.1 +8 -5
- data/lib/bundler/man/bundle-outdated.1.ronn +8 -4
- data/lib/bundler/man/bundle-platform.1 +1 -1
- data/lib/bundler/man/bundle-plugin.1 +1 -1
- data/lib/bundler/man/bundle-pristine.1 +1 -1
- data/lib/bundler/man/bundle-pristine.1.ronn +1 -1
- data/lib/bundler/man/bundle-remove.1 +1 -1
- data/lib/bundler/man/bundle-remove.1.ronn +1 -1
- data/lib/bundler/man/bundle-show.1 +5 -2
- data/lib/bundler/man/bundle-show.1.ronn +4 -0
- data/lib/bundler/man/bundle-update.1 +13 -7
- data/lib/bundler/man/bundle-update.1.ronn +14 -6
- data/lib/bundler/man/bundle-version.1 +1 -1
- data/lib/bundler/man/bundle-viz.1 +4 -4
- data/lib/bundler/man/bundle-viz.1.ronn +7 -3
- data/lib/bundler/man/bundle.1 +1 -1
- data/lib/bundler/man/gemfile.5 +1 -1
- data/lib/bundler/man/index.txt +4 -0
- data/lib/bundler/materialization.rb +59 -0
- data/lib/bundler/plugin/events.rb +24 -0
- data/lib/bundler/plugin/installer.rb +1 -1
- data/lib/bundler/process_lock.rb +1 -1
- data/lib/bundler/remote_specification.rb +6 -1
- data/lib/bundler/resolver/base.rb +2 -6
- data/lib/bundler/resolver/candidate.rb +2 -2
- data/lib/bundler/resolver/spec_group.rb +4 -3
- data/lib/bundler/resolver.rb +5 -5
- data/lib/bundler/rubygems_ext.rb +17 -28
- data/lib/bundler/rubygems_gem_installer.rb +0 -1
- data/lib/bundler/rubygems_integration.rb +21 -11
- data/lib/bundler/runtime.rb +27 -7
- data/lib/bundler/self_manager.rb +2 -3
- data/lib/bundler/settings.rb +1 -0
- data/lib/bundler/shared_helpers.rb +2 -2
- data/lib/bundler/source/git/git_proxy.rb +0 -6
- data/lib/bundler/source/git.rb +56 -31
- data/lib/bundler/source/path.rb +2 -2
- data/lib/bundler/source_list.rb +1 -1
- data/lib/bundler/spec_set.rb +81 -56
- data/lib/bundler/stub_specification.rb +8 -0
- data/lib/bundler/templates/newgem/README.md.tt +1 -1
- data/lib/bundler/uri_credentials_filter.rb +1 -1
- data/lib/bundler/vendor/fileutils/COPYING +56 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +15 -13
- data/lib/bundler/vendor/securerandom/COPYING +56 -0
- data/lib/bundler/vendor/securerandom/lib/securerandom.rb +5 -5
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +3 -5
- data/lib/bundler/vendor/thor/lib/thor/group.rb +11 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +1 -4
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +2 -2
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +2 -1
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +9 -9
- data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +5 -21
- data/lib/bundler/vendor/thor/lib/thor/util.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor.rb +11 -0
- data/lib/bundler/vendor/uri/COPYING +56 -0
- data/lib/bundler/vendor/uri/lib/uri/common.rb +37 -16
- data/lib/bundler/vendor/uri/lib/uri/file.rb +3 -3
- data/lib/bundler/vendor/uri/lib/uri/ftp.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri/generic.rb +16 -26
- data/lib/bundler/vendor/uri/lib/uri/http.rb +2 -2
- data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +10 -3
- data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +26 -3
- data/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri.rb +9 -9
- data/lib/bundler/vendored_securerandom.rb +0 -2
- data/lib/bundler/version.rb +1 -1
- data/lib/bundler.rb +37 -13
- metadata +18 -12
- data/lib/bundler/vendor/fileutils/LICENSE.txt +0 -22
- data/lib/bundler/vendor/securerandom/LICENSE.txt +0 -22
- data/lib/bundler/vendor/securerandom/lib/random/formatter.rb +0 -373
- data/lib/bundler/vendor/uri/LICENSE.txt +0 -22
|
@@ -78,7 +78,7 @@ module Bundler::URI
|
|
|
78
78
|
begin
|
|
79
79
|
uri = uri.to_str
|
|
80
80
|
rescue NoMethodError
|
|
81
|
-
raise InvalidURIError, "bad Bundler::URI(is not Bundler::URI?): #{uri.inspect}"
|
|
81
|
+
raise InvalidURIError, "bad Bundler::URI (is not Bundler::URI?): #{uri.inspect}"
|
|
82
82
|
end
|
|
83
83
|
uri.ascii_only? or
|
|
84
84
|
raise InvalidURIError, "Bundler::URI must be ascii only #{uri.dump}"
|
|
@@ -127,7 +127,7 @@ module Bundler::URI
|
|
|
127
127
|
m["fragment"]
|
|
128
128
|
]
|
|
129
129
|
else
|
|
130
|
-
raise InvalidURIError, "bad Bundler::URI(is not Bundler::URI?): #{uri.inspect}"
|
|
130
|
+
raise InvalidURIError, "bad Bundler::URI (is not Bundler::URI?): #{uri.inspect}"
|
|
131
131
|
end
|
|
132
132
|
end
|
|
133
133
|
|
|
@@ -135,12 +135,35 @@ module Bundler::URI
|
|
|
135
135
|
Bundler::URI.for(*self.split(uri), self)
|
|
136
136
|
end
|
|
137
137
|
|
|
138
|
-
|
|
139
138
|
def join(*uris) # :nodoc:
|
|
140
139
|
uris[0] = convert_to_uri(uris[0])
|
|
141
140
|
uris.inject :merge
|
|
142
141
|
end
|
|
143
142
|
|
|
143
|
+
# Compatibility for RFC2396 parser
|
|
144
|
+
def extract(str, schemes = nil, &block) # :nodoc:
|
|
145
|
+
warn "Bundler::URI::RFC3986_PARSER.extract is obsolete. Use Bundler::URI::RFC2396_PARSER.extract explicitly.", uplevel: 1 if $VERBOSE
|
|
146
|
+
RFC2396_PARSER.extract(str, schemes, &block)
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# Compatibility for RFC2396 parser
|
|
150
|
+
def make_regexp(schemes = nil) # :nodoc:
|
|
151
|
+
warn "Bundler::URI::RFC3986_PARSER.make_regexp is obsolete. Use Bundler::URI::RFC2396_PARSER.make_regexp explicitly.", uplevel: 1 if $VERBOSE
|
|
152
|
+
RFC2396_PARSER.make_regexp(schemes)
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
# Compatibility for RFC2396 parser
|
|
156
|
+
def escape(str, unsafe = nil) # :nodoc:
|
|
157
|
+
warn "Bundler::URI::RFC3986_PARSER.escape is obsolete. Use Bundler::URI::RFC2396_PARSER.escape explicitly.", uplevel: 1 if $VERBOSE
|
|
158
|
+
unsafe ? RFC2396_PARSER.escape(str, unsafe) : RFC2396_PARSER.escape(str)
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
# Compatibility for RFC2396 parser
|
|
162
|
+
def unescape(str, escaped = nil) # :nodoc:
|
|
163
|
+
warn "Bundler::URI::RFC3986_PARSER.unescape is obsolete. Use Bundler::URI::RFC2396_PARSER.unescape explicitly.", uplevel: 1 if $VERBOSE
|
|
164
|
+
escaped ? RFC2396_PARSER.unescape(str, escaped) : RFC2396_PARSER.unescape(str)
|
|
165
|
+
end
|
|
166
|
+
|
|
144
167
|
@@to_s = Kernel.instance_method(:to_s)
|
|
145
168
|
if @@to_s.respond_to?(:bind_call)
|
|
146
169
|
def inspect
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: false
|
|
2
2
|
# Bundler::URI is a module providing classes to handle Uniform Resource Identifiers
|
|
3
|
-
# (RFC2396[
|
|
3
|
+
# (RFC2396[https://www.rfc-editor.org/rfc/rfc2396]).
|
|
4
4
|
#
|
|
5
5
|
# == Features
|
|
6
6
|
#
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
# A good place to view an RFC spec is http://www.ietf.org/rfc.html.
|
|
48
48
|
#
|
|
49
49
|
# Here is a list of all related RFC's:
|
|
50
|
-
# - RFC822[
|
|
51
|
-
# - RFC1738[
|
|
52
|
-
# - RFC2255[
|
|
53
|
-
# - RFC2368[
|
|
54
|
-
# - RFC2373[
|
|
55
|
-
# - RFC2396[
|
|
56
|
-
# - RFC2732[
|
|
57
|
-
# - RFC3986[
|
|
50
|
+
# - RFC822[https://www.rfc-editor.org/rfc/rfc822]
|
|
51
|
+
# - RFC1738[https://www.rfc-editor.org/rfc/rfc1738]
|
|
52
|
+
# - RFC2255[https://www.rfc-editor.org/rfc/rfc2255]
|
|
53
|
+
# - RFC2368[https://www.rfc-editor.org/rfc/rfc2368]
|
|
54
|
+
# - RFC2373[https://www.rfc-editor.org/rfc/rfc2373]
|
|
55
|
+
# - RFC2396[https://www.rfc-editor.org/rfc/rfc2396]
|
|
56
|
+
# - RFC2732[https://www.rfc-editor.org/rfc/rfc2732]
|
|
57
|
+
# - RFC3986[https://www.rfc-editor.org/rfc/rfc3986]
|
|
58
58
|
#
|
|
59
59
|
# == Class tree
|
|
60
60
|
#
|
data/lib/bundler/version.rb
CHANGED
data/lib/bundler.rb
CHANGED
|
@@ -10,7 +10,6 @@ require_relative "bundler/plugin"
|
|
|
10
10
|
require_relative "bundler/rubygems_ext"
|
|
11
11
|
require_relative "bundler/rubygems_integration"
|
|
12
12
|
require_relative "bundler/version"
|
|
13
|
-
require_relative "bundler/constants"
|
|
14
13
|
require_relative "bundler/current_ruby"
|
|
15
14
|
require_relative "bundler/build_metadata"
|
|
16
15
|
|
|
@@ -52,6 +51,7 @@ module Bundler
|
|
|
52
51
|
autoload :Env, File.expand_path("bundler/env", __dir__)
|
|
53
52
|
autoload :Fetcher, File.expand_path("bundler/fetcher", __dir__)
|
|
54
53
|
autoload :FeatureFlag, File.expand_path("bundler/feature_flag", __dir__)
|
|
54
|
+
autoload :FREEBSD, File.expand_path("bundler/constants", __dir__)
|
|
55
55
|
autoload :GemHelper, File.expand_path("bundler/gem_helper", __dir__)
|
|
56
56
|
autoload :GemHelpers, File.expand_path("bundler/gem_helpers", __dir__)
|
|
57
57
|
autoload :GemVersionPromoter, File.expand_path("bundler/gem_version_promoter", __dir__)
|
|
@@ -62,6 +62,8 @@ module Bundler
|
|
|
62
62
|
autoload :LazySpecification, File.expand_path("bundler/lazy_specification", __dir__)
|
|
63
63
|
autoload :LockfileParser, File.expand_path("bundler/lockfile_parser", __dir__)
|
|
64
64
|
autoload :MatchRemoteMetadata, File.expand_path("bundler/match_remote_metadata", __dir__)
|
|
65
|
+
autoload :Materialization, File.expand_path("bundler/materialization", __dir__)
|
|
66
|
+
autoload :NULL, File.expand_path("bundler/constants", __dir__)
|
|
65
67
|
autoload :ProcessLock, File.expand_path("bundler/process_lock", __dir__)
|
|
66
68
|
autoload :RemoteSpecification, File.expand_path("bundler/remote_specification", __dir__)
|
|
67
69
|
autoload :Resolver, File.expand_path("bundler/resolver", __dir__)
|
|
@@ -80,6 +82,7 @@ module Bundler
|
|
|
80
82
|
autoload :UI, File.expand_path("bundler/ui", __dir__)
|
|
81
83
|
autoload :URICredentialsFilter, File.expand_path("bundler/uri_credentials_filter", __dir__)
|
|
82
84
|
autoload :URINormalizer, File.expand_path("bundler/uri_normalizer", __dir__)
|
|
85
|
+
autoload :WINDOWS, File.expand_path("bundler/constants", __dir__)
|
|
83
86
|
autoload :SafeMarshal, File.expand_path("bundler/safe_marshal", __dir__)
|
|
84
87
|
|
|
85
88
|
class << self
|
|
@@ -209,6 +212,7 @@ module Bundler
|
|
|
209
212
|
# Bundler.require(:test) # requires second_gem
|
|
210
213
|
#
|
|
211
214
|
def require(*groups)
|
|
215
|
+
load_plugins
|
|
212
216
|
setup(*groups).require(*groups)
|
|
213
217
|
end
|
|
214
218
|
|
|
@@ -252,12 +256,6 @@ module Bundler
|
|
|
252
256
|
end
|
|
253
257
|
end
|
|
254
258
|
|
|
255
|
-
def most_specific_locked_platform?(platform)
|
|
256
|
-
return false unless defined?(@definition) && @definition
|
|
257
|
-
|
|
258
|
-
definition.most_specific_locked_platform == platform
|
|
259
|
-
end
|
|
260
|
-
|
|
261
259
|
def ruby_scope
|
|
262
260
|
"#{Bundler.rubygems.ruby_engine}/#{RbConfig::CONFIG["ruby_version"]}"
|
|
263
261
|
end
|
|
@@ -498,18 +496,27 @@ module Bundler
|
|
|
498
496
|
end
|
|
499
497
|
|
|
500
498
|
def which(executable)
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
499
|
+
executable_path = find_executable(executable)
|
|
500
|
+
return executable_path if executable_path
|
|
501
|
+
|
|
502
|
+
if (paths = ENV["PATH"])
|
|
504
503
|
quote = '"'
|
|
505
504
|
paths.split(File::PATH_SEPARATOR).find do |path|
|
|
506
505
|
path = path[1..-2] if path.start_with?(quote) && path.end_with?(quote)
|
|
507
|
-
executable_path = File.expand_path(executable, path)
|
|
508
|
-
return executable_path if
|
|
506
|
+
executable_path = find_executable(File.expand_path(executable, path))
|
|
507
|
+
return executable_path if executable_path
|
|
509
508
|
end
|
|
510
509
|
end
|
|
511
510
|
end
|
|
512
511
|
|
|
512
|
+
def find_executable(path)
|
|
513
|
+
extensions = RbConfig::CONFIG["EXECUTABLE_EXTS"]&.split
|
|
514
|
+
extensions = [RbConfig::CONFIG["EXEEXT"]] unless extensions&.any?
|
|
515
|
+
candidates = extensions.map {|ext| "#{path}#{ext}" }
|
|
516
|
+
|
|
517
|
+
candidates.find {|candidate| File.file?(candidate) && File.executable?(candidate) }
|
|
518
|
+
end
|
|
519
|
+
|
|
513
520
|
def read_file(file)
|
|
514
521
|
SharedHelpers.filesystem_access(file, :read) do
|
|
515
522
|
File.open(file, "r:UTF-8", &:read)
|
|
@@ -562,13 +569,30 @@ module Bundler
|
|
|
562
569
|
|
|
563
570
|
def git_present?
|
|
564
571
|
return @git_present if defined?(@git_present)
|
|
565
|
-
@git_present = Bundler.which("git
|
|
572
|
+
@git_present = Bundler.which("git")
|
|
566
573
|
end
|
|
567
574
|
|
|
568
575
|
def feature_flag
|
|
569
576
|
@feature_flag ||= FeatureFlag.new(VERSION)
|
|
570
577
|
end
|
|
571
578
|
|
|
579
|
+
def load_plugins(definition = Bundler.definition)
|
|
580
|
+
return if defined?(@load_plugins_ran)
|
|
581
|
+
|
|
582
|
+
Bundler.rubygems.load_plugins
|
|
583
|
+
|
|
584
|
+
requested_path_gems = definition.requested_specs.select {|s| s.source.is_a?(Source::Path) }
|
|
585
|
+
path_plugin_files = requested_path_gems.flat_map do |spec|
|
|
586
|
+
spec.matches_for_glob("rubygems_plugin#{Bundler.rubygems.suffix_pattern}")
|
|
587
|
+
rescue TypeError
|
|
588
|
+
error_message = "#{spec.name} #{spec.version} has an invalid gemspec"
|
|
589
|
+
raise Gem::InvalidSpecificationException, error_message
|
|
590
|
+
end
|
|
591
|
+
Bundler.rubygems.load_plugin_files(path_plugin_files)
|
|
592
|
+
Bundler.rubygems.load_env_plugins
|
|
593
|
+
@load_plugins_ran = true
|
|
594
|
+
end
|
|
595
|
+
|
|
572
596
|
def reset!
|
|
573
597
|
reset_paths!
|
|
574
598
|
Plugin.reset!
|
metadata
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bundler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.6.0
|
|
5
5
|
platform: ruby
|
|
6
|
+
original_platform: ''
|
|
6
7
|
authors:
|
|
7
8
|
- André Arko
|
|
8
9
|
- Samuel Giddins
|
|
@@ -19,10 +20,9 @@ authors:
|
|
|
19
20
|
- Terence Lee
|
|
20
21
|
- Carl Lerche
|
|
21
22
|
- Yehuda Katz
|
|
22
|
-
autorequire:
|
|
23
23
|
bindir: exe
|
|
24
24
|
cert_chain: []
|
|
25
|
-
date: 2024-
|
|
25
|
+
date: 2024-12-16 00:00:00.000000000 Z
|
|
26
26
|
dependencies: []
|
|
27
27
|
description: Bundler manages an application's dependencies through its entire life,
|
|
28
28
|
across many machines, systematically and repeatably
|
|
@@ -135,8 +135,12 @@ files:
|
|
|
135
135
|
- lib/bundler/man/bundle-console.1.ronn
|
|
136
136
|
- lib/bundler/man/bundle-doctor.1
|
|
137
137
|
- lib/bundler/man/bundle-doctor.1.ronn
|
|
138
|
+
- lib/bundler/man/bundle-env.1
|
|
139
|
+
- lib/bundler/man/bundle-env.1.ronn
|
|
138
140
|
- lib/bundler/man/bundle-exec.1
|
|
139
141
|
- lib/bundler/man/bundle-exec.1.ronn
|
|
142
|
+
- lib/bundler/man/bundle-fund.1
|
|
143
|
+
- lib/bundler/man/bundle-fund.1.ronn
|
|
140
144
|
- lib/bundler/man/bundle-gem.1
|
|
141
145
|
- lib/bundler/man/bundle-gem.1.ronn
|
|
142
146
|
- lib/bundler/man/bundle-help.1
|
|
@@ -149,6 +153,10 @@ files:
|
|
|
149
153
|
- lib/bundler/man/bundle-inject.1.ronn
|
|
150
154
|
- lib/bundler/man/bundle-install.1
|
|
151
155
|
- lib/bundler/man/bundle-install.1.ronn
|
|
156
|
+
- lib/bundler/man/bundle-issue.1
|
|
157
|
+
- lib/bundler/man/bundle-issue.1.ronn
|
|
158
|
+
- lib/bundler/man/bundle-licenses.1
|
|
159
|
+
- lib/bundler/man/bundle-licenses.1.ronn
|
|
152
160
|
- lib/bundler/man/bundle-list.1
|
|
153
161
|
- lib/bundler/man/bundle-list.1.ronn
|
|
154
162
|
- lib/bundler/man/bundle-lock.1
|
|
@@ -181,6 +189,7 @@ files:
|
|
|
181
189
|
- lib/bundler/match_metadata.rb
|
|
182
190
|
- lib/bundler/match_platform.rb
|
|
183
191
|
- lib/bundler/match_remote_metadata.rb
|
|
192
|
+
- lib/bundler/materialization.rb
|
|
184
193
|
- lib/bundler/mirror.rb
|
|
185
194
|
- lib/bundler/plugin.rb
|
|
186
195
|
- lib/bundler/plugin/api.rb
|
|
@@ -282,7 +291,7 @@ files:
|
|
|
282
291
|
- lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb
|
|
283
292
|
- lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
|
|
284
293
|
- lib/bundler/vendor/fileutils/.document
|
|
285
|
-
- lib/bundler/vendor/fileutils/
|
|
294
|
+
- lib/bundler/vendor/fileutils/COPYING
|
|
286
295
|
- lib/bundler/vendor/fileutils/lib/fileutils.rb
|
|
287
296
|
- lib/bundler/vendor/net-http-persistent/.document
|
|
288
297
|
- lib/bundler/vendor/net-http-persistent/README.rdoc
|
|
@@ -309,8 +318,7 @@ files:
|
|
|
309
318
|
- lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb
|
|
310
319
|
- lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb
|
|
311
320
|
- lib/bundler/vendor/securerandom/.document
|
|
312
|
-
- lib/bundler/vendor/securerandom/
|
|
313
|
-
- lib/bundler/vendor/securerandom/lib/random/formatter.rb
|
|
321
|
+
- lib/bundler/vendor/securerandom/COPYING
|
|
314
322
|
- lib/bundler/vendor/securerandom/lib/securerandom.rb
|
|
315
323
|
- lib/bundler/vendor/thor/.document
|
|
316
324
|
- lib/bundler/vendor/thor/LICENSE.md
|
|
@@ -353,7 +361,7 @@ files:
|
|
|
353
361
|
- lib/bundler/vendor/tsort/LICENSE.txt
|
|
354
362
|
- lib/bundler/vendor/tsort/lib/tsort.rb
|
|
355
363
|
- lib/bundler/vendor/uri/.document
|
|
356
|
-
- lib/bundler/vendor/uri/
|
|
364
|
+
- lib/bundler/vendor/uri/COPYING
|
|
357
365
|
- lib/bundler/vendor/uri/lib/uri.rb
|
|
358
366
|
- lib/bundler/vendor/uri/lib/uri/common.rb
|
|
359
367
|
- lib/bundler/vendor/uri/lib/uri/file.rb
|
|
@@ -390,7 +398,6 @@ metadata:
|
|
|
390
398
|
changelog_uri: https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md
|
|
391
399
|
homepage_uri: https://bundler.io/
|
|
392
400
|
source_code_uri: https://github.com/rubygems/rubygems/tree/master/bundler
|
|
393
|
-
post_install_message:
|
|
394
401
|
rdoc_options: []
|
|
395
402
|
require_paths:
|
|
396
403
|
- lib
|
|
@@ -398,15 +405,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
398
405
|
requirements:
|
|
399
406
|
- - ">="
|
|
400
407
|
- !ruby/object:Gem::Version
|
|
401
|
-
version: 3.
|
|
408
|
+
version: 3.1.0
|
|
402
409
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
403
410
|
requirements:
|
|
404
411
|
- - ">="
|
|
405
412
|
- !ruby/object:Gem::Version
|
|
406
|
-
version: 3.
|
|
413
|
+
version: 3.3.3
|
|
407
414
|
requirements: []
|
|
408
|
-
rubygems_version: 3.
|
|
409
|
-
signing_key:
|
|
415
|
+
rubygems_version: 3.6.0
|
|
410
416
|
specification_version: 4
|
|
411
417
|
summary: The best way to manage your application's dependencies
|
|
412
418
|
test_files: []
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
|
|
2
|
-
|
|
3
|
-
Redistribution and use in source and binary forms, with or without
|
|
4
|
-
modification, are permitted provided that the following conditions
|
|
5
|
-
are met:
|
|
6
|
-
1. Redistributions of source code must retain the above copyright
|
|
7
|
-
notice, this list of conditions and the following disclaimer.
|
|
8
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
9
|
-
notice, this list of conditions and the following disclaimer in the
|
|
10
|
-
documentation and/or other materials provided with the distribution.
|
|
11
|
-
|
|
12
|
-
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
13
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
14
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
15
|
-
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
16
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
17
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
18
|
-
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
19
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
20
|
-
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
21
|
-
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
22
|
-
SUCH DAMAGE.
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
|
|
2
|
-
|
|
3
|
-
Redistribution and use in source and binary forms, with or without
|
|
4
|
-
modification, are permitted provided that the following conditions
|
|
5
|
-
are met:
|
|
6
|
-
1. Redistributions of source code must retain the above copyright
|
|
7
|
-
notice, this list of conditions and the following disclaimer.
|
|
8
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
9
|
-
notice, this list of conditions and the following disclaimer in the
|
|
10
|
-
documentation and/or other materials provided with the distribution.
|
|
11
|
-
|
|
12
|
-
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
13
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
14
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
15
|
-
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
16
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
17
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
18
|
-
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
19
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
20
|
-
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
21
|
-
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
22
|
-
SUCH DAMAGE.
|