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.

Files changed (194) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1543 -1418
  3. data/README.md +6 -8
  4. data/bundler.gemspec +3 -3
  5. data/exe/bundle +3 -0
  6. data/lib/bundler.rb +21 -7
  7. data/lib/bundler/build_metadata.rb +3 -11
  8. data/lib/bundler/cli.rb +54 -20
  9. data/lib/bundler/cli/add.rb +1 -1
  10. data/lib/bundler/cli/cache.rb +1 -7
  11. data/lib/bundler/cli/clean.rb +1 -1
  12. data/lib/bundler/cli/common.rb +14 -0
  13. data/lib/bundler/cli/console.rb +1 -1
  14. data/lib/bundler/cli/doctor.rb +1 -1
  15. data/lib/bundler/cli/exec.rb +1 -1
  16. data/lib/bundler/cli/fund.rb +36 -0
  17. data/lib/bundler/cli/gem.rb +84 -11
  18. data/lib/bundler/cli/info.rb +15 -4
  19. data/lib/bundler/cli/init.rb +2 -2
  20. data/lib/bundler/cli/inject.rb +1 -1
  21. data/lib/bundler/cli/install.rb +12 -18
  22. data/lib/bundler/cli/issue.rb +2 -2
  23. data/lib/bundler/cli/list.rb +12 -10
  24. data/lib/bundler/cli/outdated.rb +89 -66
  25. data/lib/bundler/cli/plugin.rb +10 -0
  26. data/lib/bundler/cli/pristine.rb +5 -0
  27. data/lib/bundler/cli/show.rb +1 -1
  28. data/lib/bundler/cli/update.rb +2 -0
  29. data/lib/bundler/compact_index_client.rb +1 -1
  30. data/lib/bundler/compact_index_client/cache.rb +1 -1
  31. data/lib/bundler/definition.rb +51 -60
  32. data/lib/bundler/dep_proxy.rb +1 -1
  33. data/lib/bundler/dependency.rb +0 -9
  34. data/lib/bundler/dsl.rb +5 -9
  35. data/lib/bundler/endpoint_specification.rb +1 -1
  36. data/lib/bundler/environment_preserver.rb +26 -2
  37. data/lib/bundler/errors.rb +1 -0
  38. data/lib/bundler/feature_flag.rb +0 -2
  39. data/lib/bundler/fetcher.rb +4 -3
  40. data/lib/bundler/fetcher/base.rb +1 -1
  41. data/lib/bundler/fetcher/compact_index.rb +1 -1
  42. data/lib/bundler/fetcher/downloader.rb +1 -1
  43. data/lib/bundler/fetcher/index.rb +1 -1
  44. data/lib/bundler/friendly_errors.rb +7 -13
  45. data/lib/bundler/gem_helper.rb +33 -19
  46. data/lib/bundler/gem_helpers.rb +6 -1
  47. data/lib/bundler/gem_version_promoter.rb +2 -2
  48. data/lib/bundler/graph.rb +1 -1
  49. data/lib/bundler/index.rb +1 -1
  50. data/lib/bundler/injector.rb +15 -4
  51. data/lib/bundler/inline.rb +2 -2
  52. data/lib/bundler/installer.rb +30 -29
  53. data/lib/bundler/installer/gem_installer.rb +3 -3
  54. data/lib/bundler/installer/parallel_installer.rb +10 -10
  55. data/lib/bundler/installer/standalone.rb +2 -2
  56. data/lib/bundler/lazy_specification.rb +19 -6
  57. data/lib/bundler/lockfile_generator.rb +1 -1
  58. data/lib/bundler/lockfile_parser.rb +1 -1
  59. data/lib/bundler/mirror.rb +2 -2
  60. data/lib/bundler/plugin.rb +30 -5
  61. data/lib/bundler/plugin/index.rb +10 -1
  62. data/lib/bundler/plugin/installer.rb +1 -1
  63. data/lib/bundler/plugin/installer/rubygems.rb +1 -1
  64. data/lib/bundler/plugin/source_list.rb +1 -1
  65. data/lib/bundler/psyched_yaml.rb +0 -15
  66. data/lib/bundler/remote_specification.rb +5 -2
  67. data/lib/bundler/resolver.rb +32 -9
  68. data/lib/bundler/resolver/spec_group.rb +27 -6
  69. data/lib/bundler/retry.rb +1 -1
  70. data/lib/bundler/ruby_version.rb +1 -1
  71. data/lib/bundler/rubygems_ext.rb +53 -9
  72. data/lib/bundler/rubygems_gem_installer.rb +3 -9
  73. data/lib/bundler/rubygems_integration.rb +23 -54
  74. data/lib/bundler/runtime.rb +4 -14
  75. data/lib/bundler/settings.rb +49 -45
  76. data/lib/bundler/shared_helpers.rb +2 -2
  77. data/lib/bundler/similarity_detector.rb +1 -1
  78. data/lib/bundler/source.rb +1 -1
  79. data/lib/bundler/source/git.rb +5 -5
  80. data/lib/bundler/source/git/git_proxy.rb +56 -59
  81. data/lib/bundler/source/path.rb +7 -3
  82. data/lib/bundler/source/path/installer.rb +8 -10
  83. data/lib/bundler/source/rubygems.rb +13 -16
  84. data/lib/bundler/source/rubygems/remote.rb +1 -1
  85. data/lib/bundler/source_list.rb +2 -2
  86. data/lib/bundler/spec_set.rb +1 -1
  87. data/lib/bundler/stub_specification.rb +17 -5
  88. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  89. data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  90. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  91. data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  92. data/lib/bundler/templates/newgem/bin/console.tt +1 -0
  93. data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  94. data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  95. data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  96. data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  97. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  98. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  99. data/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -6
  100. data/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  101. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  102. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
  103. data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  104. data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  105. data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  106. data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  107. data/lib/bundler/ui/shell.rb +5 -5
  108. data/lib/bundler/uri_credentials_filter.rb +1 -1
  109. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +79 -212
  110. data/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  111. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  112. data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  113. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  114. data/lib/bundler/vendored_persistent.rb +0 -7
  115. data/lib/bundler/version.rb +1 -1
  116. data/lib/bundler/worker.rb +1 -1
  117. data/lib/bundler/yaml_serializer.rb +1 -1
  118. data/man/bundle-add.1 +1 -1
  119. data/man/{bundle-add.ronn → bundle-add.1.ronn} +0 -0
  120. data/man/bundle-binstubs.1 +5 -3
  121. data/man/{bundle-binstubs.ronn → bundle-binstubs.1.ronn} +2 -4
  122. data/man/bundle-cache.1 +1 -1
  123. data/man/{bundle-cache.ronn → bundle-cache.1.ronn} +0 -0
  124. data/man/bundle-check.1 +1 -1
  125. data/man/{bundle-check.ronn → bundle-check.1.ronn} +0 -0
  126. data/man/bundle-clean.1 +1 -1
  127. data/man/{bundle-clean.ronn → bundle-clean.1.ronn} +0 -0
  128. data/man/bundle-config.1 +16 -22
  129. data/man/{bundle-config.ronn → bundle-config.1.ronn} +19 -22
  130. data/man/bundle-doctor.1 +1 -1
  131. data/man/{bundle-doctor.ronn → bundle-doctor.1.ronn} +0 -0
  132. data/man/bundle-exec.1 +1 -1
  133. data/man/{bundle-exec.ronn → bundle-exec.1.ronn} +0 -0
  134. data/man/bundle-gem.1 +25 -3
  135. data/man/{bundle-gem.ronn → bundle-gem.1.ronn} +30 -7
  136. data/man/bundle-info.1 +1 -1
  137. data/man/{bundle-info.ronn → bundle-info.1.ronn} +0 -0
  138. data/man/bundle-init.1 +1 -1
  139. data/man/{bundle-init.ronn → bundle-init.1.ronn} +0 -0
  140. data/man/bundle-inject.1 +1 -1
  141. data/man/{bundle-inject.ronn → bundle-inject.1.ronn} +0 -0
  142. data/man/bundle-install.1 +29 -2
  143. data/man/{bundle-install.ronn → bundle-install.1.ronn} +24 -2
  144. data/man/bundle-list.1 +7 -7
  145. data/man/{bundle-list.ronn → bundle-list.1.ronn} +6 -6
  146. data/man/bundle-lock.1 +1 -1
  147. data/man/{bundle-lock.ronn → bundle-lock.1.ronn} +0 -0
  148. data/man/bundle-open.1 +1 -1
  149. data/man/{bundle-open.ronn → bundle-open.1.ronn} +0 -0
  150. data/man/bundle-outdated.1 +1 -1
  151. data/man/{bundle-outdated.ronn → bundle-outdated.1.ronn} +0 -0
  152. data/man/bundle-platform.1 +1 -1
  153. data/man/{bundle-platform.ronn → bundle-platform.1.ronn} +0 -0
  154. data/man/bundle-pristine.1 +1 -1
  155. data/man/{bundle-pristine.ronn → bundle-pristine.1.ronn} +0 -0
  156. data/man/bundle-remove.1 +1 -1
  157. data/man/{bundle-remove.ronn → bundle-remove.1.ronn} +0 -0
  158. data/man/bundle-show.1 +1 -1
  159. data/man/{bundle-show.ronn → bundle-show.1.ronn} +0 -0
  160. data/man/bundle-update.1 +1 -1
  161. data/man/{bundle-update.ronn → bundle-update.1.ronn} +0 -0
  162. data/man/bundle-viz.1 +1 -1
  163. data/man/{bundle-viz.ronn → bundle-viz.1.ronn} +0 -0
  164. data/man/bundle.1 +1 -1
  165. data/man/{bundle.ronn → bundle.1.ronn} +0 -0
  166. data/man/gemfile.5 +4 -4
  167. data/man/gemfile.5.ronn +4 -4
  168. metadata +39 -58
  169. data/man/bundle-add.1.txt +0 -58
  170. data/man/bundle-binstubs.1.txt +0 -48
  171. data/man/bundle-cache.1.txt +0 -78
  172. data/man/bundle-check.1.txt +0 -33
  173. data/man/bundle-clean.1.txt +0 -26
  174. data/man/bundle-config.1.txt +0 -528
  175. data/man/bundle-doctor.1.txt +0 -44
  176. data/man/bundle-exec.1.txt +0 -178
  177. data/man/bundle-gem.1.txt +0 -91
  178. data/man/bundle-info.1.txt +0 -21
  179. data/man/bundle-init.1.txt +0 -34
  180. data/man/bundle-inject.1.txt +0 -32
  181. data/man/bundle-install.1.txt +0 -401
  182. data/man/bundle-list.1.txt +0 -43
  183. data/man/bundle-lock.1.txt +0 -93
  184. data/man/bundle-open.1.txt +0 -29
  185. data/man/bundle-outdated.1.txt +0 -131
  186. data/man/bundle-platform.1.txt +0 -57
  187. data/man/bundle-pristine.1.txt +0 -44
  188. data/man/bundle-remove.1.txt +0 -34
  189. data/man/bundle-show.1.txt +0 -27
  190. data/man/bundle-update.1.txt +0 -390
  191. data/man/bundle-viz.1.txt +0 -39
  192. data/man/bundle.1.txt +0 -116
  193. data/man/gemfile.5.txt +0 -649
  194. 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::MD5.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
- private
215
+ private
216
216
 
217
217
  def validate_bundle_path
218
218
  path_separator = Bundler.rubygems.path_separator
@@ -26,7 +26,7 @@ module Bundler
26
26
  end
27
27
  end
28
28
 
29
- protected
29
+ protected
30
30
 
31
31
  # https://www.informit.com/articles/article.aspx?p=683059&seqNum=36
32
32
  def levenshtein_distance(this, that, ins = 2, del = 2, sub = 1)
@@ -63,7 +63,7 @@ module Bundler
63
63
  )
64
64
  end
65
65
 
66
- private
66
+ private
67
67
 
68
68
  def version_color(spec_version, locked_spec_version)
69
69
  if Gem::Version.correct?(spec_version) && Gem::Version.correct?(locked_spec_version)
@@ -230,7 +230,11 @@ module Bundler
230
230
  @allow_remote || @allow_cached
231
231
  end
232
232
 
233
- private
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/bundler/bundler/issues "
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 = nil, extra_info = nil)
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 #{SharedHelpers.pwd} has failed."
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 && path.exist?
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
- return @revision if @revision
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 ||= allowed_in_path do
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
- allowed_in_path do
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
- in_path do
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
- SharedHelpers.chdir(destination) do
137
- git_retry %(fetch --force --quiet --tags "#{path}")
128
+ git_retry %(fetch --force --quiet --tags "#{path}"), :dir => destination
138
129
 
139
- begin
140
- git "reset --hard #{@revision}"
141
- rescue GitCommandError => e
142
- raise MissingGitRevisionError.new(e.command, path, @revision, URICredentialsFilter.credential_filtered_uri(uri))
143
- end
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
- if submodules
146
- git_retry "submodule update --init --recursive"
147
- elsif Gem::Version.create(version) >= Gem::Version.create("2.9.0")
148
- git_retry "submodule deinit --all --force"
149
- end
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
- private
145
+ private
154
146
 
155
- def git_null(command)
156
- command_with_no_credentials = URICredentialsFilter.credential_filtered_string(command, uri)
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, check_errors = true, error_msg = nil)
173
- command_with_no_credentials = URICredentialsFilter.credential_filtered_string(command, uri)
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
- stdout_with_no_credentials = URICredentialsFilter.credential_filtered_string(out, uri)
181
- raise GitCommandError.new(command_with_no_credentials, path, error_msg) if check_errors && !status.success?
182
- stdout_with_no_credentials
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
- in_path { git("cat-file -e #{@revision}") }
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
- allowed_in_path do
199
- git("rev-parse --verify #{Shellwords.shellescape(ref)}", true).strip
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 in_path(&blk)
225
+ def with_path(&blk)
234
226
  checkout unless path.exist?
235
- _ = URICredentialsFilter # load it before we chdir
236
- SharedHelpers.chdir(path, &blk)
227
+ blk.call
237
228
  end
238
229
 
239
- def allowed_in_path
240
- return in_path { yield } if allow?
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 capture_and_filter_stderr(uri, cmd)
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
@@ -125,14 +125,18 @@ module Bundler
125
125
  @expanded_original_path ||= expand(original_path)
126
126
  end
127
127
 
128
- private
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
- somepath.expand_path(root_path)
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
- Dir["#{expanded_path}/#{@glob}"].sort_by {|p| -p.split(File::SEPARATOR).size }.each do |file|
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
- SharedHelpers.chdir(@gem_dir) do
30
- run_hooks(:pre_install)
29
+ run_hooks(:pre_install)
31
30
 
32
- unless @disable_extensions
33
- build_extensions
34
- run_hooks(:post_build)
35
- end
31
+ unless @disable_extensions
32
+ build_extensions
33
+ run_hooks(:post_build)
34
+ end
36
35
 
37
- generate_bin unless spec.executables.nil? || spec.executables.empty?
36
+ generate_bin unless spec.executables.nil? || spec.executables.empty?
38
37
 
39
- run_hooks(:post_install)
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
- private
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 = nil
149
- Bundler.rubygems.preserve_paths do
150
- installed_spec = Bundler::RubyGemsGemInstaller.at(
151
- path,
152
- :install_dir => install_path.to_s,
153
- :bin_dir => bin_path.to_s,
154
- :ignore_dependencies => true,
155
- :wrappers => true,
156
- :env_shebang => true,
157
- :build_args => opts[:build_args],
158
- :bundler_expected_checksum => spec.respond_to?(:checksum) && spec.checksum,
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
- protected
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
- private
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.
@@ -39,7 +39,7 @@ module Bundler
39
39
  "rubygems remote at #{anonymized_uri}"
40
40
  end
41
41
 
42
- private
42
+ private
43
43
 
44
44
  def apply_auth(uri, auth)
45
45
  if auth && uri.userinfo.nil?
@@ -116,7 +116,7 @@ module Bundler
116
116
  @rubygems_aggregate.remotes
117
117
  end
118
118
 
119
- private
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
@@ -147,7 +147,7 @@ module Bundler
147
147
  sorted.each(&b)
148
148
  end
149
149
 
150
- private
150
+ private
151
151
 
152
152
  def sorted
153
153
  rake = @specs.find {|s| s.name == "rake" }
@@ -28,9 +28,13 @@ module Bundler
28
28
 
29
29
  # @!group Stub Delegates
30
30
 
31
- # This is defined directly to avoid having to load every installed spec
31
+ # This is defined directly to avoid having to loading the full spec
32
32
  def missing_extensions?
33
- stub.missing_extensions?
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 default_gem
45
- stub.default_gem
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
- private
86
+ private
75
87
 
76
88
  def _remote_specification
77
89
  @_remote_specification ||= begin