rubygems-update 3.5.8 → 3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a2678739bb9aec6c55fccde57b8156dea5c1fe48a21f2ad189e57dc0dd469d6
4
- data.tar.gz: cb8a2bb827a187b5f20e9a3ba0810cfcfafe64124e0b8b74bd3dd17b023e82dc
3
+ metadata.gz: 3ab914e068825c9de5c8d4452b8567dafcd64c4caf771657e3b345acf5280148
4
+ data.tar.gz: adcba32efcf1df21e5cf908ecb21a3e4aafa3b0d701cf90dfd4dabe9105f471d
5
5
  SHA512:
6
- metadata.gz: 15d77cdf7c54546c855e2d339fc0724a306d0d9235989504e0eac89b0d931401b2fb4e39bf026b6ac45dfd460d80082eeaaafa1249c68f4e552c6d664e5ce993
7
- data.tar.gz: 28dadfbea1be447d43ec7b820df10aa871316e31be79232b1eb25780bc994cefbf647700932e83fb55a401437350e6b760a9f1a1920bde5f0a346480bea23a3e
6
+ metadata.gz: 64ee2b3cd6e7f2697ceae3e588e413896410e80fa7038f2cf9c6c59f1ee423c216e79bfa22c6c1775aa6ae286d110dbc949b331edb87f7e08e202af89634d1ef
7
+ data.tar.gz: 610bc73529da5c2093c09712ac75d93fdb3896a9391425364e3bd9f419db93ee5989ad3e0c4fdd309c9d758bd4f925a90f52ed5e30e0f137a1b5403bdb235421
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 3.5.9 / 2024-04-12
2
+
3
+ ## Enhancements:
4
+
5
+ * Installs bundler 2.5.9 as a default gem.
6
+
1
7
  # 3.5.8 / 2024-04-11
2
8
 
3
9
  ## Security:
data/bundler/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
data/lib/rubygems.rb CHANGED
@@ -9,7 +9,7 @@
9
9
  require "rbconfig"
10
10
 
11
11
  module Gem
12
- VERSION = "3.5.8"
12
+ VERSION = "3.5.9"
13
13
  end
14
14
 
15
15
  # Must be first since it unloads the prelude from 1.9.2
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "rubygems-update"
5
- s.version = "3.5.8"
5
+ s.version = "3.5.9"
6
6
  s.authors = ["Jim Weirich", "Chad Fowler", "Eric Hodel", "Luis Lavena", "Aaron Patterson", "Samuel Giddins", "André Arko", "Evan Phoenix", "Hiroshi SHIBATA"]
7
7
  s.email = ["", "", "drbrain@segment7.net", "luislavena@gmail.com", "aaron@tenderlovemaking.com", "segiddins@segiddins.me", "andre@arko.net", "evan@phx.io", "hsbt@ruby-lang.org"]
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubygems-update
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.8
4
+ version: 3.5.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Weirich
@@ -16,7 +16,7 @@ authors:
16
16
  autorequire:
17
17
  bindir: exe
18
18
  cert_chain: []
19
- date: 2024-04-11 00:00:00.000000000 Z
19
+ date: 2024-04-12 00:00:00.000000000 Z
20
20
  dependencies: []
21
21
  description: |-
22
22
  A package (also known as a library) contains a set of functionality
@@ -725,7 +725,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
725
725
  - !ruby/object:Gem::Version
726
726
  version: '0'
727
727
  requirements: []
728
- rubygems_version: 3.5.8
728
+ rubygems_version: 3.5.9
729
729
  signing_key:
730
730
  specification_version: 4
731
731
  summary: RubyGems is a package management framework for Ruby. This gem is downloaded