rubygems-update 3.0.7 → 3.0.8

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: 067ea320ef1da81eb3037d8017bd8b72398d0bf9621b8cddda0d3d12a5b53d7f
4
- data.tar.gz: 468aa6f0452d5e93817b8266d250b17c08d4f47c9f7e597e30fd2ad5d4e69f86
3
+ metadata.gz: 837ea3dd915e8194747b344aeaaaf85a5b861054659ff5c5988926e146e7cd42
4
+ data.tar.gz: 5d226b0fefd8999bdcc38cdfe359a213adc1524941dabf530bc9abfbdedebf64
5
5
  SHA512:
6
- metadata.gz: 02ed09ac0d47ec4b42edfa0a9ad56e1fcb931797a88cfc26af2a7b5f08695decd22e1d0cfbfc10de7eda7f7c5796da65fb1f56219d5e6eead630a184fe51a20a
7
- data.tar.gz: 3c6c5d57a43ccde51ae86d056fe0d634aab0385daac135aad5f15a1b8e13319190fe9f5b3c3a9803dcb0c16c416059f40e7ca13bbc3666cdc3d6e21c253a2b79
6
+ metadata.gz: d09e5aeb383821d40045e63b0cbc703383e46dca8660ec0caae2e8e10c086405b1993f62220b9b614500998b5223a552779ceed72b8bae724cad340fea095e1d
7
+ data.tar.gz: 2ff98e3080a2f92a0e4195b56225bab3fe5c9ae7b19cc7dafa247bf5bd39e01b1037eab453f364be1666bcb819a7311789e9279781599b62196ad88a6c26361a
@@ -1,5 +1,12 @@
1
1
  # coding: UTF-8
2
2
 
3
+ === 3.0.8 / 2020-02-19
4
+
5
+ Bug fixes:
6
+
7
+ * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
8
+ Nobuyoshi Nakada.
9
+
3
10
  === 3.0.7 / 2020-02-18
4
11
 
5
12
  Bug fixes:
@@ -9,7 +9,7 @@
9
9
  require 'rbconfig'
10
10
 
11
11
  module Gem
12
- VERSION = "3.0.7".freeze
12
+ VERSION = "3.0.8".freeze
13
13
  end
14
14
 
15
15
  # Must be first since it unloads the prelude from 1.9.2
@@ -2478,6 +2478,7 @@ class Gem::Specification < Gem::BasicSpecification
2478
2478
  # still have their default values are omitted.
2479
2479
 
2480
2480
  def to_ruby
2481
+ require 'openssl'
2481
2482
  mark_version
2482
2483
  result = []
2483
2484
  result << "# -*- encoding: utf-8 -*-"
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "rubygems-update"
5
- s.version = "3.0.7"
5
+ s.version = "3.0.8"
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.0.7
4
+ version: 3.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Weirich