rubygems-update 3.3.9 → 3.3.10
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 +13 -0
- data/bundler/CHANGELOG.md +8 -0
- data/bundler/exe/bundle +1 -1
- data/bundler/lib/bundler/build_metadata.rb +2 -2
- data/bundler/lib/bundler/fetcher.rb +1 -0
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler.rb +1 -1
- data/lib/rubygems/compatibility.rb +4 -2
- data/lib/rubygems/package.rb +6 -5
- data/lib/rubygems.rb +1 -1
- data/rubygems-update.gemspec +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: 88b51a16140837e81c1775155ede2bfd054f6ac05e34072ebfa871814decd8e6
|
|
4
|
+
data.tar.gz: 12de868024f63a63873184ddf8cf856f14808484fb41dd091c862390870cbd4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0aab9e5b5388126454361b8a1b591cb376da5edc5449246690cf0c666cfed5714ad95dfa6844739362cbae488fd1fb868eccaa5a990bb5e3a50eaef9a7df28ca
|
|
7
|
+
data.tar.gz: e438ac4bf829acc1244d51dd00f098c1073d904391b8c5feee24fad1949b870b23cd60d180ac458db707bbcdae2c13bc6ede5a6491e6c0ee9afa23884f7305b6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# 3.3.10 / 2022-03-23
|
|
2
|
+
|
|
3
|
+
## Enhancements:
|
|
4
|
+
|
|
5
|
+
* Installs bundler 2.3.10 as a default gem.
|
|
6
|
+
|
|
7
|
+
## Documentation:
|
|
8
|
+
|
|
9
|
+
* Enable `Gem::Package` example in RDoc documentation. Pull request #5399
|
|
10
|
+
by nobu
|
|
11
|
+
* Unhide RDoc documentation from top level `Gem` module. Pull request
|
|
12
|
+
#5396 by nobu
|
|
13
|
+
|
|
1
14
|
# 3.3.9 / 2022-03-09
|
|
2
15
|
|
|
3
16
|
## Enhancements:
|
data/bundler/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# 2.3.10 (March 23, 2022)
|
|
2
|
+
|
|
3
|
+
## Enhancements:
|
|
4
|
+
|
|
5
|
+
- More helpful reporting of marshal loading issues [#5416](https://github.com/rubygems/rubygems/pull/5416)
|
|
6
|
+
- Report Github Actions CI provider within user agent string [#5400](https://github.com/rubygems/rubygems/pull/5400)
|
|
7
|
+
- Remove extra closing bracket in version warning [#5397](https://github.com/rubygems/rubygems/pull/5397)
|
|
8
|
+
|
|
1
9
|
# 2.3.9 (March 9, 2022)
|
|
2
10
|
|
|
3
11
|
## Enhancements:
|
data/bundler/exe/bundle
CHANGED
|
@@ -20,7 +20,7 @@ gem "bundler", Bundler::VERSION if Gem.rubygems_version < Gem::Version.new("2.6.
|
|
|
20
20
|
|
|
21
21
|
if Gem.rubygems_version < Gem::Version.new("3.2.3") && Gem.ruby_version < Gem::Version.new("2.6.a") && !ENV["BUNDLER_NO_OLD_RUBYGEMS_WARNING"]
|
|
22
22
|
Bundler.ui.warn \
|
|
23
|
-
"Your RubyGems version (#{Gem::VERSION})
|
|
23
|
+
"Your RubyGems version (#{Gem::VERSION}) has a bug that prevents " \
|
|
24
24
|
"`required_ruby_version` from working for Bundler. Any scripts that use " \
|
|
25
25
|
"`gem install bundler` will break as soon as Bundler drops support for " \
|
|
26
26
|
"your Ruby version. Please upgrade RubyGems to avoid future breakage " \
|
|
@@ -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 = "2022-03-
|
|
8
|
-
@git_commit_sha = "
|
|
7
|
+
@built_at = "2022-03-23".freeze
|
|
8
|
+
@git_commit_sha = "4bbb70e7de".freeze
|
|
9
9
|
@release = true
|
|
10
10
|
# end ivars
|
|
11
11
|
|
data/bundler/lib/bundler.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
|
-
# :stopdoc:
|
|
3
2
|
|
|
4
3
|
#--
|
|
5
4
|
# This file contains all sorts of little compatibility hacks that we've
|
|
@@ -8,10 +7,13 @@
|
|
|
8
7
|
#
|
|
9
8
|
# Ruby 1.9.x has introduced some things that are awkward, and we need to
|
|
10
9
|
# support them, so we define some constants to use later.
|
|
10
|
+
#
|
|
11
|
+
# TODO remove at RubyGems 4
|
|
11
12
|
#++
|
|
12
13
|
|
|
13
|
-
# TODO remove at RubyGems 4
|
|
14
14
|
module Gem
|
|
15
|
+
# :stopdoc:
|
|
16
|
+
|
|
15
17
|
RubyGemsVersion = VERSION
|
|
16
18
|
deprecate_constant(:RubyGemsVersion)
|
|
17
19
|
|
data/lib/rubygems/package.rb
CHANGED
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
|
|
4
4
|
# See LICENSE.txt for additional licensing information.
|
|
5
5
|
#++
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
require_relative "../rubygems"
|
|
8
|
+
require_relative 'security'
|
|
9
|
+
require_relative 'user_interaction'
|
|
10
|
+
|
|
11
|
+
##
|
|
7
12
|
# Example using a Gem::Package
|
|
8
13
|
#
|
|
9
14
|
# Builds a .gem file given a Gem::Specification. A .gem file is a tarball
|
|
@@ -41,10 +46,6 @@
|
|
|
41
46
|
# #files are the files in the .gem tar file, not the Ruby files in the gem
|
|
42
47
|
# #extract_files and #contents automatically call #verify
|
|
43
48
|
|
|
44
|
-
require_relative "../rubygems"
|
|
45
|
-
require_relative 'security'
|
|
46
|
-
require_relative 'user_interaction'
|
|
47
|
-
|
|
48
49
|
class Gem::Package
|
|
49
50
|
include Gem::UserInteraction
|
|
50
51
|
|
data/lib/rubygems.rb
CHANGED
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.10"
|
|
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.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jim Weirich
|
|
@@ -16,7 +16,7 @@ authors:
|
|
|
16
16
|
autorequire:
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
|
-
date: 2022-03-
|
|
19
|
+
date: 2022-03-23 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
|
|
@@ -803,7 +803,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
803
803
|
- !ruby/object:Gem::Version
|
|
804
804
|
version: '0'
|
|
805
805
|
requirements: []
|
|
806
|
-
rubygems_version: 3.3.
|
|
806
|
+
rubygems_version: 3.3.10
|
|
807
807
|
signing_key:
|
|
808
808
|
specification_version: 4
|
|
809
809
|
summary: RubyGems is a package management framework for Ruby.
|