bundler 2.5.8 → 2.5.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5b022aa2fbcb7dc23d00521f4d06a6d47ac0c59fe82da544b25ec46b82d80a3
4
- data.tar.gz: 95f43a8fb90cd87a9749746121fe46cdab001476b04c99bdf16ac388912c6bfd
3
+ metadata.gz: b343f681293b03c25fbc82c8d4c323154aec1af8dc5f34e619779c7f4d4c634b
4
+ data.tar.gz: 0566537e3cc941f3160e5060c806f0418907cca56e8d0e56a5b79dbb7d9bd94f
5
5
  SHA512:
6
- metadata.gz: 5915fb8ba535b49dbe06042a31564614e86928b4d6a75935a7a3aa782ffd713bb1c5f95be3ffc028ae1337367e46e708a9a59d38601a268c54f7814ec0dcea32
7
- data.tar.gz: 18300e1cf1066cbbc36cc70822f80a0d46eabd5330b7dadf47993cd00cb1c1762ab663c582a18cec055309d5893ea7a241d7eecd0915654bc2fb5d1c8165b2e7
6
+ metadata.gz: 2effd5a50b198e6113853e8d695bcc98d396f6bc0d036e55756a7615755fa8f7498fbab09f7b51d13aef5fe0c2acd1de807c16f7446c5a188de18f7793ebab4b
7
+ data.tar.gz: 8cdafdd6dbe2da1aa03e44717211fc88440974c03c2057f57ecf514c5b9253d1aa7f1e9994758bcfb5ba614435b0853d070dfe32bfd25a7a033f45b03db86ca2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 2.5.9 (April 12, 2024)
2
+
3
+ ## Bug fixes:
4
+
5
+ - Fix installing plugins via relative paths [#7571](https://github.com/rubygems/rubygems/pull/7571)
6
+
1
7
  # 2.5.8 (April 11, 2024)
2
8
 
3
9
  ## 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 = "2024-04-11".freeze
8
- @git_commit_sha = "cf66a7369b".freeze
7
+ @built_at = "2024-04-12".freeze
8
+ @git_commit_sha = "4304697e0c".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -5,7 +5,7 @@ module Bundler
5
5
  class Installer
6
6
  class Path < Bundler::Source::Path
7
7
  def root
8
- Plugin.root
8
+ SharedHelpers.in_bundle? ? Bundler.root : Plugin.root
9
9
  end
10
10
 
11
11
  def generate_bin(spec, disable_extensions = false)
@@ -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
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.5.8".freeze
4
+ VERSION = "2.5.9".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.5.8
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-11 00:00:00.000000000 Z
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.8
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