rubygems-update 3.3.2 → 3.3.3
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 +11 -0
- data/bundler/CHANGELOG.md +6 -0
- data/bundler/lib/bundler/build_metadata.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +0 -3
- data/bundler/lib/bundler/settings.rb +1 -0
- data/bundler/lib/bundler/version.rb +1 -1
- data/lib/rubygems.rb +9 -2
- data/rubygems-update.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 750773ce8a64c0d956a7a38abc7e14a70a361510081982f6e34dbbf85c5cbf65
|
|
4
|
+
data.tar.gz: a6963c67ef4e2300c549c3d95b5d1e67ff54afcff113215b0a35e7f11973bdec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 158cd64df064a030d8d350f0f66f9d9805018fea3dba122349a1ad239db0579e832d021035bb8f33cccb78f7a227fcfd0ceb4b0a4602a944102c12378f6b480e
|
|
7
|
+
data.tar.gz: d359d94fd7939b2c21f0830d64eb1d60d7b3dff016cb7e25299ca7391a24d76970cadb1a3287144a0354d72cf9461a1ca98faf22359e18df799a3a360580dd67
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
# 3.3.3 / 2021-12-24
|
|
2
|
+
|
|
3
|
+
## Enhancements:
|
|
4
|
+
|
|
5
|
+
* Installs bundler 2.3.3 as a default gem.
|
|
6
|
+
|
|
7
|
+
## Bug fixes:
|
|
8
|
+
|
|
9
|
+
* Fix gem installation failing in Solaris due to bad `IO#flock` usage.
|
|
10
|
+
Pull request #5216 by mame
|
|
11
|
+
|
|
1
12
|
# 3.3.2 / 2021-12-23
|
|
2
13
|
|
|
3
14
|
## Enhancements:
|
data/bundler/CHANGELOG.md
CHANGED
|
@@ -165,9 +165,6 @@ module Bundler
|
|
|
165
165
|
|
|
166
166
|
def normalize_settings
|
|
167
167
|
Bundler.settings.set_command_option :path, nil if options[:system]
|
|
168
|
-
Bundler.settings.temporary(:path_relative_to_cwd => false) do
|
|
169
|
-
Bundler.settings.set_command_option :path, "vendor/bundle" if Bundler.settings[:deployment] && Bundler.settings[:path].nil?
|
|
170
|
-
end
|
|
171
168
|
Bundler.settings.set_command_option_if_given :path, options[:path]
|
|
172
169
|
Bundler.settings.temporary(:path_relative_to_cwd => false) do
|
|
173
170
|
Bundler.settings.set_command_option :path, "bundle" if options["standalone"] && Bundler.settings[:path].nil?
|
|
@@ -219,6 +219,7 @@ module Bundler
|
|
|
219
219
|
def path
|
|
220
220
|
configs.each do |_level, settings|
|
|
221
221
|
path = value_for("path", settings)
|
|
222
|
+
path = "vendor/bundle" if value_for("deployment", settings) && path.nil?
|
|
222
223
|
path_system = value_for("path.system", settings)
|
|
223
224
|
disabled_shared_gems = value_for("disable_shared_gems", settings)
|
|
224
225
|
next if path.nil? && path_system.nil? && disabled_shared_gems.nil?
|
data/lib/rubygems.rb
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
require 'rbconfig'
|
|
9
9
|
|
|
10
10
|
module Gem
|
|
11
|
-
VERSION = "3.3.
|
|
11
|
+
VERSION = "3.3.3".freeze
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
# Must be first since it unloads the prelude from 1.9.2
|
|
@@ -788,7 +788,7 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|
|
788
788
|
|
|
789
789
|
def self.open_with_flock(path, flags, &block)
|
|
790
790
|
File.open(path, flags) do |io|
|
|
791
|
-
|
|
791
|
+
if !java_platform? && !solaris_platform?
|
|
792
792
|
begin
|
|
793
793
|
io.flock(File::LOCK_EX)
|
|
794
794
|
rescue Errno::ENOSYS, Errno::ENOTSUP
|
|
@@ -1015,6 +1015,13 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|
|
1015
1015
|
RUBY_PLATFORM == "java"
|
|
1016
1016
|
end
|
|
1017
1017
|
|
|
1018
|
+
##
|
|
1019
|
+
# Is this platform Solaris?
|
|
1020
|
+
|
|
1021
|
+
def self.solaris_platform?
|
|
1022
|
+
RUBY_PLATFORM =~ /solaris/
|
|
1023
|
+
end
|
|
1024
|
+
|
|
1018
1025
|
##
|
|
1019
1026
|
# Load +plugins+ as Ruby files
|
|
1020
1027
|
|
data/rubygems-update.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "rubygems-update"
|
|
5
|
-
s.version = "3.3.
|
|
5
|
+
s.version = "3.3.3"
|
|
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.3.
|
|
4
|
+
version: 3.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jim Weirich
|
|
@@ -804,7 +804,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
804
804
|
- !ruby/object:Gem::Version
|
|
805
805
|
version: '0'
|
|
806
806
|
requirements: []
|
|
807
|
-
rubygems_version: 3.3.
|
|
807
|
+
rubygems_version: 3.3.3
|
|
808
808
|
signing_key:
|
|
809
809
|
specification_version: 4
|
|
810
810
|
summary: RubyGems is a package management framework for Ruby.
|