bundler 2.5.8 → 2.5.9
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 +6 -0
- data/lib/bundler/build_metadata.rb +2 -2
- data/lib/bundler/plugin/installer/path.rb +1 -1
- data/lib/bundler/plugin/installer.rb +1 -1
- data/lib/bundler/version.rb +1 -1
- metadata +3 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: b343f681293b03c25fbc82c8d4c323154aec1af8dc5f34e619779c7f4d4c634b
         | 
| 4 | 
            +
              data.tar.gz: 0566537e3cc941f3160e5060c806f0418907cca56e8d0e56a5b79dbb7d9bd94f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 2effd5a50b198e6113853e8d695bcc98d396f6bc0d036e55756a7615755fa8f7498fbab09f7b51d13aef5fe0c2acd1de807c16f7446c5a188de18f7793ebab4b
         | 
| 7 | 
            +
              data.tar.gz: 8cdafdd6dbe2da1aa03e44717211fc88440974c03c2057f57ecf514c5b9253d1aa7f1e9994758bcfb5ba614435b0853d070dfe32bfd25a7a033f45b03db86ca2
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| @@ -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-04- | 
| 8 | 
            -
                @git_commit_sha = " | 
| 7 | 
            +
                @built_at = "2024-04-12".freeze
         | 
| 8 | 
            +
                @git_commit_sha = "4304697e0c".freeze
         | 
| 9 9 | 
             
                @release = true
         | 
| 10 10 | 
             
                # end ivars
         | 
| 11 11 |  | 
| @@ -77,7 +77,7 @@ module Bundler | |
| 77 77 |  | 
| 78 78 | 
             
                  def install_path(names, version, path)
         | 
| 79 79 | 
             
                    source_list = SourceList.new
         | 
| 80 | 
            -
                    source = source_list.add_path_source({ "path" => path })
         | 
| 80 | 
            +
                    source = source_list.add_path_source({ "path" => path, "root_path" => SharedHelpers.pwd })
         | 
| 81 81 |  | 
| 82 82 | 
             
                    install_all_sources(names, version, source_list, source)
         | 
| 83 83 | 
             
                  end
         | 
    
        data/lib/bundler/version.rb
    CHANGED
    
    
    
        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.5. | 
| 4 | 
            +
              version: 2.5.9
         | 
| 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: 2024-04- | 
| 25 | 
            +
            date: 2024-04-12 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
         | 
| @@ -399,7 +399,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 399 399 | 
             
                - !ruby/object:Gem::Version
         | 
| 400 400 | 
             
                  version: 3.2.3
         | 
| 401 401 | 
             
            requirements: []
         | 
| 402 | 
            -
            rubygems_version: 3.5. | 
| 402 | 
            +
            rubygems_version: 3.5.9
         | 
| 403 403 | 
             
            signing_key:
         | 
| 404 404 | 
             
            specification_version: 4
         | 
| 405 405 | 
             
            summary: The best way to manage your application's dependencies
         |