bundler 2.5.16 → 2.6.2
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 +194 -0
- data/bundler.gemspec +2 -2
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/cli/add.rb +3 -1
- data/lib/bundler/cli/check.rb +3 -3
- 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 +6 -3
- data/lib/bundler/cli/info.rb +2 -2
- data/lib/bundler/cli/inject.rb +1 -1
- data/lib/bundler/cli/install.rb +13 -4
- data/lib/bundler/cli/lock.rb +25 -6
- data/lib/bundler/cli/outdated.rb +16 -18
- data/lib/bundler/cli/pristine.rb +1 -1
- data/lib/bundler/cli/show.rb +2 -2
- data/lib/bundler/cli.rb +38 -68
- 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 +186 -119
- data/lib/bundler/dependency.rb +1 -1
- data/lib/bundler/dsl.rb +67 -52
- data/lib/bundler/endpoint_specification.rb +10 -1
- data/lib/bundler/errors.rb +17 -5
- data/lib/bundler/feature_flag.rb +1 -0
- data/lib/bundler/fetcher/compact_index.rb +1 -1
- data/lib/bundler/fetcher.rb +12 -5
- data/lib/bundler/force_platform.rb +0 -2
- data/lib/bundler/gem_helpers.rb +21 -5
- data/lib/bundler/injector.rb +2 -2
- data/lib/bundler/inline.rb +42 -17
- data/lib/bundler/installer/gem_installer.rb +4 -2
- data/lib/bundler/installer/parallel_installer.rb +3 -2
- data/lib/bundler/installer/standalone.rb +2 -2
- data/lib/bundler/installer.rb +11 -47
- data/lib/bundler/lazy_specification.rb +74 -26
- data/lib/bundler/lockfile_generator.rb +1 -1
- data/lib/bundler/lockfile_parser.rb +10 -2
- data/lib/bundler/man/bundle-add.1 +42 -25
- data/lib/bundler/man/bundle-add.1.ronn +52 -23
- 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 -5
- data/lib/bundler/man/bundle-config.1.ronn +2 -7
- 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 +15 -12
- data/lib/bundler/man/bundle-install.1.ronn +22 -18
- 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 +3 -1
- data/lib/bundler/man/gemfile.5.ronn +6 -0
- data/lib/bundler/man/index.txt +4 -0
- data/lib/bundler/materialization.rb +59 -0
- data/lib/bundler/plugin/api/source.rb +2 -1
- data/lib/bundler/plugin/events.rb +24 -0
- data/lib/bundler/plugin/installer.rb +1 -1
- data/lib/bundler/plugin.rb +20 -1
- data/lib/bundler/process_lock.rb +10 -14
- data/lib/bundler/remote_specification.rb +6 -1
- data/lib/bundler/resolver/base.rb +12 -6
- data/lib/bundler/resolver/candidate.rb +2 -2
- data/lib/bundler/resolver/package.rb +10 -1
- data/lib/bundler/resolver/spec_group.rb +4 -3
- data/lib/bundler/resolver.rb +36 -14
- data/lib/bundler/retry.rb +1 -1
- data/lib/bundler/ruby_version.rb +7 -1
- data/lib/bundler/rubygems_ext.rb +104 -51
- data/lib/bundler/rubygems_gem_installer.rb +7 -5
- data/lib/bundler/rubygems_integration.rb +23 -62
- data/lib/bundler/runtime.rb +22 -7
- data/lib/bundler/self_manager.rb +7 -7
- data/lib/bundler/settings.rb +6 -1
- data/lib/bundler/shared_helpers.rb +29 -17
- data/lib/bundler/source/git/git_proxy.rb +0 -2
- data/lib/bundler/source/git.rb +93 -40
- data/lib/bundler/source/metadata.rb +2 -3
- data/lib/bundler/source/path.rb +5 -3
- data/lib/bundler/source/rubygems.rb +6 -16
- data/lib/bundler/source_list.rb +1 -1
- data/lib/bundler/spec_set.rb +82 -57
- data/lib/bundler/stub_specification.rb +21 -2
- data/lib/bundler/templates/newgem/Gemfile.tt +0 -3
- data/lib/bundler/templates/newgem/README.md.tt +7 -3
- data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +15 -15
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +4 -4
- data/lib/bundler/ui/shell.rb +24 -2
- data/lib/bundler/ui/silent.rb +12 -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/net-http-persistent/lib/net/http/persistent.rb +46 -8
- data/lib/bundler/vendor/securerandom/.document +1 -0
- data/lib/bundler/vendor/securerandom/COPYING +56 -0
- data/lib/bundler/vendor/securerandom/lib/securerandom.rb +102 -0
- 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 -14
- 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 +12 -0
- data/lib/bundler/version.rb +1 -1
- data/lib/bundler/yaml_serializer.rb +1 -1
- data/lib/bundler.rb +68 -36
- metadata +20 -10
- data/lib/bundler/vendor/fileutils/LICENSE.txt +0 -22
- data/lib/bundler/vendor/uri/LICENSE.txt +0 -22
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
|
@@ -383,28 +381,12 @@ module Bundler
|
|
383
381
|
|
384
382
|
# @return [Hash] Environment with all bundler-related variables removed
|
385
383
|
def unbundled_env
|
386
|
-
|
387
|
-
|
388
|
-
if env.key?("BUNDLER_ORIG_MANPATH")
|
389
|
-
env["MANPATH"] = env["BUNDLER_ORIG_MANPATH"]
|
390
|
-
end
|
391
|
-
|
392
|
-
env.delete_if {|k, _| k[0, 7] == "BUNDLE_" }
|
393
|
-
|
394
|
-
if env.key?("RUBYOPT")
|
395
|
-
rubyopt = env["RUBYOPT"].split(" ")
|
396
|
-
rubyopt.delete("-r#{File.expand_path("bundler/setup", __dir__)}")
|
397
|
-
rubyopt.delete("-rbundler/setup")
|
398
|
-
env["RUBYOPT"] = rubyopt.join(" ")
|
399
|
-
end
|
400
|
-
|
401
|
-
if env.key?("RUBYLIB")
|
402
|
-
rubylib = env["RUBYLIB"].split(File::PATH_SEPARATOR)
|
403
|
-
rubylib.delete(__dir__)
|
404
|
-
env["RUBYLIB"] = rubylib.join(File::PATH_SEPARATOR)
|
405
|
-
end
|
384
|
+
unbundle_env(original_env)
|
385
|
+
end
|
406
386
|
|
407
|
-
|
387
|
+
# Remove all bundler-related variables from ENV
|
388
|
+
def unbundle_env!
|
389
|
+
ENV.replace(unbundle_env(ENV))
|
408
390
|
end
|
409
391
|
|
410
392
|
# Run block with environment present before Bundler was activated
|
@@ -508,24 +490,33 @@ module Bundler
|
|
508
490
|
end
|
509
491
|
|
510
492
|
def mkdir_p(path)
|
511
|
-
SharedHelpers.filesystem_access(path, :
|
493
|
+
SharedHelpers.filesystem_access(path, :create) do |p|
|
512
494
|
FileUtils.mkdir_p(p)
|
513
495
|
end
|
514
496
|
end
|
515
497
|
|
516
498
|
def which(executable)
|
517
|
-
|
518
|
-
|
519
|
-
|
499
|
+
executable_path = find_executable(executable)
|
500
|
+
return executable_path if executable_path
|
501
|
+
|
502
|
+
if (paths = ENV["PATH"])
|
520
503
|
quote = '"'
|
521
504
|
paths.split(File::PATH_SEPARATOR).find do |path|
|
522
505
|
path = path[1..-2] if path.start_with?(quote) && path.end_with?(quote)
|
523
|
-
executable_path = File.expand_path(executable, path)
|
524
|
-
return executable_path if
|
506
|
+
executable_path = find_executable(File.expand_path(executable, path))
|
507
|
+
return executable_path if executable_path
|
525
508
|
end
|
526
509
|
end
|
527
510
|
end
|
528
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
|
+
|
529
520
|
def read_file(file)
|
530
521
|
SharedHelpers.filesystem_access(file, :read) do
|
531
522
|
File.open(file, "r:UTF-8", &:read)
|
@@ -578,13 +569,30 @@ module Bundler
|
|
578
569
|
|
579
570
|
def git_present?
|
580
571
|
return @git_present if defined?(@git_present)
|
581
|
-
@git_present = Bundler.which("git
|
572
|
+
@git_present = Bundler.which("git")
|
582
573
|
end
|
583
574
|
|
584
575
|
def feature_flag
|
585
576
|
@feature_flag ||= FeatureFlag.new(VERSION)
|
586
577
|
end
|
587
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
|
+
|
588
596
|
def reset!
|
589
597
|
reset_paths!
|
590
598
|
Plugin.reset!
|
@@ -633,6 +641,30 @@ module Bundler
|
|
633
641
|
|
634
642
|
private
|
635
643
|
|
644
|
+
def unbundle_env(env)
|
645
|
+
if env.key?("BUNDLER_ORIG_MANPATH")
|
646
|
+
env["MANPATH"] = env["BUNDLER_ORIG_MANPATH"]
|
647
|
+
end
|
648
|
+
|
649
|
+
env.delete_if {|k, _| k[0, 7] == "BUNDLE_" }
|
650
|
+
env.delete("BUNDLER_SETUP")
|
651
|
+
|
652
|
+
if env.key?("RUBYOPT")
|
653
|
+
rubyopt = env["RUBYOPT"].split(" ")
|
654
|
+
rubyopt.delete("-r#{File.expand_path("bundler/setup", __dir__)}")
|
655
|
+
rubyopt.delete("-rbundler/setup")
|
656
|
+
env["RUBYOPT"] = rubyopt.join(" ")
|
657
|
+
end
|
658
|
+
|
659
|
+
if env.key?("RUBYLIB")
|
660
|
+
rubylib = env["RUBYLIB"].split(File::PATH_SEPARATOR)
|
661
|
+
rubylib.delete(__dir__)
|
662
|
+
env["RUBYLIB"] = rubylib.join(File::PATH_SEPARATOR)
|
663
|
+
end
|
664
|
+
|
665
|
+
env
|
666
|
+
end
|
667
|
+
|
636
668
|
def load_marshal(data, marshal_proc: nil)
|
637
669
|
Marshal.load(data, marshal_proc)
|
638
670
|
rescue TypeError => e
|
@@ -652,7 +684,7 @@ module Bundler
|
|
652
684
|
rescue ScriptError, StandardError => e
|
653
685
|
msg = "There was an error while loading `#{path.basename}`: #{e.message}"
|
654
686
|
|
655
|
-
raise GemspecError, Dsl::DSLError.new(msg, path, e.backtrace, contents)
|
687
|
+
raise GemspecError, Dsl::DSLError.new(msg, path.to_s, e.backtrace, contents)
|
656
688
|
end
|
657
689
|
|
658
690
|
def configure_gem_path
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Arko
|
@@ -19,10 +19,9 @@ authors:
|
|
19
19
|
- Terence Lee
|
20
20
|
- Carl Lerche
|
21
21
|
- Yehuda Katz
|
22
|
-
autorequire:
|
23
22
|
bindir: exe
|
24
23
|
cert_chain: []
|
25
|
-
date: 2024-
|
24
|
+
date: 2024-12-23 00:00:00.000000000 Z
|
26
25
|
dependencies: []
|
27
26
|
description: Bundler manages an application's dependencies through its entire life,
|
28
27
|
across many machines, systematically and repeatably
|
@@ -135,8 +134,12 @@ files:
|
|
135
134
|
- lib/bundler/man/bundle-console.1.ronn
|
136
135
|
- lib/bundler/man/bundle-doctor.1
|
137
136
|
- lib/bundler/man/bundle-doctor.1.ronn
|
137
|
+
- lib/bundler/man/bundle-env.1
|
138
|
+
- lib/bundler/man/bundle-env.1.ronn
|
138
139
|
- lib/bundler/man/bundle-exec.1
|
139
140
|
- lib/bundler/man/bundle-exec.1.ronn
|
141
|
+
- lib/bundler/man/bundle-fund.1
|
142
|
+
- lib/bundler/man/bundle-fund.1.ronn
|
140
143
|
- lib/bundler/man/bundle-gem.1
|
141
144
|
- lib/bundler/man/bundle-gem.1.ronn
|
142
145
|
- lib/bundler/man/bundle-help.1
|
@@ -149,6 +152,10 @@ files:
|
|
149
152
|
- lib/bundler/man/bundle-inject.1.ronn
|
150
153
|
- lib/bundler/man/bundle-install.1
|
151
154
|
- lib/bundler/man/bundle-install.1.ronn
|
155
|
+
- lib/bundler/man/bundle-issue.1
|
156
|
+
- lib/bundler/man/bundle-issue.1.ronn
|
157
|
+
- lib/bundler/man/bundle-licenses.1
|
158
|
+
- lib/bundler/man/bundle-licenses.1.ronn
|
152
159
|
- lib/bundler/man/bundle-list.1
|
153
160
|
- lib/bundler/man/bundle-list.1.ronn
|
154
161
|
- lib/bundler/man/bundle-lock.1
|
@@ -181,6 +188,7 @@ files:
|
|
181
188
|
- lib/bundler/match_metadata.rb
|
182
189
|
- lib/bundler/match_platform.rb
|
183
190
|
- lib/bundler/match_remote_metadata.rb
|
191
|
+
- lib/bundler/materialization.rb
|
184
192
|
- lib/bundler/mirror.rb
|
185
193
|
- lib/bundler/plugin.rb
|
186
194
|
- lib/bundler/plugin/api.rb
|
@@ -282,7 +290,7 @@ files:
|
|
282
290
|
- lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb
|
283
291
|
- lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
|
284
292
|
- lib/bundler/vendor/fileutils/.document
|
285
|
-
- lib/bundler/vendor/fileutils/
|
293
|
+
- lib/bundler/vendor/fileutils/COPYING
|
286
294
|
- lib/bundler/vendor/fileutils/lib/fileutils.rb
|
287
295
|
- lib/bundler/vendor/net-http-persistent/.document
|
288
296
|
- lib/bundler/vendor/net-http-persistent/README.rdoc
|
@@ -308,6 +316,9 @@ files:
|
|
308
316
|
- lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb
|
309
317
|
- lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb
|
310
318
|
- lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb
|
319
|
+
- lib/bundler/vendor/securerandom/.document
|
320
|
+
- lib/bundler/vendor/securerandom/COPYING
|
321
|
+
- lib/bundler/vendor/securerandom/lib/securerandom.rb
|
311
322
|
- lib/bundler/vendor/thor/.document
|
312
323
|
- lib/bundler/vendor/thor/LICENSE.md
|
313
324
|
- lib/bundler/vendor/thor/lib/thor.rb
|
@@ -349,7 +360,7 @@ files:
|
|
349
360
|
- lib/bundler/vendor/tsort/LICENSE.txt
|
350
361
|
- lib/bundler/vendor/tsort/lib/tsort.rb
|
351
362
|
- lib/bundler/vendor/uri/.document
|
352
|
-
- lib/bundler/vendor/uri/
|
363
|
+
- lib/bundler/vendor/uri/COPYING
|
353
364
|
- lib/bundler/vendor/uri/lib/uri.rb
|
354
365
|
- lib/bundler/vendor/uri/lib/uri/common.rb
|
355
366
|
- lib/bundler/vendor/uri/lib/uri/file.rb
|
@@ -369,6 +380,7 @@ files:
|
|
369
380
|
- lib/bundler/vendored_net_http.rb
|
370
381
|
- lib/bundler/vendored_persistent.rb
|
371
382
|
- lib/bundler/vendored_pub_grub.rb
|
383
|
+
- lib/bundler/vendored_securerandom.rb
|
372
384
|
- lib/bundler/vendored_thor.rb
|
373
385
|
- lib/bundler/vendored_timeout.rb
|
374
386
|
- lib/bundler/vendored_tsort.rb
|
@@ -385,7 +397,6 @@ metadata:
|
|
385
397
|
changelog_uri: https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md
|
386
398
|
homepage_uri: https://bundler.io/
|
387
399
|
source_code_uri: https://github.com/rubygems/rubygems/tree/master/bundler
|
388
|
-
post_install_message:
|
389
400
|
rdoc_options: []
|
390
401
|
require_paths:
|
391
402
|
- lib
|
@@ -393,15 +404,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
393
404
|
requirements:
|
394
405
|
- - ">="
|
395
406
|
- !ruby/object:Gem::Version
|
396
|
-
version: 3.
|
407
|
+
version: 3.1.0
|
397
408
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
398
409
|
requirements:
|
399
410
|
- - ">="
|
400
411
|
- !ruby/object:Gem::Version
|
401
|
-
version: 3.
|
412
|
+
version: 3.3.3
|
402
413
|
requirements: []
|
403
|
-
rubygems_version: 3.
|
404
|
-
signing_key:
|
414
|
+
rubygems_version: 3.6.2
|
405
415
|
specification_version: 4
|
406
416
|
summary: The best way to manage your application's dependencies
|
407
417
|
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.
|