bundler 2.1.1 → 2.2.0.rc.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1543 -1418
- data/README.md +6 -8
- data/bundler.gemspec +3 -3
- data/exe/bundle +3 -0
- data/lib/bundler.rb +21 -7
- data/lib/bundler/build_metadata.rb +3 -11
- data/lib/bundler/cli.rb +54 -20
- data/lib/bundler/cli/add.rb +1 -1
- data/lib/bundler/cli/cache.rb +1 -7
- data/lib/bundler/cli/clean.rb +1 -1
- data/lib/bundler/cli/common.rb +14 -0
- data/lib/bundler/cli/console.rb +1 -1
- data/lib/bundler/cli/doctor.rb +1 -1
- data/lib/bundler/cli/exec.rb +1 -1
- data/lib/bundler/cli/fund.rb +36 -0
- data/lib/bundler/cli/gem.rb +84 -11
- data/lib/bundler/cli/info.rb +15 -4
- data/lib/bundler/cli/init.rb +2 -2
- data/lib/bundler/cli/inject.rb +1 -1
- data/lib/bundler/cli/install.rb +12 -18
- data/lib/bundler/cli/issue.rb +2 -2
- data/lib/bundler/cli/list.rb +12 -10
- data/lib/bundler/cli/outdated.rb +89 -66
- data/lib/bundler/cli/plugin.rb +10 -0
- data/lib/bundler/cli/pristine.rb +5 -0
- data/lib/bundler/cli/show.rb +1 -1
- data/lib/bundler/cli/update.rb +2 -0
- data/lib/bundler/compact_index_client.rb +1 -1
- data/lib/bundler/compact_index_client/cache.rb +1 -1
- data/lib/bundler/definition.rb +51 -60
- data/lib/bundler/dep_proxy.rb +1 -1
- data/lib/bundler/dependency.rb +0 -9
- data/lib/bundler/dsl.rb +5 -9
- data/lib/bundler/endpoint_specification.rb +1 -1
- data/lib/bundler/environment_preserver.rb +26 -2
- data/lib/bundler/errors.rb +1 -0
- data/lib/bundler/feature_flag.rb +0 -2
- data/lib/bundler/fetcher.rb +4 -3
- data/lib/bundler/fetcher/base.rb +1 -1
- data/lib/bundler/fetcher/compact_index.rb +1 -1
- data/lib/bundler/fetcher/downloader.rb +1 -1
- data/lib/bundler/fetcher/index.rb +1 -1
- data/lib/bundler/friendly_errors.rb +7 -13
- data/lib/bundler/gem_helper.rb +33 -19
- data/lib/bundler/gem_helpers.rb +6 -1
- data/lib/bundler/gem_version_promoter.rb +2 -2
- data/lib/bundler/graph.rb +1 -1
- data/lib/bundler/index.rb +1 -1
- data/lib/bundler/injector.rb +15 -4
- data/lib/bundler/inline.rb +2 -2
- data/lib/bundler/installer.rb +30 -29
- data/lib/bundler/installer/gem_installer.rb +3 -3
- data/lib/bundler/installer/parallel_installer.rb +10 -10
- data/lib/bundler/installer/standalone.rb +2 -2
- data/lib/bundler/lazy_specification.rb +19 -6
- data/lib/bundler/lockfile_generator.rb +1 -1
- data/lib/bundler/lockfile_parser.rb +1 -1
- data/lib/bundler/mirror.rb +2 -2
- data/lib/bundler/plugin.rb +30 -5
- data/lib/bundler/plugin/index.rb +10 -1
- data/lib/bundler/plugin/installer.rb +1 -1
- data/lib/bundler/plugin/installer/rubygems.rb +1 -1
- data/lib/bundler/plugin/source_list.rb +1 -1
- data/lib/bundler/psyched_yaml.rb +0 -15
- data/lib/bundler/remote_specification.rb +5 -2
- data/lib/bundler/resolver.rb +32 -9
- data/lib/bundler/resolver/spec_group.rb +27 -6
- data/lib/bundler/retry.rb +1 -1
- data/lib/bundler/ruby_version.rb +1 -1
- data/lib/bundler/rubygems_ext.rb +53 -9
- data/lib/bundler/rubygems_gem_installer.rb +3 -9
- data/lib/bundler/rubygems_integration.rb +23 -54
- data/lib/bundler/runtime.rb +4 -14
- data/lib/bundler/settings.rb +49 -45
- data/lib/bundler/shared_helpers.rb +2 -2
- data/lib/bundler/similarity_detector.rb +1 -1
- data/lib/bundler/source.rb +1 -1
- data/lib/bundler/source/git.rb +5 -5
- data/lib/bundler/source/git/git_proxy.rb +56 -59
- data/lib/bundler/source/path.rb +7 -3
- data/lib/bundler/source/path/installer.rb +8 -10
- data/lib/bundler/source/rubygems.rb +13 -16
- data/lib/bundler/source/rubygems/remote.rb +1 -1
- data/lib/bundler/source_list.rb +2 -2
- data/lib/bundler/spec_set.rb +1 -1
- data/lib/bundler/stub_specification.rb +17 -5
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
- data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
- data/lib/bundler/templates/newgem/README.md.tt +1 -1
- data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
- data/lib/bundler/templates/newgem/bin/console.tt +1 -0
- data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
- data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
- data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -6
- data/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
- data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
- data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
- data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
- data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
- data/lib/bundler/ui/shell.rb +5 -5
- data/lib/bundler/uri_credentials_filter.rb +1 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +79 -212
- data/lib/bundler/vendor/thor/lib/thor.rb +0 -7
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
- data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/vendored_persistent.rb +0 -7
- data/lib/bundler/version.rb +1 -1
- data/lib/bundler/worker.rb +1 -1
- data/lib/bundler/yaml_serializer.rb +1 -1
- data/man/bundle-add.1 +1 -1
- data/man/{bundle-add.ronn → bundle-add.1.ronn} +0 -0
- data/man/bundle-binstubs.1 +5 -3
- data/man/{bundle-binstubs.ronn → bundle-binstubs.1.ronn} +2 -4
- data/man/bundle-cache.1 +1 -1
- data/man/{bundle-cache.ronn → bundle-cache.1.ronn} +0 -0
- data/man/bundle-check.1 +1 -1
- data/man/{bundle-check.ronn → bundle-check.1.ronn} +0 -0
- data/man/bundle-clean.1 +1 -1
- data/man/{bundle-clean.ronn → bundle-clean.1.ronn} +0 -0
- data/man/bundle-config.1 +16 -22
- data/man/{bundle-config.ronn → bundle-config.1.ronn} +19 -22
- data/man/bundle-doctor.1 +1 -1
- data/man/{bundle-doctor.ronn → bundle-doctor.1.ronn} +0 -0
- data/man/bundle-exec.1 +1 -1
- data/man/{bundle-exec.ronn → bundle-exec.1.ronn} +0 -0
- data/man/bundle-gem.1 +25 -3
- data/man/{bundle-gem.ronn → bundle-gem.1.ronn} +30 -7
- data/man/bundle-info.1 +1 -1
- data/man/{bundle-info.ronn → bundle-info.1.ronn} +0 -0
- data/man/bundle-init.1 +1 -1
- data/man/{bundle-init.ronn → bundle-init.1.ronn} +0 -0
- data/man/bundle-inject.1 +1 -1
- data/man/{bundle-inject.ronn → bundle-inject.1.ronn} +0 -0
- data/man/bundle-install.1 +29 -2
- data/man/{bundle-install.ronn → bundle-install.1.ronn} +24 -2
- data/man/bundle-list.1 +7 -7
- data/man/{bundle-list.ronn → bundle-list.1.ronn} +6 -6
- data/man/bundle-lock.1 +1 -1
- data/man/{bundle-lock.ronn → bundle-lock.1.ronn} +0 -0
- data/man/bundle-open.1 +1 -1
- data/man/{bundle-open.ronn → bundle-open.1.ronn} +0 -0
- data/man/bundle-outdated.1 +1 -1
- data/man/{bundle-outdated.ronn → bundle-outdated.1.ronn} +0 -0
- data/man/bundle-platform.1 +1 -1
- data/man/{bundle-platform.ronn → bundle-platform.1.ronn} +0 -0
- data/man/bundle-pristine.1 +1 -1
- data/man/{bundle-pristine.ronn → bundle-pristine.1.ronn} +0 -0
- data/man/bundle-remove.1 +1 -1
- data/man/{bundle-remove.ronn → bundle-remove.1.ronn} +0 -0
- data/man/bundle-show.1 +1 -1
- data/man/{bundle-show.ronn → bundle-show.1.ronn} +0 -0
- data/man/bundle-update.1 +1 -1
- data/man/{bundle-update.ronn → bundle-update.1.ronn} +0 -0
- data/man/bundle-viz.1 +1 -1
- data/man/{bundle-viz.ronn → bundle-viz.1.ronn} +0 -0
- data/man/bundle.1 +1 -1
- data/man/{bundle.ronn → bundle.1.ronn} +0 -0
- data/man/gemfile.5 +4 -4
- data/man/gemfile.5.ronn +4 -4
- metadata +39 -58
- data/man/bundle-add.1.txt +0 -58
- data/man/bundle-binstubs.1.txt +0 -48
- data/man/bundle-cache.1.txt +0 -78
- data/man/bundle-check.1.txt +0 -33
- data/man/bundle-clean.1.txt +0 -26
- data/man/bundle-config.1.txt +0 -528
- data/man/bundle-doctor.1.txt +0 -44
- data/man/bundle-exec.1.txt +0 -178
- data/man/bundle-gem.1.txt +0 -91
- data/man/bundle-info.1.txt +0 -21
- data/man/bundle-init.1.txt +0 -34
- data/man/bundle-inject.1.txt +0 -32
- data/man/bundle-install.1.txt +0 -401
- data/man/bundle-list.1.txt +0 -43
- data/man/bundle-lock.1.txt +0 -93
- data/man/bundle-open.1.txt +0 -29
- data/man/bundle-outdated.1.txt +0 -131
- data/man/bundle-platform.1.txt +0 -57
- data/man/bundle-pristine.1.txt +0 -44
- data/man/bundle-remove.1.txt +0 -34
- data/man/bundle-show.1.txt +0 -27
- data/man/bundle-update.1.txt +0 -390
- data/man/bundle-viz.1.txt +0 -39
- data/man/bundle.1.txt +0 -116
- data/man/gemfile.5.txt +0 -649
- data/man/index.txt +0 -25
@@ -194,7 +194,7 @@ module Bundler
|
|
194
194
|
return @md5_available if defined?(@md5_available)
|
195
195
|
@md5_available = begin
|
196
196
|
require "openssl"
|
197
|
-
OpenSSL::Digest
|
197
|
+
OpenSSL::Digest.digest("MD5", "")
|
198
198
|
true
|
199
199
|
rescue LoadError
|
200
200
|
true
|
@@ -212,7 +212,7 @@ module Bundler
|
|
212
212
|
filesystem_access(gemfile_path) {|g| File.open(g, "w") {|file| file.puts contents } }
|
213
213
|
end
|
214
214
|
|
215
|
-
|
215
|
+
private
|
216
216
|
|
217
217
|
def validate_bundle_path
|
218
218
|
path_separator = Bundler.rubygems.path_separator
|
data/lib/bundler/source.rb
CHANGED
data/lib/bundler/source/git.rb
CHANGED
@@ -230,7 +230,11 @@ module Bundler
|
|
230
230
|
@allow_remote || @allow_cached
|
231
231
|
end
|
232
232
|
|
233
|
-
|
233
|
+
def local?
|
234
|
+
@local
|
235
|
+
end
|
236
|
+
|
237
|
+
private
|
234
238
|
|
235
239
|
def serialize_gemspecs_in(destination)
|
236
240
|
destination = destination.expand_path(Bundler.root) if destination.relative?
|
@@ -256,10 +260,6 @@ module Bundler
|
|
256
260
|
cached_revision && super
|
257
261
|
end
|
258
262
|
|
259
|
-
def local?
|
260
|
-
@local
|
261
|
-
end
|
262
|
-
|
263
263
|
def requires_checkout?
|
264
264
|
allow_git_ops? && !local? && !cached_revision_checked_out?
|
265
265
|
end
|
@@ -18,7 +18,7 @@ module Bundler
|
|
18
18
|
def initialize(command)
|
19
19
|
msg = String.new
|
20
20
|
msg << "Bundler is trying to run a `git #{command}` at runtime. You probably need to run `bundle install`. However, "
|
21
|
-
msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/
|
21
|
+
msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md "
|
22
22
|
msg << "with steps to reproduce as well as the following\n\nCALLER: #{caller.join("\n")}"
|
23
23
|
super msg
|
24
24
|
end
|
@@ -27,21 +27,21 @@ module Bundler
|
|
27
27
|
class GitCommandError < GitError
|
28
28
|
attr_reader :command
|
29
29
|
|
30
|
-
def initialize(command, path
|
30
|
+
def initialize(command, path, destination_path, extra_info = nil)
|
31
31
|
@command = command
|
32
32
|
|
33
33
|
msg = String.new
|
34
|
-
msg << "Git error: command `git #{command}` in directory #{
|
34
|
+
msg << "Git error: command `git #{command}` in directory #{destination_path} has failed."
|
35
35
|
msg << "\n#{extra_info}" if extra_info
|
36
|
-
msg << "\nIf this error persists you could try removing the cache directory '#{path}'" if path
|
36
|
+
msg << "\nIf this error persists you could try removing the cache directory '#{path}'" if path.exist?
|
37
37
|
super msg
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
class MissingGitRevisionError < GitCommandError
|
42
|
-
def initialize(command, path, ref, repo)
|
42
|
+
def initialize(command, path, destination_path, ref, repo)
|
43
43
|
msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?"
|
44
|
-
super command, path, msg
|
44
|
+
super command, path, destination_path, msg
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
@@ -62,26 +62,18 @@ module Bundler
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def revision
|
65
|
-
|
66
|
-
|
67
|
-
begin
|
68
|
-
@revision ||= find_local_revision
|
69
|
-
rescue GitCommandError => e
|
70
|
-
raise MissingGitRevisionError.new(e.command, path, ref, URICredentialsFilter.credential_filtered_uri(uri))
|
71
|
-
end
|
72
|
-
|
73
|
-
@revision
|
65
|
+
@revision ||= find_local_revision
|
74
66
|
end
|
75
67
|
|
76
68
|
def branch
|
77
|
-
@branch ||=
|
78
|
-
git("rev-parse --abbrev-ref HEAD").strip
|
69
|
+
@branch ||= allowed_with_path do
|
70
|
+
git("rev-parse --abbrev-ref HEAD", :dir => path).strip
|
79
71
|
end
|
80
72
|
end
|
81
73
|
|
82
74
|
def contains?(commit)
|
83
|
-
|
84
|
-
result, status = git_null("branch --contains #{commit}")
|
75
|
+
allowed_with_path do
|
76
|
+
result, status = git_null("branch --contains #{commit}", :dir => path)
|
85
77
|
status.success? && result =~ /^\* (.*)$/
|
86
78
|
end
|
87
79
|
end
|
@@ -108,8 +100,8 @@ module Bundler
|
|
108
100
|
return unless extra_ref
|
109
101
|
end
|
110
102
|
|
111
|
-
|
112
|
-
git_retry %(fetch --force --quiet --tags #{uri_escaped_with_configured_credentials} "refs/heads/*:refs/heads/*" #{extra_ref})
|
103
|
+
with_path do
|
104
|
+
git_retry %(fetch --force --quiet --tags #{uri_escaped_with_configured_credentials} "refs/heads/*:refs/heads/*" #{extra_ref}), :dir => path
|
113
105
|
end
|
114
106
|
end
|
115
107
|
|
@@ -133,58 +125,56 @@ module Bundler
|
|
133
125
|
end
|
134
126
|
end
|
135
127
|
# method 2
|
136
|
-
|
137
|
-
git_retry %(fetch --force --quiet --tags "#{path}")
|
128
|
+
git_retry %(fetch --force --quiet --tags "#{path}"), :dir => destination
|
138
129
|
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
130
|
+
begin
|
131
|
+
git "reset --hard #{@revision}", :dir => destination
|
132
|
+
rescue GitCommandError => e
|
133
|
+
raise MissingGitRevisionError.new(e.command, path, destination, @revision, URICredentialsFilter.credential_filtered_uri(uri))
|
134
|
+
end
|
144
135
|
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
136
|
+
if submodules
|
137
|
+
git_retry "submodule update --init --recursive", :dir => destination
|
138
|
+
elsif Gem::Version.create(version) >= Gem::Version.create("2.9.0")
|
139
|
+
inner_command = "git -C $toplevel submodule deinit --force $sm_path"
|
140
|
+
inner_command = inner_command.gsub("$") { '\$' } unless Bundler::WINDOWS
|
141
|
+
git_retry "submodule foreach --quiet \"#{inner_command}\"", :dir => destination
|
150
142
|
end
|
151
143
|
end
|
152
144
|
|
153
|
-
|
145
|
+
private
|
154
146
|
|
155
|
-
def git_null(command)
|
156
|
-
|
157
|
-
raise GitNotAllowedError.new(command_with_no_credentials) unless allow?
|
147
|
+
def git_null(command, dir: SharedHelpers.pwd)
|
148
|
+
check_allowed(command)
|
158
149
|
|
159
150
|
out, status = SharedHelpers.with_clean_git_env do
|
160
|
-
capture_and_ignore_stderr("git #{command}")
|
151
|
+
capture_and_ignore_stderr("git #{command}", :chdir => dir.to_s)
|
161
152
|
end
|
162
153
|
|
163
154
|
[URICredentialsFilter.credential_filtered_string(out, uri), status]
|
164
155
|
end
|
165
156
|
|
166
|
-
def git_retry(command)
|
157
|
+
def git_retry(command, dir: SharedHelpers.pwd)
|
167
158
|
Bundler::Retry.new("`git #{URICredentialsFilter.credential_filtered_string(command, uri)}`", GitNotAllowedError).attempts do
|
168
|
-
git(command)
|
159
|
+
git(command, :dir => dir)
|
169
160
|
end
|
170
161
|
end
|
171
162
|
|
172
|
-
def git(command,
|
173
|
-
command_with_no_credentials =
|
174
|
-
raise GitNotAllowedError.new(command_with_no_credentials) unless allow?
|
163
|
+
def git(command, dir: SharedHelpers.pwd)
|
164
|
+
command_with_no_credentials = check_allowed(command)
|
175
165
|
|
176
166
|
out, status = SharedHelpers.with_clean_git_env do
|
177
|
-
capture_and_filter_stderr(uri, "git #{command}")
|
167
|
+
capture_and_filter_stderr(uri, "git #{command}", :chdir => dir.to_s)
|
178
168
|
end
|
179
169
|
|
180
|
-
|
181
|
-
|
182
|
-
|
170
|
+
raise GitCommandError.new(command_with_no_credentials, path, dir) unless status.success?
|
171
|
+
|
172
|
+
URICredentialsFilter.credential_filtered_string(out, uri)
|
183
173
|
end
|
184
174
|
|
185
175
|
def has_revision_cached?
|
186
176
|
return unless @revision
|
187
|
-
|
177
|
+
with_path { git("cat-file -e #{@revision}", :dir => path) }
|
188
178
|
true
|
189
179
|
rescue GitError
|
190
180
|
false
|
@@ -195,9 +185,11 @@ module Bundler
|
|
195
185
|
end
|
196
186
|
|
197
187
|
def find_local_revision
|
198
|
-
|
199
|
-
git("rev-parse --verify #{Shellwords.shellescape(ref)}",
|
188
|
+
allowed_with_path do
|
189
|
+
git("rev-parse --verify #{Shellwords.shellescape(ref)}", :dir => path).strip
|
200
190
|
end
|
191
|
+
rescue GitCommandError => e
|
192
|
+
raise MissingGitRevisionError.new(e.command, path, path, ref, URICredentialsFilter.credential_filtered_uri(uri))
|
201
193
|
end
|
202
194
|
|
203
195
|
# Escape the URI for git commands
|
@@ -230,27 +222,32 @@ module Bundler
|
|
230
222
|
@git ? @git.allow_git_ops? : true
|
231
223
|
end
|
232
224
|
|
233
|
-
def
|
225
|
+
def with_path(&blk)
|
234
226
|
checkout unless path.exist?
|
235
|
-
|
236
|
-
SharedHelpers.chdir(path, &blk)
|
227
|
+
blk.call
|
237
228
|
end
|
238
229
|
|
239
|
-
def
|
240
|
-
return
|
230
|
+
def allowed_with_path
|
231
|
+
return with_path { yield } if allow?
|
241
232
|
raise GitError, "The git source #{uri} is not yet checked out. Please run `bundle install` before trying to start your application"
|
242
233
|
end
|
243
234
|
|
244
|
-
def
|
235
|
+
def check_allowed(command)
|
236
|
+
command_with_no_credentials = URICredentialsFilter.credential_filtered_string(command, uri)
|
237
|
+
raise GitNotAllowedError.new(command_with_no_credentials) unless allow?
|
238
|
+
command_with_no_credentials
|
239
|
+
end
|
240
|
+
|
241
|
+
def capture_and_filter_stderr(uri, cmd, chdir: SharedHelpers.pwd)
|
245
242
|
require "open3"
|
246
|
-
return_value, captured_err, status = Open3.capture3(cmd)
|
243
|
+
return_value, captured_err, status = Open3.capture3(cmd, :chdir => chdir)
|
247
244
|
Bundler.ui.warn URICredentialsFilter.credential_filtered_string(captured_err, uri) if uri && !captured_err.empty?
|
248
245
|
[return_value, status]
|
249
246
|
end
|
250
247
|
|
251
|
-
def capture_and_ignore_stderr(cmd)
|
248
|
+
def capture_and_ignore_stderr(cmd, chdir: SharedHelpers.pwd)
|
252
249
|
require "open3"
|
253
|
-
return_value, _, status = Open3.capture3(cmd)
|
250
|
+
return_value, _, status = Open3.capture3(cmd, :chdir => chdir)
|
254
251
|
[return_value, status]
|
255
252
|
end
|
256
253
|
end
|
data/lib/bundler/source/path.rb
CHANGED
@@ -125,14 +125,18 @@ module Bundler
|
|
125
125
|
@expanded_original_path ||= expand(original_path)
|
126
126
|
end
|
127
127
|
|
128
|
-
|
128
|
+
private
|
129
129
|
|
130
130
|
def expanded_path
|
131
131
|
@expanded_path ||= expand(path)
|
132
132
|
end
|
133
133
|
|
134
134
|
def expand(somepath)
|
135
|
-
|
135
|
+
if Bundler.current_ruby.jruby? # TODO: Unify when https://github.com/rubygems/bundler/issues/7598 fixed upstream and all supported jrubies include the fix
|
136
|
+
somepath.expand_path(root_path).expand_path
|
137
|
+
else
|
138
|
+
somepath.expand_path(root_path)
|
139
|
+
end
|
136
140
|
rescue ArgumentError => e
|
137
141
|
Bundler.ui.debug(e)
|
138
142
|
raise PathError, "There was an error while trying to use the path " \
|
@@ -167,7 +171,7 @@ module Bundler
|
|
167
171
|
|
168
172
|
if File.directory?(expanded_path)
|
169
173
|
# We sort depth-first since `<<` will override the earlier-found specs
|
170
|
-
|
174
|
+
Gem::Util.glob_files_in_dir(@glob, expanded_path).sort_by {|p| -p.split(File::SEPARATOR).size }.each do |file|
|
171
175
|
next unless spec = load_gemspec(file)
|
172
176
|
spec.source = self
|
173
177
|
|
@@ -26,23 +26,21 @@ module Bundler
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def post_install
|
29
|
-
|
30
|
-
run_hooks(:pre_install)
|
29
|
+
run_hooks(:pre_install)
|
31
30
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
31
|
+
unless @disable_extensions
|
32
|
+
build_extensions
|
33
|
+
run_hooks(:post_build)
|
34
|
+
end
|
36
35
|
|
37
|
-
|
36
|
+
generate_bin unless spec.executables.nil? || spec.executables.empty?
|
38
37
|
|
39
|
-
|
40
|
-
end
|
38
|
+
run_hooks(:post_install)
|
41
39
|
ensure
|
42
40
|
Bundler.rm_rf(@tmp_dir) if Bundler.requires_sudo?
|
43
41
|
end
|
44
42
|
|
45
|
-
|
43
|
+
private
|
46
44
|
|
47
45
|
def generate_bin
|
48
46
|
super
|
@@ -145,20 +145,17 @@ module Bundler
|
|
145
145
|
|
146
146
|
Bundler.mkdir_p bin_path, :no_sudo => true unless spec.executables.empty? || Bundler.rubygems.provides?(">= 2.7.5")
|
147
147
|
|
148
|
-
installed_spec =
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
:bundler_extension_cache_path => extension_cache_path(spec)
|
160
|
-
).install
|
161
|
-
end
|
148
|
+
installed_spec = Bundler::RubyGemsGemInstaller.at(
|
149
|
+
path,
|
150
|
+
:install_dir => install_path.to_s,
|
151
|
+
:bin_dir => bin_path.to_s,
|
152
|
+
:ignore_dependencies => true,
|
153
|
+
:wrappers => true,
|
154
|
+
:env_shebang => true,
|
155
|
+
:build_args => opts[:build_args],
|
156
|
+
:bundler_expected_checksum => spec.respond_to?(:checksum) && spec.checksum,
|
157
|
+
:bundler_extension_cache_path => extension_cache_path(spec)
|
158
|
+
).install
|
162
159
|
spec.full_gem_path = installed_spec.full_gem_path
|
163
160
|
|
164
161
|
# SUDO HAX
|
@@ -294,7 +291,7 @@ module Bundler
|
|
294
291
|
names
|
295
292
|
end
|
296
293
|
|
297
|
-
|
294
|
+
protected
|
298
295
|
|
299
296
|
def credless_remotes
|
300
297
|
remotes.map(&method(:suppress_configured_credentials))
|
@@ -468,7 +465,7 @@ module Bundler
|
|
468
465
|
Bundler.app_cache
|
469
466
|
end
|
470
467
|
|
471
|
-
|
468
|
+
private
|
472
469
|
|
473
470
|
# Checks if the requested spec exists in the global cache. If it does,
|
474
471
|
# we copy it to the download path, and if it does not, we download it.
|
data/lib/bundler/source_list.rb
CHANGED
@@ -116,7 +116,7 @@ module Bundler
|
|
116
116
|
@rubygems_aggregate.remotes
|
117
117
|
end
|
118
118
|
|
119
|
-
|
119
|
+
private
|
120
120
|
|
121
121
|
def rubygems_aggregate_class
|
122
122
|
Source::Rubygems
|
@@ -147,7 +147,7 @@ module Bundler
|
|
147
147
|
if source.uri =~ /^git\:/
|
148
148
|
Bundler.ui.warn "The git source `#{source.uri}` uses the `git` protocol, " \
|
149
149
|
"which transmits data without encryption. Disable this warning with " \
|
150
|
-
"`bundle config set git.allow_insecure true`, or switch to the `https` " \
|
150
|
+
"`bundle config set --local git.allow_insecure true`, or switch to the `https` " \
|
151
151
|
"protocol to keep your data secure."
|
152
152
|
end
|
153
153
|
end
|
data/lib/bundler/spec_set.rb
CHANGED
@@ -28,9 +28,13 @@ module Bundler
|
|
28
28
|
|
29
29
|
# @!group Stub Delegates
|
30
30
|
|
31
|
-
# This is defined directly to avoid having to
|
31
|
+
# This is defined directly to avoid having to loading the full spec
|
32
32
|
def missing_extensions?
|
33
|
-
|
33
|
+
return false if default_gem?
|
34
|
+
return false if extensions.empty?
|
35
|
+
return false if File.exist? gem_build_complete_path
|
36
|
+
|
37
|
+
true
|
34
38
|
end
|
35
39
|
|
36
40
|
def activated
|
@@ -41,8 +45,16 @@ module Bundler
|
|
41
45
|
stub.instance_variable_set(:@activated, activated)
|
42
46
|
end
|
43
47
|
|
44
|
-
def
|
45
|
-
stub.
|
48
|
+
def extensions
|
49
|
+
stub.extensions
|
50
|
+
end
|
51
|
+
|
52
|
+
def gem_build_complete_path
|
53
|
+
File.join(extension_dir, "gem.build_complete")
|
54
|
+
end
|
55
|
+
|
56
|
+
def default_gem?
|
57
|
+
stub.default_gem?
|
46
58
|
end
|
47
59
|
|
48
60
|
def full_gem_path
|
@@ -71,7 +83,7 @@ module Bundler
|
|
71
83
|
stub.raw_require_paths
|
72
84
|
end
|
73
85
|
|
74
|
-
|
86
|
+
private
|
75
87
|
|
76
88
|
def _remote_specification
|
77
89
|
@_remote_specification ||= begin
|