bundler 2.3.12 → 2.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +367 -1
- data/README.md +2 -2
- data/bundler.gemspec +8 -10
- data/exe/bundle +1 -4
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/cli/add.rb +1 -1
- data/lib/bundler/cli/binstubs.rb +5 -1
- data/lib/bundler/cli/check.rb +1 -1
- data/lib/bundler/cli/common.rb +3 -1
- data/lib/bundler/cli/console.rb +2 -2
- data/lib/bundler/cli/doctor.rb +4 -6
- data/lib/bundler/cli/gem.rb +62 -40
- data/lib/bundler/cli/init.rb +5 -1
- data/lib/bundler/cli/install.rb +7 -5
- data/lib/bundler/cli/lock.rb +8 -5
- data/lib/bundler/cli/open.rb +6 -4
- data/lib/bundler/cli/outdated.rb +13 -6
- data/lib/bundler/cli/platform.rb +1 -1
- data/lib/bundler/cli/viz.rb +1 -1
- data/lib/bundler/cli.rb +52 -7
- data/lib/bundler/compact_index_client/cache.rb +1 -1
- data/lib/bundler/compact_index_client/updater.rb +53 -39
- data/lib/bundler/constants.rb +1 -1
- data/lib/bundler/current_ruby.rb +15 -6
- data/lib/bundler/definition.rb +203 -110
- data/lib/bundler/dependency.rb +21 -84
- data/lib/bundler/digest.rb +1 -1
- data/lib/bundler/dsl.rb +13 -18
- data/lib/bundler/endpoint_specification.rb +6 -10
- data/lib/bundler/env.rb +1 -1
- data/lib/bundler/environment_preserver.rb +1 -0
- data/lib/bundler/errors.rb +15 -15
- data/lib/bundler/feature_flag.rb +0 -1
- data/lib/bundler/fetcher/base.rb +6 -8
- data/lib/bundler/fetcher/compact_index.rb +9 -11
- data/lib/bundler/fetcher/dependency.rb +1 -1
- data/lib/bundler/fetcher/downloader.rb +2 -5
- data/lib/bundler/fetcher.rb +12 -12
- data/lib/bundler/force_platform.rb +18 -0
- data/lib/bundler/friendly_errors.rb +21 -7
- data/lib/bundler/gem_helpers.rb +9 -2
- data/lib/bundler/gem_version_promoter.rb +53 -98
- data/lib/bundler/graph.rb +3 -3
- data/lib/bundler/index.rb +11 -49
- data/lib/bundler/injector.rb +8 -3
- data/lib/bundler/inline.rb +9 -21
- data/lib/bundler/installer/gem_installer.rb +14 -1
- data/lib/bundler/installer/parallel_installer.rb +0 -31
- data/lib/bundler/installer/standalone.rb +41 -10
- data/lib/bundler/installer.rb +18 -39
- data/lib/bundler/lazy_specification.rb +53 -48
- data/lib/bundler/lockfile_generator.rb +1 -1
- data/lib/bundler/lockfile_parser.rb +9 -5
- data/lib/bundler/man/bundle-add.1 +13 -5
- data/lib/bundler/man/bundle-add.1.ronn +10 -4
- data/lib/bundler/man/bundle-binstubs.1 +1 -1
- data/lib/bundler/man/bundle-cache.1 +7 -1
- data/lib/bundler/man/bundle-cache.1.ronn +7 -0
- data/lib/bundler/man/bundle-check.1 +1 -1
- data/lib/bundler/man/bundle-clean.1 +2 -2
- data/lib/bundler/man/bundle-clean.1.ronn +1 -1
- data/lib/bundler/man/bundle-config.1 +26 -7
- data/lib/bundler/man/bundle-config.1.ronn +17 -7
- data/lib/bundler/man/bundle-console.1 +53 -0
- data/lib/bundler/man/bundle-console.1.ronn +44 -0
- data/lib/bundler/man/bundle-doctor.1 +1 -1
- data/lib/bundler/man/bundle-exec.1 +6 -6
- data/lib/bundler/man/bundle-exec.1.ronn +6 -6
- data/lib/bundler/man/bundle-gem.1 +27 -37
- data/lib/bundler/man/bundle-gem.1.ronn +5 -5
- data/lib/bundler/man/bundle-help.1 +13 -0
- data/lib/bundler/man/bundle-help.1.ronn +12 -0
- data/lib/bundler/man/bundle-info.1 +1 -1
- data/lib/bundler/man/bundle-init.1 +1 -1
- data/lib/bundler/man/bundle-inject.1 +5 -2
- data/lib/bundler/man/bundle-inject.1.ronn +3 -1
- data/lib/bundler/man/bundle-install.1 +5 -30
- data/lib/bundler/man/bundle-install.1.ronn +6 -29
- data/lib/bundler/man/bundle-list.1 +1 -1
- data/lib/bundler/man/bundle-lock.1 +1 -1
- data/lib/bundler/man/bundle-open.1 +22 -2
- data/lib/bundler/man/bundle-open.1.ronn +9 -1
- data/lib/bundler/man/bundle-outdated.1 +1 -1
- data/lib/bundler/man/bundle-platform.1 +16 -6
- data/lib/bundler/man/bundle-platform.1.ronn +14 -7
- data/lib/bundler/man/bundle-plugin.1 +81 -0
- data/lib/bundler/man/bundle-plugin.1.ronn +59 -0
- data/lib/bundler/man/bundle-pristine.1 +1 -1
- data/lib/bundler/man/bundle-remove.1 +1 -1
- data/lib/bundler/man/bundle-show.1 +1 -1
- data/lib/bundler/man/bundle-update.1 +1 -1
- data/lib/bundler/man/bundle-version.1 +35 -0
- data/lib/bundler/man/bundle-version.1.ronn +24 -0
- data/lib/bundler/man/bundle-viz.1 +4 -1
- data/lib/bundler/man/bundle-viz.1.ronn +2 -0
- data/lib/bundler/man/bundle.1 +15 -10
- data/lib/bundler/man/bundle.1.ronn +12 -7
- data/lib/bundler/man/gemfile.5 +92 -81
- data/lib/bundler/man/gemfile.5.ronn +98 -85
- data/lib/bundler/man/index.txt +4 -0
- data/lib/bundler/match_metadata.rb +13 -0
- data/lib/bundler/match_platform.rb +0 -1
- data/lib/bundler/match_remote_metadata.rb +29 -0
- data/lib/bundler/mirror.rb +5 -7
- data/lib/bundler/plugin/api/source.rb +3 -3
- data/lib/bundler/plugin/index.rb +4 -4
- data/lib/bundler/plugin/installer/git.rb +0 -4
- data/lib/bundler/plugin/installer/rubygems.rb +0 -8
- data/lib/bundler/plugin.rb +2 -0
- data/lib/bundler/process_lock.rb +1 -1
- data/lib/bundler/remote_specification.rb +8 -9
- data/lib/bundler/resolver/base.rb +77 -0
- data/lib/bundler/resolver/candidate.rb +94 -0
- data/lib/bundler/resolver/incompatibility.rb +15 -0
- data/lib/bundler/resolver/package.rb +72 -0
- data/lib/bundler/resolver/root.rb +25 -0
- data/lib/bundler/resolver/spec_group.rb +42 -70
- data/lib/bundler/resolver.rb +322 -326
- data/lib/bundler/ruby_dsl.rb +1 -1
- data/lib/bundler/ruby_version.rb +5 -5
- data/lib/bundler/rubygems_ext.rb +102 -12
- data/lib/bundler/rubygems_gem_installer.rb +32 -20
- data/lib/bundler/rubygems_integration.rb +12 -34
- data/lib/bundler/runtime.rb +1 -6
- data/lib/bundler/settings.rb +2 -8
- data/lib/bundler/shared_helpers.rb +7 -7
- data/lib/bundler/source/git/git_proxy.rb +193 -67
- data/lib/bundler/source/git.rb +21 -25
- data/lib/bundler/source/metadata.rb +1 -2
- data/lib/bundler/source/path/installer.rb +1 -22
- data/lib/bundler/source/path.rb +6 -6
- data/lib/bundler/source/rubygems.rb +75 -117
- data/lib/bundler/source.rb +3 -4
- data/lib/bundler/source_list.rb +12 -2
- data/lib/bundler/spec_set.rb +52 -34
- data/lib/bundler/stub_specification.rb +5 -3
- data/lib/bundler/templates/Executable +1 -1
- data/lib/bundler/templates/Executable.bundler +4 -9
- data/lib/bundler/templates/Executable.standalone +2 -0
- data/lib/bundler/templates/newgem/Cargo.toml.tt +7 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +3 -0
- data/lib/bundler/templates/newgem/README.md.tt +6 -4
- data/lib/bundler/templates/newgem/Rakefile.tt +2 -1
- data/lib/bundler/templates/newgem/circleci/config.yml.tt +12 -0
- data/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
- data/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
- data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +10 -0
- data/lib/bundler/templates/newgem/gitignore.tt +3 -0
- data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +13 -4
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -2
- data/lib/bundler/ui/shell.rb +35 -12
- data/lib/bundler/ui/silent.rb +21 -5
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +3 -3
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +0 -1
- data/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +3 -1
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1350 -408
- data/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1 -1
- data/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +151 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +53 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +128 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +409 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +240 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri/common.rb +64 -16
- data/lib/bundler/vendor/uri/lib/uri/file.rb +7 -1
- data/lib/bundler/vendor/uri/lib/uri/ftp.rb +2 -1
- data/lib/bundler/vendor/uri/lib/uri/generic.rb +27 -7
- data/lib/bundler/vendor/uri/lib/uri/http.rb +40 -2
- data/lib/bundler/vendor/uri/lib/uri/https.rb +2 -1
- data/lib/bundler/vendor/uri/lib/uri/ldap.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri/ldaps.rb +2 -1
- data/lib/bundler/vendor/uri/lib/uri/mailto.rb +2 -2
- data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +13 -7
- data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +10 -5
- data/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri/ws.rb +1 -2
- data/lib/bundler/vendor/uri/lib/uri/wss.rb +2 -1
- data/lib/bundler/vendor/uri/lib/uri.rb +3 -2
- data/lib/bundler/vendored_persistent.rb +1 -33
- data/lib/bundler/{vendored_tmpdir.rb → vendored_pub_grub.rb} +1 -1
- data/lib/bundler/version.rb +5 -1
- data/lib/bundler/worker.rb +5 -7
- data/lib/bundler.rb +35 -69
- metadata +45 -34
- data/lib/bundler/dep_proxy.rb +0 -55
- data/lib/bundler/templates/newgem/travis.yml.tt +0 -6
- data/lib/bundler/vendor/molinillo/LICENSE +0 -9
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +0 -88
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +0 -36
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +0 -66
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +0 -62
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +0 -63
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +0 -61
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +0 -126
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +0 -46
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +0 -36
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +0 -164
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +0 -255
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +0 -149
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +0 -112
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +0 -67
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +0 -839
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +0 -46
- data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +0 -58
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -11
- data/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +0 -154
- data/lib/bundler/vendored_molinillo.rb +0 -4
- data/lib/bundler/version_ranges.rb +0 -122
- /data/lib/bundler/templates/newgem/ext/newgem/{extconf.rb.tt → extconf-c.rb.tt} +0 -0
data/lib/bundler/dependency.rb
CHANGED
@@ -7,90 +7,24 @@ require_relative "rubygems_ext"
|
|
7
7
|
module Bundler
|
8
8
|
class Dependency < Gem::Dependency
|
9
9
|
attr_reader :autorequire
|
10
|
-
attr_reader :groups, :platforms, :gemfile, :git, :github, :branch, :ref
|
10
|
+
attr_reader :groups, :platforms, :gemfile, :path, :git, :github, :branch, :ref
|
11
11
|
|
12
|
+
ALL_RUBY_VERSIONS = ((18..27).to_a + (30..31).to_a).freeze
|
12
13
|
PLATFORM_MAP = {
|
13
|
-
:ruby
|
14
|
-
:
|
15
|
-
:
|
16
|
-
:
|
17
|
-
:
|
18
|
-
:
|
19
|
-
:
|
20
|
-
:
|
21
|
-
:
|
22
|
-
:
|
23
|
-
|
24
|
-
|
25
|
-
:
|
26
|
-
|
27
|
-
:mri_18 => Gem::Platform::RUBY,
|
28
|
-
:mri_19 => Gem::Platform::RUBY,
|
29
|
-
:mri_20 => Gem::Platform::RUBY,
|
30
|
-
:mri_21 => Gem::Platform::RUBY,
|
31
|
-
:mri_22 => Gem::Platform::RUBY,
|
32
|
-
:mri_23 => Gem::Platform::RUBY,
|
33
|
-
:mri_24 => Gem::Platform::RUBY,
|
34
|
-
:mri_25 => Gem::Platform::RUBY,
|
35
|
-
:mri_26 => Gem::Platform::RUBY,
|
36
|
-
:mri_27 => Gem::Platform::RUBY,
|
37
|
-
:mri_30 => Gem::Platform::RUBY,
|
38
|
-
:mri_31 => Gem::Platform::RUBY,
|
39
|
-
:rbx => Gem::Platform::RUBY,
|
40
|
-
:truffleruby => Gem::Platform::RUBY,
|
41
|
-
:jruby => Gem::Platform::JAVA,
|
42
|
-
:jruby_18 => Gem::Platform::JAVA,
|
43
|
-
:jruby_19 => Gem::Platform::JAVA,
|
44
|
-
:mswin => Gem::Platform::MSWIN,
|
45
|
-
:mswin_18 => Gem::Platform::MSWIN,
|
46
|
-
:mswin_19 => Gem::Platform::MSWIN,
|
47
|
-
:mswin_20 => Gem::Platform::MSWIN,
|
48
|
-
:mswin_21 => Gem::Platform::MSWIN,
|
49
|
-
:mswin_22 => Gem::Platform::MSWIN,
|
50
|
-
:mswin_23 => Gem::Platform::MSWIN,
|
51
|
-
:mswin_24 => Gem::Platform::MSWIN,
|
52
|
-
:mswin_25 => Gem::Platform::MSWIN,
|
53
|
-
:mswin_26 => Gem::Platform::MSWIN,
|
54
|
-
:mswin_27 => Gem::Platform::MSWIN,
|
55
|
-
:mswin_30 => Gem::Platform::MSWIN,
|
56
|
-
:mswin_31 => Gem::Platform::MSWIN,
|
57
|
-
:mswin64 => Gem::Platform::MSWIN64,
|
58
|
-
:mswin64_19 => Gem::Platform::MSWIN64,
|
59
|
-
:mswin64_20 => Gem::Platform::MSWIN64,
|
60
|
-
:mswin64_21 => Gem::Platform::MSWIN64,
|
61
|
-
:mswin64_22 => Gem::Platform::MSWIN64,
|
62
|
-
:mswin64_23 => Gem::Platform::MSWIN64,
|
63
|
-
:mswin64_24 => Gem::Platform::MSWIN64,
|
64
|
-
:mswin64_25 => Gem::Platform::MSWIN64,
|
65
|
-
:mswin64_26 => Gem::Platform::MSWIN64,
|
66
|
-
:mswin64_27 => Gem::Platform::MSWIN64,
|
67
|
-
:mswin64_30 => Gem::Platform::MSWIN64,
|
68
|
-
:mswin64_31 => Gem::Platform::MSWIN64,
|
69
|
-
:mingw => Gem::Platform::MINGW,
|
70
|
-
:mingw_18 => Gem::Platform::MINGW,
|
71
|
-
:mingw_19 => Gem::Platform::MINGW,
|
72
|
-
:mingw_20 => Gem::Platform::MINGW,
|
73
|
-
:mingw_21 => Gem::Platform::MINGW,
|
74
|
-
:mingw_22 => Gem::Platform::MINGW,
|
75
|
-
:mingw_23 => Gem::Platform::MINGW,
|
76
|
-
:mingw_24 => Gem::Platform::MINGW,
|
77
|
-
:mingw_25 => Gem::Platform::MINGW,
|
78
|
-
:mingw_26 => Gem::Platform::MINGW,
|
79
|
-
:mingw_27 => Gem::Platform::MINGW,
|
80
|
-
:mingw_30 => Gem::Platform::MINGW,
|
81
|
-
:mingw_31 => Gem::Platform::MINGW,
|
82
|
-
:x64_mingw => Gem::Platform::X64_MINGW,
|
83
|
-
:x64_mingw_20 => Gem::Platform::X64_MINGW,
|
84
|
-
:x64_mingw_21 => Gem::Platform::X64_MINGW,
|
85
|
-
:x64_mingw_22 => Gem::Platform::X64_MINGW,
|
86
|
-
:x64_mingw_23 => Gem::Platform::X64_MINGW,
|
87
|
-
:x64_mingw_24 => Gem::Platform::X64_MINGW,
|
88
|
-
:x64_mingw_25 => Gem::Platform::X64_MINGW,
|
89
|
-
:x64_mingw_26 => Gem::Platform::X64_MINGW,
|
90
|
-
:x64_mingw_27 => Gem::Platform::X64_MINGW,
|
91
|
-
:x64_mingw_30 => Gem::Platform::X64_MINGW,
|
92
|
-
:x64_mingw_31 => Gem::Platform::X64_MINGW,
|
93
|
-
}.freeze
|
14
|
+
:ruby => [Gem::Platform::RUBY, ALL_RUBY_VERSIONS],
|
15
|
+
:mri => [Gem::Platform::RUBY, ALL_RUBY_VERSIONS],
|
16
|
+
:rbx => [Gem::Platform::RUBY],
|
17
|
+
:truffleruby => [Gem::Platform::RUBY],
|
18
|
+
:jruby => [Gem::Platform::JAVA, [18, 19]],
|
19
|
+
:windows => [Gem::Platform::WINDOWS, ALL_RUBY_VERSIONS],
|
20
|
+
:mswin => [Gem::Platform::MSWIN, ALL_RUBY_VERSIONS],
|
21
|
+
:mswin64 => [Gem::Platform::MSWIN64, ALL_RUBY_VERSIONS - [18]],
|
22
|
+
:mingw => [Gem::Platform::MINGW, ALL_RUBY_VERSIONS],
|
23
|
+
:x64_mingw => [Gem::Platform::X64_MINGW, ALL_RUBY_VERSIONS - [18, 19]],
|
24
|
+
}.each_with_object({}) do |(platform, spec), hash|
|
25
|
+
hash[platform] = spec[0]
|
26
|
+
spec[1]&.each {|version| hash[:"#{platform}_#{version}"] = spec[0] }
|
27
|
+
end.freeze
|
94
28
|
|
95
29
|
def initialize(name, version, options = {}, &blk)
|
96
30
|
type = options["type"] || :runtime
|
@@ -99,6 +33,7 @@ module Bundler
|
|
99
33
|
@autorequire = nil
|
100
34
|
@groups = Array(options["group"] || :default).map(&:to_sym)
|
101
35
|
@source = options["source"]
|
36
|
+
@path = options["path"]
|
102
37
|
@git = options["git"]
|
103
38
|
@github = options["github"]
|
104
39
|
@branch = options["branch"]
|
@@ -107,6 +42,7 @@ module Bundler
|
|
107
42
|
@env = options["env"]
|
108
43
|
@should_include = options.fetch("should_include", true)
|
109
44
|
@gemfile = options["gemfile"]
|
45
|
+
@force_ruby_platform = options["force_ruby_platform"] if options.key?("force_ruby_platform")
|
110
46
|
|
111
47
|
@autorequire = Array(options["require"] || []) if options.key?("require")
|
112
48
|
end
|
@@ -114,13 +50,14 @@ module Bundler
|
|
114
50
|
# Returns the platforms this dependency is valid for, in the same order as
|
115
51
|
# passed in the `valid_platforms` parameter
|
116
52
|
def gem_platforms(valid_platforms)
|
53
|
+
return [Gem::Platform::RUBY] if force_ruby_platform
|
117
54
|
return valid_platforms if @platforms.empty?
|
118
55
|
|
119
56
|
valid_platforms.select {|p| expanded_platforms.include?(GemHelpers.generic(p)) }
|
120
57
|
end
|
121
58
|
|
122
59
|
def expanded_platforms
|
123
|
-
@expanded_platforms ||= @platforms.map {|pl| PLATFORM_MAP[pl] }.compact.uniq
|
60
|
+
@expanded_platforms ||= @platforms.map {|pl| PLATFORM_MAP[pl] }.compact.flatten.uniq
|
124
61
|
end
|
125
62
|
|
126
63
|
def should_include?
|
@@ -148,7 +85,7 @@ module Bundler
|
|
148
85
|
def to_lock
|
149
86
|
out = super
|
150
87
|
out << "!" if source
|
151
|
-
out
|
88
|
+
out
|
152
89
|
end
|
153
90
|
|
154
91
|
def specific?
|
data/lib/bundler/digest.rb
CHANGED
@@ -43,7 +43,7 @@ module Bundler
|
|
43
43
|
f = (b ^ c ^ d)
|
44
44
|
k = 0xCA62C1D6
|
45
45
|
end
|
46
|
-
t = SHA1_MASK &
|
46
|
+
t = SHA1_MASK & rotate(a, 5) + f + e + k + w[i]
|
47
47
|
a, b, c, d, e = t, a, SHA1_MASK & rotate(b, 30), c, d # rubocop:disable Style/ParallelAssignment
|
48
48
|
end
|
49
49
|
mutated = [a, b, c, d, e]
|
data/lib/bundler/dsl.rb
CHANGED
@@ -16,7 +16,7 @@ module Bundler
|
|
16
16
|
VALID_PLATFORMS = Bundler::Dependency::PLATFORM_MAP.keys.freeze
|
17
17
|
|
18
18
|
VALID_KEYS = %w[group groups git path glob name branch ref tag require submodules
|
19
|
-
platform platforms type source install_if gemfile].freeze
|
19
|
+
platform platforms type source install_if gemfile force_ruby_platform].freeze
|
20
20
|
|
21
21
|
GITHUB_PULL_REQUEST_URL = %r{\Ahttps://github\.com/([A-Za-z0-9_\-\.]+/[A-Za-z0-9_\-\.]+)/pull/(\d+)\z}.freeze
|
22
22
|
|
@@ -46,7 +46,7 @@ module Bundler
|
|
46
46
|
@gemfile = expanded_gemfile_path
|
47
47
|
@gemfiles << expanded_gemfile_path
|
48
48
|
contents ||= Bundler.read_file(@gemfile.to_s)
|
49
|
-
instance_eval(contents.dup.tap{|x| x.untaint if RUBY_VERSION < "2.7" }, gemfile.to_s, 1)
|
49
|
+
instance_eval(contents.dup.tap {|x| x.untaint if RUBY_VERSION < "2.7" }, gemfile.to_s, 1)
|
50
50
|
rescue Exception => e # rubocop:disable Lint/RescueException
|
51
51
|
message = "There was an error " \
|
52
52
|
"#{e.is_a?(GemfileEvalError) ? "evaluating" : "parsing"} " \
|
@@ -67,7 +67,6 @@ module Bundler
|
|
67
67
|
|
68
68
|
gemspecs = Gem::Util.glob_files_in_dir("{,*}.gemspec", expanded_path).map {|g| Bundler.load_gemspec(g) }.compact
|
69
69
|
gemspecs.reject! {|s| s.name != name } if name
|
70
|
-
Index.sort_specs(gemspecs)
|
71
70
|
specs_by_name_and_version = gemspecs.group_by {|s| [s.name, s.version] }
|
72
71
|
|
73
72
|
case specs_by_name_and_version.size
|
@@ -124,19 +123,17 @@ module Bundler
|
|
124
123
|
raise GemfileError, "You cannot specify the same gem twice with different version requirements.\n" \
|
125
124
|
"You specified: #{current.name} (#{current.requirement}) and #{dep.name} (#{dep.requirement})" \
|
126
125
|
"#{update_prompt}"
|
126
|
+
elsif current.source != dep.source
|
127
|
+
return if dep.type == :development
|
128
|
+
raise GemfileError, "You cannot specify the same gem twice coming from different sources.\n" \
|
129
|
+
"You specified that #{dep.name} (#{dep.requirement}) should come from " \
|
130
|
+
"#{current.source || "an unspecified source"} and #{dep.source}\n"
|
127
131
|
else
|
128
132
|
Bundler.ui.warn "Your Gemfile lists the gem #{current.name} (#{current.requirement}) more than once.\n" \
|
129
133
|
"You should probably keep only one of them.\n" \
|
130
134
|
"Remove any duplicate entries and specify the gem only once.\n" \
|
131
135
|
"While it's not a problem now, it could cause errors if you change the version of one of them later."
|
132
136
|
end
|
133
|
-
|
134
|
-
if current.source != dep.source
|
135
|
-
return if dep.type == :development
|
136
|
-
raise GemfileError, "You cannot specify the same gem twice coming from different sources.\n" \
|
137
|
-
"You specified that #{dep.name} (#{dep.requirement}) should come from " \
|
138
|
-
"#{current.source || "an unspecified source"} and #{dep.source}\n"
|
139
|
-
end
|
140
137
|
end
|
141
138
|
end
|
142
139
|
|
@@ -280,8 +277,8 @@ module Bundler
|
|
280
277
|
if repo_name =~ GITHUB_PULL_REQUEST_URL
|
281
278
|
{
|
282
279
|
"git" => "https://github.com/#{$1}.git",
|
283
|
-
"branch" =>
|
284
|
-
"ref" =>
|
280
|
+
"branch" => nil,
|
281
|
+
"ref" => "refs/pull/#{$2}/head",
|
285
282
|
"tag" => nil,
|
286
283
|
}
|
287
284
|
else
|
@@ -327,7 +324,7 @@ module Bundler
|
|
327
324
|
if name.is_a?(Symbol)
|
328
325
|
raise GemfileError, %(You need to specify gem names as Strings. Use 'gem "#{name}"' instead)
|
329
326
|
end
|
330
|
-
if
|
327
|
+
if /\s/.match?(name)
|
331
328
|
raise GemfileError, %('#{name}' is not a valid gem name because it contains whitespace)
|
332
329
|
end
|
333
330
|
raise GemfileError, %(an empty gem name is not valid) if name.empty?
|
@@ -467,12 +464,12 @@ module Bundler
|
|
467
464
|
|
468
465
|
def multiple_global_source_warning
|
469
466
|
if Bundler.feature_flag.bundler_3_mode?
|
470
|
-
msg = "This Gemfile contains multiple
|
467
|
+
msg = "This Gemfile contains multiple global sources. " \
|
471
468
|
"Each source after the first must include a block to indicate which gems " \
|
472
469
|
"should come from that source"
|
473
470
|
raise GemfileEvalError, msg
|
474
471
|
else
|
475
|
-
Bundler::SharedHelpers.major_deprecation 2, "Your Gemfile contains multiple
|
472
|
+
Bundler::SharedHelpers.major_deprecation 2, "Your Gemfile contains multiple global sources. " \
|
476
473
|
"Using `source` more than once without a block is a security risk, and " \
|
477
474
|
"may result in installing unexpected gems. To resolve this warning, use " \
|
478
475
|
"a block to indicate which gems should come from the secondary source."
|
@@ -513,9 +510,7 @@ module Bundler
|
|
513
510
|
# be raised.
|
514
511
|
#
|
515
512
|
def contents
|
516
|
-
@contents ||=
|
517
|
-
dsl_path && File.exist?(dsl_path) && File.read(dsl_path)
|
518
|
-
end
|
513
|
+
@contents ||= dsl_path && File.exist?(dsl_path) && File.read(dsl_path)
|
519
514
|
end
|
520
515
|
|
521
516
|
# The message of the exception reports the content of podspec for the
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module Bundler
|
4
4
|
# used for Creating Specifications from the Gemcutter Endpoint
|
5
5
|
class EndpointSpecification < Gem::Specification
|
6
|
-
include
|
6
|
+
include MatchRemoteMetadata
|
7
7
|
|
8
8
|
attr_reader :name, :version, :platform, :checksum
|
9
9
|
attr_accessor :source, :remote, :dependencies
|
@@ -12,7 +12,7 @@ module Bundler
|
|
12
12
|
super()
|
13
13
|
@name = name
|
14
14
|
@version = Gem::Version.create version
|
15
|
-
@platform = platform
|
15
|
+
@platform = Gem::Platform.new(platform)
|
16
16
|
@spec_fetcher = spec_fetcher
|
17
17
|
@dependencies = dependencies.map {|dep, reqs| build_dependency(dep, reqs) }
|
18
18
|
|
@@ -22,18 +22,14 @@ module Bundler
|
|
22
22
|
parse_metadata(metadata)
|
23
23
|
end
|
24
24
|
|
25
|
-
def required_ruby_version
|
26
|
-
@required_ruby_version ||= _remote_specification.required_ruby_version
|
27
|
-
end
|
28
|
-
|
29
|
-
def required_rubygems_version
|
30
|
-
@required_rubygems_version ||= _remote_specification.required_rubygems_version
|
31
|
-
end
|
32
|
-
|
33
25
|
def fetch_platform
|
34
26
|
@platform
|
35
27
|
end
|
36
28
|
|
29
|
+
def identifier
|
30
|
+
@__identifier ||= [name, version, platform.to_s]
|
31
|
+
end
|
32
|
+
|
37
33
|
# needed for standalone, load required_paths from local gemspec
|
38
34
|
# after the gem is installed
|
39
35
|
def require_paths
|
data/lib/bundler/env.rb
CHANGED
data/lib/bundler/errors.rb
CHANGED
@@ -21,16 +21,7 @@ module Bundler
|
|
21
21
|
class InstallError < BundlerError; status_code(5); end
|
22
22
|
|
23
23
|
# Internal error, should be rescued
|
24
|
-
class
|
25
|
-
attr_reader :conflicts
|
26
|
-
|
27
|
-
def initialize(conflicts, msg = nil)
|
28
|
-
super(msg)
|
29
|
-
@conflicts = conflicts
|
30
|
-
end
|
31
|
-
|
32
|
-
status_code(6)
|
33
|
-
end
|
24
|
+
class SolveFailure < BundlerError; status_code(6); end
|
34
25
|
|
35
26
|
class GemNotFound < BundlerError; status_code(7); end
|
36
27
|
class InstallHookError < BundlerError; status_code(8); end
|
@@ -41,19 +32,20 @@ module Bundler
|
|
41
32
|
class GemspecError < BundlerError; status_code(14); end
|
42
33
|
class InvalidOption < BundlerError; status_code(15); end
|
43
34
|
class ProductionError < BundlerError; status_code(16); end
|
35
|
+
|
44
36
|
class HTTPError < BundlerError
|
45
37
|
status_code(17)
|
46
38
|
def filter_uri(uri)
|
47
39
|
URICredentialsFilter.credential_filtered_uri(uri)
|
48
40
|
end
|
49
41
|
end
|
42
|
+
|
50
43
|
class RubyVersionMismatch < BundlerError; status_code(18); end
|
51
44
|
class SecurityError < BundlerError; status_code(19); end
|
52
45
|
class LockfileError < BundlerError; status_code(20); end
|
53
46
|
class CyclicDependencyError < BundlerError; status_code(21); end
|
54
47
|
class GemfileLockNotFound < BundlerError; status_code(22); end
|
55
48
|
class PluginError < BundlerError; status_code(29); end
|
56
|
-
class SudoNotPermittedError < BundlerError; status_code(30); end
|
57
49
|
class ThreadCreationError < BundlerError; status_code(33); end
|
58
50
|
class APIResponseMismatchError < BundlerError; status_code(34); end
|
59
51
|
class APIResponseInvalidDependenciesError < BundlerError; status_code(35); end
|
@@ -79,10 +71,6 @@ module Bundler
|
|
79
71
|
case @permission_type
|
80
72
|
when :create
|
81
73
|
"executable permissions for all parent directories and write permissions for `#{parent_folder}`"
|
82
|
-
when :delete
|
83
|
-
permissions = "executable permissions for all parent directories and write permissions for `#{parent_folder}`"
|
84
|
-
permissions += ", and the same thing for all subdirectories inside #{@path}" if File.directory?(@path)
|
85
|
-
permissions
|
86
74
|
else
|
87
75
|
"#{@permission_type} permissions for that path"
|
88
76
|
end
|
@@ -172,4 +160,16 @@ module Bundler
|
|
172
160
|
|
173
161
|
status_code(32)
|
174
162
|
end
|
163
|
+
|
164
|
+
class DirectoryRemovalError < BundlerError
|
165
|
+
def initialize(orig_exception, msg)
|
166
|
+
full_message = "#{msg}.\n" \
|
167
|
+
"The underlying error was #{orig_exception.class}: #{orig_exception.message}, with backtrace:\n" \
|
168
|
+
" #{orig_exception.backtrace.join("\n ")}\n\n" \
|
169
|
+
"Bundler Error Backtrace:"
|
170
|
+
super(full_message)
|
171
|
+
end
|
172
|
+
|
173
|
+
status_code(36)
|
174
|
+
end
|
175
175
|
end
|
data/lib/bundler/feature_flag.rb
CHANGED
@@ -39,7 +39,6 @@ module Bundler
|
|
39
39
|
settings_flag(:setup_makes_kernel_gem_public) { !bundler_3_mode? }
|
40
40
|
settings_flag(:suppress_install_using_messages) { bundler_3_mode? }
|
41
41
|
settings_flag(:update_requires_all_flag) { bundler_4_mode? }
|
42
|
-
settings_flag(:use_gem_version_promoter_for_major_updates) { bundler_3_mode? }
|
43
42
|
|
44
43
|
settings_option(:default_cli_command) { bundler_3_mode? ? :cli_help : :install }
|
45
44
|
|
data/lib/bundler/fetcher/base.rb
CHANGED
@@ -19,14 +19,12 @@ module Bundler
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def fetch_uri
|
22
|
-
@fetch_uri ||=
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
remote_uri
|
29
|
-
end
|
22
|
+
@fetch_uri ||= if remote_uri.host == "rubygems.org"
|
23
|
+
uri = remote_uri.dup
|
24
|
+
uri.host = "index.rubygems.org"
|
25
|
+
uri
|
26
|
+
else
|
27
|
+
remote_uri
|
30
28
|
end
|
31
29
|
end
|
32
30
|
|
@@ -12,17 +12,15 @@ module Bundler
|
|
12
12
|
method = instance_method(method_name)
|
13
13
|
undef_method(method_name)
|
14
14
|
define_method(method_name) do |*args, &blk|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
nil
|
25
|
-
end
|
15
|
+
method.bind(self).call(*args, &blk)
|
16
|
+
rescue NetworkDownError, CompactIndexClient::Updater::MisMatchedChecksumError => e
|
17
|
+
raise HTTPError, e.message
|
18
|
+
rescue AuthenticationRequiredError
|
19
|
+
# Fail since we got a 401 from the server.
|
20
|
+
raise
|
21
|
+
rescue HTTPError => e
|
22
|
+
Bundler.ui.trace(e)
|
23
|
+
nil
|
26
24
|
end
|
27
25
|
end
|
28
26
|
|
@@ -55,7 +55,7 @@ module Bundler
|
|
55
55
|
gem_list = []
|
56
56
|
gem_names.each_slice(Source::Rubygems::API_REQUEST_SIZE) do |names|
|
57
57
|
marshalled_deps = downloader.fetch(dependency_api_uri(names)).body
|
58
|
-
gem_list.concat(Bundler.
|
58
|
+
gem_list.concat(Bundler.safe_load_marshal(marshalled_deps))
|
59
59
|
end
|
60
60
|
gem_list
|
61
61
|
end
|
@@ -61,14 +61,11 @@ module Bundler
|
|
61
61
|
req.basic_auth(user, password)
|
62
62
|
end
|
63
63
|
connection.request(uri, req)
|
64
|
-
rescue NoMethodError => e
|
65
|
-
raise unless ["undefined method", "use_ssl="].all? {|snippet| e.message.include? snippet }
|
66
|
-
raise LoadError.new("cannot load such file -- openssl")
|
67
64
|
rescue OpenSSL::SSL::SSLError
|
68
65
|
raise CertificateFailureError.new(uri)
|
69
66
|
rescue *HTTP_ERRORS => e
|
70
67
|
Bundler.ui.trace e
|
71
|
-
if e.is_a?(SocketError) || e.message
|
68
|
+
if e.is_a?(SocketError) || e.message.to_s.include?("host down:")
|
72
69
|
raise NetworkDownError, "Could not reach host #{uri.host}. Check your network " \
|
73
70
|
"connection and try again."
|
74
71
|
else
|
@@ -80,7 +77,7 @@ module Bundler
|
|
80
77
|
private
|
81
78
|
|
82
79
|
def validate_uri_scheme!(uri)
|
83
|
-
return if
|
80
|
+
return if /\Ahttps?\z/.match?(uri.scheme)
|
84
81
|
raise InvalidOption,
|
85
82
|
"The request uri `#{uri}` has an invalid scheme (`#{uri.scheme}`). " \
|
86
83
|
"Did you mean `http` or `https`?"
|
data/lib/bundler/fetcher.rb
CHANGED
@@ -20,6 +20,7 @@ module Bundler
|
|
20
20
|
class TooManyRequestsError < HTTPError; end
|
21
21
|
# This error is raised if the API returns a 413 (only printed in verbose)
|
22
22
|
class FallbackError < HTTPError; end
|
23
|
+
|
23
24
|
# This is the error raised if OpenSSL fails the cert verification
|
24
25
|
class CertificateFailureError < HTTPError
|
25
26
|
def initialize(remote_uri)
|
@@ -28,20 +29,18 @@ module Bundler
|
|
28
29
|
" is a chance you are experiencing a man-in-the-middle attack, but" \
|
29
30
|
" most likely your system doesn't have the CA certificates needed" \
|
30
31
|
" for verification. For information about OpenSSL certificates, see" \
|
31
|
-
" https://railsapps.github.io/openssl-certificate-verify-failed.html."
|
32
|
-
" To connect without using SSL, edit your Gemfile" \
|
33
|
-
" sources and change 'https' to 'http'."
|
32
|
+
" https://railsapps.github.io/openssl-certificate-verify-failed.html."
|
34
33
|
end
|
35
34
|
end
|
35
|
+
|
36
36
|
# This is the error raised when a source is HTTPS and OpenSSL didn't load
|
37
37
|
class SSLError < HTTPError
|
38
38
|
def initialize(msg = nil)
|
39
39
|
super msg || "Could not load OpenSSL.\n" \
|
40
|
-
"You must recompile Ruby with OpenSSL support
|
41
|
-
"Gemfile from 'https' to 'http'. Instructions for compiling with OpenSSL " \
|
42
|
-
"using RVM are available at rvm.io/packages/openssl."
|
40
|
+
"You must recompile Ruby with OpenSSL support."
|
43
41
|
end
|
44
42
|
end
|
43
|
+
|
45
44
|
# This error is raised if HTTP authentication is required, but not provided.
|
46
45
|
class AuthenticationRequiredError < HTTPError
|
47
46
|
def initialize(remote_uri)
|
@@ -52,6 +51,7 @@ module Bundler
|
|
52
51
|
"or by storing the credentials in the `#{Settings.key_for(remote_uri)}` environment variable"
|
53
52
|
end
|
54
53
|
end
|
54
|
+
|
55
55
|
# This error is raised if HTTP authentication is provided, but incorrect.
|
56
56
|
class BadAuthenticationError < HTTPError
|
57
57
|
def initialize(remote_uri)
|
@@ -236,8 +236,8 @@ module Bundler
|
|
236
236
|
def connection
|
237
237
|
@connection ||= begin
|
238
238
|
needs_ssl = remote_uri.scheme == "https" ||
|
239
|
-
|
240
|
-
|
239
|
+
Bundler.settings[:ssl_verify_mode] ||
|
240
|
+
Bundler.settings[:ssl_client_cert]
|
241
241
|
raise SSLError if needs_ssl && !defined?(OpenSSL::SSL)
|
242
242
|
|
243
243
|
con = PersistentHTTP.new :name => "bundler", :proxy => :ENV
|
@@ -252,8 +252,8 @@ module Bundler
|
|
252
252
|
end
|
253
253
|
|
254
254
|
ssl_client_cert = Bundler.settings[:ssl_client_cert] ||
|
255
|
-
|
256
|
-
|
255
|
+
(Gem.configuration.ssl_client_cert if
|
256
|
+
Gem.configuration.respond_to?(:ssl_client_cert))
|
257
257
|
if ssl_client_cert
|
258
258
|
pem = File.read(ssl_client_cert)
|
259
259
|
con.cert = OpenSSL::X509::Certificate.new(pem)
|
@@ -284,8 +284,8 @@ module Bundler
|
|
284
284
|
def bundler_cert_store
|
285
285
|
store = OpenSSL::X509::Store.new
|
286
286
|
ssl_ca_cert = Bundler.settings[:ssl_ca_cert] ||
|
287
|
-
|
288
|
-
|
287
|
+
(Gem.configuration.ssl_ca_cert if
|
288
|
+
Gem.configuration.respond_to?(:ssl_ca_cert))
|
289
289
|
if ssl_ca_cert
|
290
290
|
if File.directory? ssl_ca_cert
|
291
291
|
store.add_path ssl_ca_cert
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Bundler
|
4
|
+
module ForcePlatform
|
5
|
+
private
|
6
|
+
|
7
|
+
# The `:force_ruby_platform` value used by dependencies for resolution, and
|
8
|
+
# by locked specifications for materialization is `false` by default, except
|
9
|
+
# for TruffleRuby. TruffleRuby generally needs to force the RUBY platform
|
10
|
+
# variant unless the name is explicitly allowlisted.
|
11
|
+
|
12
|
+
def default_force_ruby_platform
|
13
|
+
return false unless RUBY_ENGINE == "truffleruby"
|
14
|
+
|
15
|
+
!Gem::Platform::REUSE_AS_BINARY_ON_TRUFFLERUBY.include?(name)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -29,13 +29,13 @@ module Bundler
|
|
29
29
|
Bundler.ui.error error.message
|
30
30
|
Bundler.ui.trace error.orig_exception
|
31
31
|
when BundlerError
|
32
|
-
Bundler.ui.
|
33
|
-
|
32
|
+
if Bundler.ui.debug?
|
33
|
+
Bundler.ui.trace error
|
34
|
+
else
|
35
|
+
Bundler.ui.error error.message, :wrap => true
|
36
|
+
end
|
34
37
|
when Thor::Error
|
35
38
|
Bundler.ui.error error.message
|
36
|
-
when LoadError
|
37
|
-
raise error unless error.message =~ /cannot load such file -- openssl|openssl.so|libcrypto.so/
|
38
|
-
Bundler.ui.error "\nCould not load OpenSSL. #{error.class}: #{error}\n#{error.backtrace.join("\n ")}"
|
39
39
|
when Interrupt
|
40
40
|
Bundler.ui.error "\nQuitting..."
|
41
41
|
Bundler.ui.trace error
|
@@ -65,8 +65,7 @@ module Bundler
|
|
65
65
|
--- ERROR REPORT TEMPLATE -------------------------------------------------------
|
66
66
|
|
67
67
|
```
|
68
|
-
#{e
|
69
|
-
#{e.backtrace && e.backtrace.join("\n ").chomp}
|
68
|
+
#{exception_message(e)}
|
70
69
|
```
|
71
70
|
|
72
71
|
#{Bundler::Env.report}
|
@@ -85,6 +84,21 @@ module Bundler
|
|
85
84
|
EOS
|
86
85
|
end
|
87
86
|
|
87
|
+
def exception_message(error)
|
88
|
+
message = serialized_exception_for(error)
|
89
|
+
cause = error.cause
|
90
|
+
return message unless cause
|
91
|
+
|
92
|
+
message + serialized_exception_for(cause)
|
93
|
+
end
|
94
|
+
|
95
|
+
def serialized_exception_for(e)
|
96
|
+
<<-EOS.gsub(/^ {8}/, "")
|
97
|
+
#{e.class}: #{e.message}
|
98
|
+
#{e.backtrace && e.backtrace.join("\n ").chomp}
|
99
|
+
EOS
|
100
|
+
end
|
101
|
+
|
88
102
|
def issues_url(exception)
|
89
103
|
message = exception.message.lines.first.tr(":", " ").chomp
|
90
104
|
message = message.split("-").first if exception.is_a?(Errno)
|
data/lib/bundler/gem_helpers.rb
CHANGED
@@ -10,6 +10,7 @@ module Bundler
|
|
10
10
|
[Gem::Platform.new("universal-mingw32"), Gem::Platform.new("universal-mingw32")],
|
11
11
|
[Gem::Platform.new("x64-mingw32"), Gem::Platform.new("x64-mingw32")],
|
12
12
|
[Gem::Platform.new("x86_64-mingw32"), Gem::Platform.new("x64-mingw32")],
|
13
|
+
[Gem::Platform.new("x64-mingw-ucrt"), Gem::Platform.new("x64-mingw-ucrt")],
|
13
14
|
[Gem::Platform.new("mingw32"), Gem::Platform.new("x86-mingw32")],
|
14
15
|
].freeze
|
15
16
|
|
@@ -42,15 +43,21 @@ module Bundler
|
|
42
43
|
|
43
44
|
def select_best_platform_match(specs, platform)
|
44
45
|
matching = specs.select {|spec| spec.match_platform(platform) }
|
46
|
+
|
47
|
+
sort_best_platform_match(matching, platform)
|
48
|
+
end
|
49
|
+
module_function :select_best_platform_match
|
50
|
+
|
51
|
+
def sort_best_platform_match(matching, platform)
|
45
52
|
exact = matching.select {|spec| spec.platform == platform }
|
46
53
|
return exact if exact.any?
|
47
54
|
|
48
55
|
sorted_matching = matching.sort_by {|spec| platform_specificity_match(spec.platform, platform) }
|
49
56
|
exemplary_spec = sorted_matching.first
|
50
57
|
|
51
|
-
sorted_matching.take_while{|spec| same_specificity(platform, spec, exemplary_spec) && same_deps(spec, exemplary_spec) }
|
58
|
+
sorted_matching.take_while {|spec| same_specificity(platform, spec, exemplary_spec) && same_deps(spec, exemplary_spec) }
|
52
59
|
end
|
53
|
-
module_function :
|
60
|
+
module_function :sort_best_platform_match
|
54
61
|
|
55
62
|
class PlatformMatch
|
56
63
|
def self.specificity_score(spec_platform, user_platform)
|