bundler 2.4.15 → 2.4.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -0
  3. data/lib/bundler/build_metadata.rb +2 -2
  4. data/lib/bundler/definition.rb +4 -3
  5. data/lib/bundler/feature_flag.rb +0 -1
  6. data/lib/bundler/man/bundle-add.1 +1 -1
  7. data/lib/bundler/man/bundle-binstubs.1 +1 -1
  8. data/lib/bundler/man/bundle-cache.1 +1 -1
  9. data/lib/bundler/man/bundle-check.1 +1 -1
  10. data/lib/bundler/man/bundle-clean.1 +1 -1
  11. data/lib/bundler/man/bundle-config.1 +1 -4
  12. data/lib/bundler/man/bundle-config.1.ronn +0 -3
  13. data/lib/bundler/man/bundle-console.1 +1 -1
  14. data/lib/bundler/man/bundle-doctor.1 +1 -1
  15. data/lib/bundler/man/bundle-exec.1 +1 -1
  16. data/lib/bundler/man/bundle-gem.1 +1 -1
  17. data/lib/bundler/man/bundle-help.1 +1 -1
  18. data/lib/bundler/man/bundle-info.1 +1 -1
  19. data/lib/bundler/man/bundle-init.1 +1 -1
  20. data/lib/bundler/man/bundle-inject.1 +1 -1
  21. data/lib/bundler/man/bundle-install.1 +1 -1
  22. data/lib/bundler/man/bundle-list.1 +1 -1
  23. data/lib/bundler/man/bundle-lock.1 +1 -1
  24. data/lib/bundler/man/bundle-open.1 +1 -1
  25. data/lib/bundler/man/bundle-outdated.1 +1 -1
  26. data/lib/bundler/man/bundle-platform.1 +1 -1
  27. data/lib/bundler/man/bundle-plugin.1 +1 -1
  28. data/lib/bundler/man/bundle-pristine.1 +1 -1
  29. data/lib/bundler/man/bundle-remove.1 +1 -1
  30. data/lib/bundler/man/bundle-show.1 +1 -1
  31. data/lib/bundler/man/bundle-update.1 +1 -1
  32. data/lib/bundler/man/bundle-version.1 +1 -1
  33. data/lib/bundler/man/bundle-viz.1 +1 -1
  34. data/lib/bundler/man/bundle.1 +1 -1
  35. data/lib/bundler/man/gemfile.5 +2 -2
  36. data/lib/bundler/man/gemfile.5.ronn +1 -1
  37. data/lib/bundler/settings.rb +0 -1
  38. data/lib/bundler/source/git/git_proxy.rb +31 -13
  39. data/lib/bundler/source/git.rb +33 -14
  40. data/lib/bundler/source/rubygems.rb +1 -0
  41. data/lib/bundler/source.rb +1 -1
  42. data/lib/bundler/version.rb +1 -1
  43. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d86d908aad51054ecd34b5431e5b831aa1290d51b1a0b84bbfa72993479f8bbe
4
- data.tar.gz: ba67e60139c27838dc8a945f026d7551721b7a83c519631d595ab01a6ad42bf4
3
+ metadata.gz: 8c93ff76be7428157de06fe91e895647e240bb9d19d2e4396751391011db4f1d
4
+ data.tar.gz: 48566c7332546fadc07817de241887c7ab8bbee1d591445df28b6d6cef14fa88
5
5
  SHA512:
6
- metadata.gz: 0111c1f28e1069aece178f51b86a7786c335f2942c2df13efdc2c52066ae6ba1ad52eb249092f3e5bcb3729063249f5c2043e2e2d43263d6a029e6dac09c4c7c
7
- data.tar.gz: 91e31ddab4115b5ae57385cb26e7b2eb66590bc1850ca008f3dd9fade35d7e28d147aac2dcb7a15904e4a2b60d430b5af4b7124d0f8de3a45304b1cd47ab6301
6
+ metadata.gz: 869ceea50b2d613c5bdd0ae1532400e12be99d3e88a8864778ecd0c2d225f4b092e0a4e0fe9e88fcff8638c5aeba9e0331668180112f0dab3a08c40d0f9610e0
7
+ data.tar.gz: 27c36d53376a122e905b4fc194e81a2358cd270e82d7d09344edf9870276482d9100c71beb8bafd5cc772c3b7ca3e48e92d6cb2c0083dd3d23b46c0642b93a8a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ # 2.4.17 (July 14, 2023)
2
+
3
+ ## Enhancements:
4
+
5
+ - Avoid printing "Using ..." messages when version has not changed [#6804](https://github.com/rubygems/rubygems/pull/6804)
6
+
7
+ ## Bug fixes:
8
+
9
+ - Fix `bundler/setup` unintendedly writing to the filesystem [#6814](https://github.com/rubygems/rubygems/pull/6814)
10
+
11
+ # 2.4.16 (July 10, 2023)
12
+
13
+ ## Bug fixes:
14
+
15
+ - Exclude Bundler from missing locked dependencies check [#6792](https://github.com/rubygems/rubygems/pull/6792)
16
+ - Fix another incorrect removal of "ruby" platform from lockfile when changing path sources [#6784](https://github.com/rubygems/rubygems/pull/6784)
17
+ - Fix git source lockfile instability [#6786](https://github.com/rubygems/rubygems/pull/6786)
18
+
19
+ ## Documentation:
20
+
21
+ - `gemfile.5`: Code format the default glob to escape Markdown [#6790](https://github.com/rubygems/rubygems/pull/6790)
22
+
1
23
  # 2.4.15 (June 29, 2023)
2
24
 
3
25
  ## Enhancements:
@@ -4,8 +4,8 @@ module Bundler
4
4
  # Represents metadata from when the Bundler gem was built.
5
5
  module BuildMetadata
6
6
  # begin ivars
7
- @built_at = "2023-06-29".freeze
8
- @git_commit_sha = "702f922bf2".freeze
7
+ @built_at = "2023-07-14".freeze
8
+ @git_commit_sha = "36ea2bc283".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -394,8 +394,8 @@ module Bundler
394
394
  lock_source = lock_dep.source || sources.default_source
395
395
  next if lock_source.include?(gemfile_source)
396
396
 
397
- gemfile_source_name = dep.source ? gemfile_source.identifier : "no specified source"
398
- lockfile_source_name = lock_dep.source ? lock_source.identifier : "no specified source"
397
+ gemfile_source_name = dep.source ? gemfile_source.to_gemfile : "no specified source"
398
+ lockfile_source_name = lock_dep.source ? lock_source.to_gemfile : "no specified source"
399
399
  changed << "* #{name} from `#{lockfile_source_name}` to `#{gemfile_source_name}`"
400
400
  end
401
401
 
@@ -700,7 +700,7 @@ module Bundler
700
700
  return if @dependency_changes
701
701
 
702
702
  current_dependencies.find do |d|
703
- @locked_specs[d.name].empty?
703
+ @locked_specs[d.name].empty? && d.name != "bundler"
704
704
  end&.name
705
705
  end
706
706
 
@@ -941,6 +941,7 @@ module Bundler
941
941
  Bundler.local_platform == Gem::Platform::RUBY ||
942
942
  !platforms.include?(Gem::Platform::RUBY) ||
943
943
  (@new_platform && platforms.last == Gem::Platform::RUBY) ||
944
+ @path_changes ||
944
945
  @dependency_changes ||
945
946
  !@originally_locked_specs.incomplete_ruby_specs?(dependencies)
946
947
 
@@ -37,7 +37,6 @@ module Bundler
37
37
  settings_flag(:plugins) { @bundler_version >= Gem::Version.new("1.14") }
38
38
  settings_flag(:print_only_version_number) { bundler_3_mode? }
39
39
  settings_flag(:setup_makes_kernel_gem_public) { !bundler_3_mode? }
40
- settings_flag(:suppress_install_using_messages) { bundler_3_mode? }
41
40
  settings_flag(:update_requires_all_flag) { bundler_4_mode? }
42
41
 
43
42
  settings_option(:default_cli_command) { bundler_3_mode? ? :cli_help : :install }
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-ADD" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-ADD" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-BINSTUBS" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CACHE" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-CACHE" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CHECK" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-CHECK" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CLEAN" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CONFIG" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-CONFIG" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-config\fR \- Set bundler configuration options
@@ -284,9 +284,6 @@ The following is a list of all configuration keys and their purpose\. You can le
284
284
  \fBssl_verify_mode\fR (\fBBUNDLE_SSL_VERIFY_MODE\fR): The SSL verification mode Bundler uses when making HTTPS requests\. Defaults to verify peer\.
285
285
  .
286
286
  .IP "\(bu" 4
287
- \fBsuppress_install_using_messages\fR (\fBBUNDLE_SUPPRESS_INSTALL_USING_MESSAGES\fR): Avoid printing \fBUsing \.\.\.\fR messages during installation when the version of a gem has not changed\.
288
- .
289
- .IP "\(bu" 4
290
287
  \fBsystem_bindir\fR (\fBBUNDLE_SYSTEM_BINDIR\fR): The location where RubyGems installs binstubs\. Defaults to \fBGem\.bindir\fR\.
291
288
  .
292
289
  .IP "\(bu" 4
@@ -265,9 +265,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
265
265
  * `ssl_verify_mode` (`BUNDLE_SSL_VERIFY_MODE`):
266
266
  The SSL verification mode Bundler uses when making HTTPS requests.
267
267
  Defaults to verify peer.
268
- * `suppress_install_using_messages` (`BUNDLE_SUPPRESS_INSTALL_USING_MESSAGES`):
269
- Avoid printing `Using ...` messages during installation when the version of
270
- a gem has not changed.
271
268
  * `system_bindir` (`BUNDLE_SYSTEM_BINDIR`):
272
269
  The location where RubyGems installs binstubs. Defaults to `Gem.bindir`.
273
270
  * `timeout` (`BUNDLE_TIMEOUT`):
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CONSOLE" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-CONSOLE" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-console\fR \- Deprecated way to open an IRB session with the bundle pre\-loaded
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-DOCTOR" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-DOCTOR" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-EXEC" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-GEM" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-HELP" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-HELP" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-help\fR \- Displays detailed help for each subcommand
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INFO" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-INFO" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-info\fR \- Show information for the given gem in your bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INIT" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-INIT" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INJECT" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-INJECT" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INSTALL" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-INSTALL" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-LIST" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the gems in the bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-LOCK" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-LOCK" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-OPEN" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-OPEN" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-OUTDATED" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PLATFORM" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-PLATFORM" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-platform\fR \- Displays platform compatibility information
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PLUGIN" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-PLUGIN" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-plugin\fR \- Manage Bundler plugins
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PRISTINE" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-REMOVE" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-SHOW" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-UPDATE" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-VERSION" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-VERSION" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-version\fR \- Prints Bundler version information
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-VIZ" "1" "February 2023" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE" "1" "February 2023" "" ""
4
+ .TH "BUNDLE" "1" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "GEMFILE" "5" "February 2023" "" ""
4
+ .TH "GEMFILE" "5" "July 2023" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs
@@ -702,7 +702,7 @@ If you wish to use Bundler to help install dependencies for a gem while it is be
702
702
  The \fBgemspec\fR method adds any runtime dependencies as gem requirements in the default group\. It also adds development dependencies as gem requirements in the \fBdevelopment\fR group\. Finally, it adds a gem requirement on your project (\fBpath: \'\.\'\fR)\. In conjunction with \fBBundler\.setup\fR, this allows you to require project files in your test code as you would if the project were installed as a gem; you need not manipulate the load path manually or require project files via relative paths\.
703
703
  .
704
704
  .P
705
- The \fBgemspec\fR method supports optional \fB:path\fR, \fB:glob\fR, \fB:name\fR, and \fB:development_group\fR options, which control where bundler looks for the \fB\.gemspec\fR, the glob it uses to look for the gemspec (defaults to: "{,\fI,\fR/*}\.gemspec"), what named \fB\.gemspec\fR it uses (if more than one is present), and which group development dependencies are included in\.
705
+ The \fBgemspec\fR method supports optional \fB:path\fR, \fB:glob\fR, \fB:name\fR, and \fB:development_group\fR options, which control where bundler looks for the \fB\.gemspec\fR, the glob it uses to look for the gemspec (defaults to: \fB{,*,*/*}\.gemspec\fR), what named \fB\.gemspec\fR it uses (if more than one is present), and which group development dependencies are included in\.
706
706
  .
707
707
  .P
708
708
  When a \fBgemspec\fR dependency encounters version conflicts during resolution, the local version under development will always be selected \-\- even if there are remote versions that better match other requirements for the \fBgemspec\fR gem\.
@@ -514,7 +514,7 @@ paths.
514
514
 
515
515
  The `gemspec` method supports optional `:path`, `:glob`, `:name`, and `:development_group`
516
516
  options, which control where bundler looks for the `.gemspec`, the glob it uses to look
517
- for the gemspec (defaults to: "{,*,*/*}.gemspec"), what named `.gemspec` it uses
517
+ for the gemspec (defaults to: `{,*,*/*}.gemspec`), what named `.gemspec` it uses
518
518
  (if more than one is present), and which group development dependencies are included in.
519
519
 
520
520
  When a `gemspec` dependency encounters version conflicts during resolution, the
@@ -43,7 +43,6 @@ module Bundler
43
43
  setup_makes_kernel_gem_public
44
44
  silence_deprecations
45
45
  silence_root_warning
46
- suppress_install_using_messages
47
46
  update_requires_all_flag
48
47
  ].freeze
49
48
 
@@ -67,8 +67,8 @@ module Bundler
67
67
  end
68
68
 
69
69
  def current_branch
70
- @current_branch ||= allowed_with_path do
71
- git("rev-parse", "--abbrev-ref", "HEAD", :dir => path).strip
70
+ @current_branch ||= with_path do
71
+ git_local("rev-parse", "--abbrev-ref", "HEAD", :dir => path).strip
72
72
  end
73
73
  end
74
74
 
@@ -84,7 +84,7 @@ module Bundler
84
84
  end
85
85
 
86
86
  def full_version
87
- @full_version ||= git("--version").sub(/git version\s*/, "").strip
87
+ @full_version ||= git_local("--version").sub(/git version\s*/, "").strip
88
88
  end
89
89
 
90
90
  def checkout
@@ -253,15 +253,15 @@ module Bundler
253
253
  end
254
254
 
255
255
  def git(*command, dir: nil)
256
- command_with_no_credentials = check_allowed(command)
257
-
258
- out, err, status = capture(command, dir)
259
-
260
- raise GitCommandError.new(command_with_no_credentials, dir || SharedHelpers.pwd, err) unless status.success?
261
-
262
- Bundler.ui.warn err unless err.empty?
256
+ run_command(*command, :dir => dir) do |unredacted_command|
257
+ check_allowed(unredacted_command)
258
+ end
259
+ end
263
260
 
264
- out
261
+ def git_local(*command, dir: nil)
262
+ run_command(*command, :dir => dir) do |unredacted_command|
263
+ redact_and_check_presence(unredacted_command)
264
+ end
265
265
  end
266
266
 
267
267
  def has_revision_cached?
@@ -330,12 +330,30 @@ module Bundler
330
330
  end
331
331
 
332
332
  def check_allowed(command)
333
- require "shellwords"
334
- command_with_no_credentials = URICredentialsFilter.credential_filtered_string("git #{command.shelljoin}", uri)
333
+ command_with_no_credentials = redact_and_check_presence(command)
335
334
  raise GitNotAllowedError.new(command_with_no_credentials) unless allow?
336
335
  command_with_no_credentials
337
336
  end
338
337
 
338
+ def redact_and_check_presence(command)
339
+ raise GitNotInstalledError.new unless Bundler.git_present?
340
+
341
+ require "shellwords"
342
+ URICredentialsFilter.credential_filtered_string("git #{command.shelljoin}", uri)
343
+ end
344
+
345
+ def run_command(*command, dir: nil)
346
+ command_with_no_credentials = yield(command)
347
+
348
+ out, err, status = capture(command, dir)
349
+
350
+ raise GitCommandError.new(command_with_no_credentials, dir || SharedHelpers.pwd, err) unless status.success?
351
+
352
+ Bundler.ui.warn err unless err.empty?
353
+
354
+ out
355
+ end
356
+
339
357
  def capture(cmd, dir, ignore_err: false)
340
358
  SharedHelpers.with_clean_git_env do
341
359
  require "open3"
@@ -46,6 +46,14 @@ module Bundler
46
46
  out << " specs:\n"
47
47
  end
48
48
 
49
+ def to_gemfile
50
+ specifiers = %w[ref branch tag submodules glob].map do |opt|
51
+ "#{opt}: #{options[opt]}" if options[opt]
52
+ end
53
+
54
+ uri_with_specifiers(specifiers)
55
+ end
56
+
49
57
  def hash
50
58
  [self.class, uri, ref, branch, name, version, glob, submodules].hash
51
59
  end
@@ -61,26 +69,23 @@ module Bundler
61
69
 
62
70
  def to_s
63
71
  begin
64
- at = if local?
65
- path
66
- elsif user_ref = options["ref"]
67
- if /\A[a-z0-9]{4,}\z/i.match?(ref)
68
- shortref_for_display(user_ref)
69
- else
70
- user_ref
71
- end
72
- elsif ref
73
- ref
74
- else
75
- current_branch
76
- end
72
+ at = humanized_ref || current_branch
77
73
 
78
74
  rev = "at #{at}@#{shortref_for_display(revision)}"
79
75
  rescue GitError
80
76
  ""
81
77
  end
82
78
 
83
- specifiers = [rev, glob_for_display].compact
79
+ uri_with_specifiers([rev, glob_for_display])
80
+ end
81
+
82
+ def identifier
83
+ uri_with_specifiers([humanized_ref, cached_revision, glob_for_display])
84
+ end
85
+
86
+ def uri_with_specifiers(specifiers)
87
+ specifiers.compact!
88
+
84
89
  suffix =
85
90
  if specifiers.any?
86
91
  " (#{specifiers.join(", ")})"
@@ -243,6 +248,20 @@ module Bundler
243
248
 
244
249
  private
245
250
 
251
+ def humanized_ref
252
+ if local?
253
+ path
254
+ elsif user_ref = options["ref"]
255
+ if /\A[a-z0-9]{4,}\z/i.match?(ref)
256
+ shortref_for_display(user_ref)
257
+ else
258
+ user_ref
259
+ end
260
+ elsif ref
261
+ ref
262
+ end
263
+ end
264
+
246
265
  def serialize_gemspecs_in(destination)
247
266
  destination = destination.expand_path(Bundler.root) if destination.relative?
248
267
  Dir["#{destination}/#{@glob}"].each do |spec_path|
@@ -123,6 +123,7 @@ module Bundler
123
123
  end
124
124
  end
125
125
  alias_method :name, :identifier
126
+ alias_method :to_gemfile, :identifier
126
127
 
127
128
  def specs
128
129
  @specs ||= begin
@@ -100,7 +100,7 @@ module Bundler
100
100
  end
101
101
 
102
102
  def print_using_message(message)
103
- if !message.include?("(was ") && Bundler.feature_flag.suppress_install_using_messages?
103
+ if !message.include?("(was ")
104
104
  Bundler.ui.debug message
105
105
  else
106
106
  Bundler.ui.info message
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.4.15".freeze
4
+ VERSION = "2.4.17".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
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.15
4
+ version: 2.4.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Arko
@@ -22,7 +22,7 @@ authors:
22
22
  autorequire:
23
23
  bindir: exe
24
24
  cert_chain: []
25
- date: 2023-06-29 00:00:00.000000000 Z
25
+ date: 2023-07-14 00:00:00.000000000 Z
26
26
  dependencies: []
27
27
  description: Bundler manages an application's dependencies through its entire life,
28
28
  across many machines, systematically and repeatably
@@ -381,7 +381,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
381
381
  - !ruby/object:Gem::Version
382
382
  version: 3.0.1
383
383
  requirements: []
384
- rubygems_version: 3.4.15
384
+ rubygems_version: 3.4.17
385
385
  signing_key:
386
386
  specification_version: 4
387
387
  summary: The best way to manage your application's dependencies