mcrt 1.13.0 → 1.14.0
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/.github/ISSUE_TEMPLATE.md +3 -1
- data/Gemfile +1 -1
- data/lib/mcrt.rb +5 -0
- data/mcrt.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b201c37cb30840517096d0e4d055498648e451f
|
|
4
|
+
data.tar.gz: ca1444ebc60b72e87c69804899f4c5b8e6c41c0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34fd323465043cd77de737c9b49d2d06bd3cfb0eb0d759ee58aad0d40e7de65b57ba5a5290e43fe71eb71ade83252bedb022eb1188d134c4b5b1c4fb5a03d938
|
|
7
|
+
data.tar.gz: c33b54926f1b5603ad61bc0f4f3f192d1b22af9d3e77a05c86065c2c72aac4a182ab5c66160397909ef77830f13936e7da551171662ab599f895b7456f95042a
|
data/.github/ISSUE_TEMPLATE.md
CHANGED
|
@@ -35,7 +35,9 @@ Reproduction repository:
|
|
|
35
35
|
|
|
36
36
|
<!--
|
|
37
37
|
If possible, please create a repository that reproduces the issue with the
|
|
38
|
-
minimal amount of code possible.
|
|
38
|
+
minimal amount of code possible. It is highly recommended you take the time
|
|
39
|
+
to read "How to create a Minimal, Complete, and Verifiable example" at
|
|
40
|
+
https://stackoverflow.com/help/mcve
|
|
39
41
|
-->
|
|
40
42
|
|
|
41
43
|
Problem description:
|
data/Gemfile
CHANGED
data/lib/mcrt.rb
CHANGED
|
@@ -141,6 +141,11 @@ class MavenCentralReleaseTool
|
|
|
141
141
|
rescue Exception
|
|
142
142
|
# ignored
|
|
143
143
|
end
|
|
144
|
+
begin
|
|
145
|
+
addresses << JSON.parse(Net::HTTP.get(URI('https://api.ipify.org?format=json')))['ip']
|
|
146
|
+
rescue Exception
|
|
147
|
+
# ignored
|
|
148
|
+
end
|
|
144
149
|
addresses.sort.uniq
|
|
145
150
|
end
|
|
146
151
|
|
data/mcrt.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mcrt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Donald
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Maven Central Release Tool.
|
|
14
14
|
email: peter@realityforge.org
|