bundler 2.6.1 → 2.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bfa8675573c163266376b8d0db160906de8e1f96c701803d8ce1805fcd2483b
4
- data.tar.gz: 97fa241962c9c6bd4359807f8c14419bb2d01dfafce9e6255f6814bb92808261
3
+ metadata.gz: c3728802be4074809ca22f929200d5a37e70e6fc4ce6a2c532724240965347b2
4
+ data.tar.gz: 02ce39fa7358e3ec4923893aa1760f27963a1620b0e62e1b304305d72a1587de
5
5
  SHA512:
6
- metadata.gz: f43793bc6ef1428699716d32ee2b7fb48ba0bb32b4a1dd6a28468c6677be7814b975598545f109d38eb13e6160117c2193fb9feba5df35911ab2a6bcae935c9e
7
- data.tar.gz: 025362f4733db21ed544eb34467e9b944e011a45896c3dfbd1a3ecc571bcb81db68fec9dce2725c52ee9ac2c285c97541b78ad7ca079c403c5a4684da3df43fa
6
+ metadata.gz: fe1caf39624053f3acd53633ac14621bc3b65fa2aa59eadca1e530fd44207bcd4a4f383fc6624ba6bb3b6663e1067ae278ed43c44a44da2434bb1c3aa6da890b
7
+ data.tar.gz: 7d992c1527acea98a361fb315f201c73e01efed2034a3f6ba61004be4f722841aac5b61cb629a45c0d55d088b199a681e3288f359eb652a6c12cb2db697f1ac7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # 2.6.2 (December 23, 2024)
2
+
3
+ ## Bug fixes:
4
+
5
+ - Restart using `Process.argv0` only if `$PROGRAM_NAME` is not a script [#8343](https://github.com/rubygems/rubygems/pull/8343)
6
+
7
+ ## Documentation:
8
+
9
+ - Fix typo in `bundle lock` man page synopsis (`--add-checkums` → `--add-checksums`) [#8350](https://github.com/rubygems/rubygems/pull/8350)
10
+
1
11
  # 2.6.1 (December 17, 2024)
2
12
 
3
13
  ## Bug fixes:
@@ -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 = "2024-12-17".freeze
8
- @git_commit_sha = "00a344e02c8".freeze
7
+ @built_at = "2024-12-23".freeze
8
+ @git_commit_sha = "90ebd47c740".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -4,7 +4,7 @@
4
4
  .SH "NAME"
5
5
  \fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
6
6
  .SH "SYNOPSIS"
7
- \fBbundle lock\fR [\-\-update] [\-\-bundler[=BUNDLER]] [\-\-local] [\-\-print] [\-\-lockfile=PATH] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-add\-checkums] [\-\-add\-platform] [\-\-remove\-platform] [\-\-normalize\-platforms] [\-\-patch] [\-\-minor] [\-\-major] [\-\-pre] [\-\-strict] [\-\-conservative]
7
+ \fBbundle lock\fR [\-\-update] [\-\-bundler[=BUNDLER]] [\-\-local] [\-\-print] [\-\-lockfile=PATH] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-add\-checksums] [\-\-add\-platform] [\-\-remove\-platform] [\-\-normalize\-platforms] [\-\-patch] [\-\-minor] [\-\-major] [\-\-pre] [\-\-strict] [\-\-conservative]
8
8
  .SH "DESCRIPTION"
9
9
  Lock the gems specified in Gemfile\.
10
10
  .SH "OPTIONS"
@@ -10,7 +10,7 @@ bundle-lock(1) -- Creates / Updates a lockfile without installing
10
10
  [--lockfile=PATH]
11
11
  [--full-index]
12
12
  [--gemfile=GEMFILE]
13
- [--add-checkums]
13
+ [--add-checksums]
14
14
  [--add-platform]
15
15
  [--remove-platform]
16
16
  [--normalize-platforms]
@@ -84,8 +84,9 @@ module Bundler
84
84
  require "shellwords"
85
85
  cmd = [*Shellwords.shellsplit(bundler_spec_original_cmd), *ARGV]
86
86
  else
87
- cmd = [Process.argv0, *ARGV]
88
- cmd.unshift(Gem.ruby) unless File.executable?(Process.argv0)
87
+ argv0 = File.exist?($PROGRAM_NAME) ? $PROGRAM_NAME : Process.argv0
88
+ cmd = [argv0, *ARGV]
89
+ cmd.unshift(Gem.ruby) unless File.executable?(argv0)
89
90
  end
90
91
 
91
92
  Bundler.with_original_env do
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.6.1".freeze
4
+ VERSION = "2.6.2".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
metadata CHANGED
@@ -1,9 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.1
4
+ version: 2.6.2
5
5
  platform: ruby
6
- original_platform: ''
7
6
  authors:
8
7
  - André Arko
9
8
  - Samuel Giddins
@@ -22,7 +21,7 @@ authors:
22
21
  - Yehuda Katz
23
22
  bindir: exe
24
23
  cert_chain: []
25
- date: 2024-12-17 00:00:00.000000000 Z
24
+ date: 2024-12-23 00:00:00.000000000 Z
26
25
  dependencies: []
27
26
  description: Bundler manages an application's dependencies through its entire life,
28
27
  across many machines, systematically and repeatably
@@ -412,7 +411,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
412
411
  - !ruby/object:Gem::Version
413
412
  version: 3.3.3
414
413
  requirements: []
415
- rubygems_version: 3.6.1
414
+ rubygems_version: 3.6.2
416
415
  specification_version: 4
417
416
  summary: The best way to manage your application's dependencies
418
417
  test_files: []