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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3f6327b2589526a7c77df69e1d465dea9a11c31cd8767d023b5024260bdced0
4
- data.tar.gz: 53edd92f489fbcf766960c771faef4db415d8777b63f888de65a7fd898d2bf15
3
+ metadata.gz: 88b51a16140837e81c1775155ede2bfd054f6ac05e34072ebfa871814decd8e6
4
+ data.tar.gz: 12de868024f63a63873184ddf8cf856f14808484fb41dd091c862390870cbd4f
5
5
  SHA512:
6
- metadata.gz: 5d509b8e9e2990332eeac63f89a7b50393be72e49f786b4efde475e65c80bb2272630b53e067c89086c9e3171c7032179f9a133bfa93587ac9a01e0094ff54b9
7
- data.tar.gz: 696996edd0596c91252c6ac6c9806f24ccd5db05324cfb9b7fff1f4610a8fe762598b1407ff7a8c763e47f5c39a8ad6b4ff2301f7785e2e9d92909a461424df6
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})) has a bug that prevents " \
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-09".freeze
8
- @git_commit_sha = "7f90c0083a".freeze
7
+ @built_at = "2022-03-23".freeze
8
+ @git_commit_sha = "4bbb70e7de".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -226,6 +226,7 @@ module Bundler
226
226
  "GO_SERVER_URL" => "go",
227
227
  "SNAP_CI" => "snap",
228
228
  "GITLAB_CI" => "gitlab",
229
+ "GITHUB_ACTIONS" => "github",
229
230
  "CI_NAME" => ENV["CI_NAME"],
230
231
  "CI" => "ci",
231
232
  }
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module Bundler
4
- VERSION = "2.3.9".freeze
4
+ VERSION = "2.3.10".freeze
5
5
 
6
6
  def self.bundler_major_version
7
7
  @bundler_major_version ||= VERSION.split(".").first.to_i
@@ -561,7 +561,7 @@ EOF
561
561
 
562
562
  def load_marshal(data)
563
563
  Marshal.load(data)
564
- rescue StandardError => e
564
+ rescue TypeError => e
565
565
  raise MarshalError, "#{e.class}: #{e.message}"
566
566
  end
567
567
 
@@ -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
 
@@ -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
@@ -8,7 +8,7 @@
8
8
  require 'rbconfig'
9
9
 
10
10
  module Gem
11
- VERSION = "3.3.9".freeze
11
+ VERSION = "3.3.10".freeze
12
12
  end
13
13
 
14
14
  # 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.3.9"
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.9
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-09 00:00:00.000000000 Z
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.9
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.