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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/man/bundle-lock.1 +1 -1
- data/lib/bundler/man/bundle-lock.1.ronn +1 -1
- data/lib/bundler/self_manager.rb +3 -2
- data/lib/bundler/version.rb +1 -1
- metadata +3 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: c3728802be4074809ca22f929200d5a37e70e6fc4ce6a2c532724240965347b2
         | 
| 4 | 
            +
              data.tar.gz: 02ce39fa7358e3ec4923893aa1760f27963a1620b0e62e1b304305d72a1587de
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 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- | 
| 8 | 
            -
                @git_commit_sha = " | 
| 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\- | 
| 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"
         | 
    
        data/lib/bundler/self_manager.rb
    CHANGED
    
    | @@ -84,8 +84,9 @@ module Bundler | |
| 84 84 | 
             
                    require "shellwords"
         | 
| 85 85 | 
             
                    cmd = [*Shellwords.shellsplit(bundler_spec_original_cmd), *ARGV]
         | 
| 86 86 | 
             
                  else
         | 
| 87 | 
            -
                     | 
| 88 | 
            -
                    cmd | 
| 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
         | 
    
        data/lib/bundler/version.rb
    CHANGED
    
    
    
        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. | 
| 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- | 
| 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. | 
| 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: []
         |