keycutter 1.0.0 → 1.0.1
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 +6 -0
- data/keycutter.gemspec +1 -3
- data/lib/keycutter/version.rb +1 -1
- data/lib/rubygems/commands/keys_command.rb +2 -2
- data/lib/rubygems_plugin.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b1782841974dd8da8cc8b8a04511d0b46863fe8
|
|
4
|
+
data.tar.gz: 3228cc1061a8eb23bd76d7eb17aa2ba6e49e9992
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83e8eeb306766fb18621dba091ab86cfeaefca0364c0242efca5013a4a3893679b1f0a1fbde93dae529c96a954a276186e282ed8c32b33b440b55141d1377962
|
|
7
|
+
data.tar.gz: 6e968118d2aaa186706216beb235a7d944b3c568b12453d04af85edc758dda617da18b116174b488f6dec4d7196d5928f94e2a7ae5f8249b77004b38ddaf6aa8
|
data/CHANGELOG.md
CHANGED
data/keycutter.gemspec
CHANGED
|
@@ -9,12 +9,10 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.licenses = ['MIT']
|
|
10
10
|
s.authors = ["Josh French"]
|
|
11
11
|
s.email = ["josh@vitamin-j.com"]
|
|
12
|
-
s.homepage = "
|
|
12
|
+
s.homepage = "https://github.com/joshfrench/keycutter"
|
|
13
13
|
s.summary = %q{Gemcutter key management}
|
|
14
14
|
s.description = %q{Multiple gemcutter accounts? Manage your keys with ease.}
|
|
15
15
|
|
|
16
|
-
s.rubyforge_project = "keycutter"
|
|
17
|
-
|
|
18
16
|
s.files = `git ls-files`.split("\n")
|
|
19
17
|
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
|
20
18
|
s.require_paths = ["lib"]
|
data/lib/keycutter/version.rb
CHANGED
|
@@ -26,7 +26,7 @@ class Gem::Commands::KeysCommand < Gem::Command
|
|
|
26
26
|
options[:add] = value
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
-
if Gem::Version.new(Gem::
|
|
29
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.4.0')
|
|
30
30
|
add_option '--host HOST', 'Use another gemcutter-compatible host' do |value,options|
|
|
31
31
|
options[:host] = value
|
|
32
32
|
end
|
|
@@ -51,7 +51,7 @@ class Gem::Commands::KeysCommand < Gem::Command
|
|
|
51
51
|
options[:list] = !(options[:default] || options[:remove] || options[:add])
|
|
52
52
|
|
|
53
53
|
if options[:add] then
|
|
54
|
-
if Gem::Version.new(Gem::
|
|
54
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.4.0')
|
|
55
55
|
gem_host = URI.parse(options[:host] || Gem.host).host
|
|
56
56
|
else
|
|
57
57
|
gem_host = 'Rubygems.org'
|
data/lib/rubygems_plugin.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: keycutter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh French
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Multiple gemcutter accounts? Manage your keys with ease.
|
|
14
14
|
email:
|
|
@@ -41,7 +41,7 @@ files:
|
|
|
41
41
|
- lib/rubygems_plugin.rb
|
|
42
42
|
- spec/configuration_spec.rb
|
|
43
43
|
- spec/spec_helper.rb
|
|
44
|
-
homepage:
|
|
44
|
+
homepage: https://github.com/joshfrench/keycutter
|
|
45
45
|
licenses:
|
|
46
46
|
- MIT
|
|
47
47
|
metadata: {}
|
|
@@ -60,8 +60,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
62
|
requirements: []
|
|
63
|
-
rubyforge_project:
|
|
64
|
-
rubygems_version: 2.5.2
|
|
63
|
+
rubyforge_project:
|
|
64
|
+
rubygems_version: 2.5.2.3
|
|
65
65
|
signing_key:
|
|
66
66
|
specification_version: 4
|
|
67
67
|
summary: Gemcutter key management
|