keycutter 1.0.1 → 1.0.2
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/README.md +3 -3
- data/keycutter.gemspec +2 -2
- data/lib/keycutter/version.rb +1 -1
- data/lib/rubygems/commands/keys_command.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0edce0025f37a69d2ec054e552ec799d0613898d
|
|
4
|
+
data.tar.gz: 5187f196cae5e219966065d0b3e80f14318100b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e2d7bae5048cbd78f839b6d2d8cf4e9beaf4dcfcd3fa2410318c38e28ae3f9d4fda030b02ed17a9fa0578c7f4ae473c2107a454c83aeaab9ae97c1f6067c456
|
|
7
|
+
data.tar.gz: e8e2f1f4d18ccce96bd7e6f948c264784839e0e4573366cbc45c8dcb4e0f21bda625d5a24b0d9e5ef442c810967239109f0ccc7579cc45c42adf0f335a7ef943
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Keycutter
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
Multiple
|
|
4
|
+
Multiple rubygems accounts? Manage your keys with ease. Keycutter adds account
|
|
5
5
|
management to rubygems, so you can manage gems for multiple accounts or
|
|
6
6
|
organizations.
|
|
7
7
|
|
|
@@ -32,12 +32,12 @@ additional keys:
|
|
|
32
32
|
You'll be prompted for your Rubygems.org email and password.
|
|
33
33
|
|
|
34
34
|
If you're using RubyGems 1.4.1 or higher, you can pass the `--host` option to
|
|
35
|
-
use a
|
|
35
|
+
use a rubygems-compatible host when adding a key:
|
|
36
36
|
|
|
37
37
|
$ gem keys --add internal --host http://gems.mycompany.com
|
|
38
38
|
|
|
39
39
|
By default, your existing rubygems.org key is used whenever communicating with
|
|
40
|
-
|
|
40
|
+
rubygems. To switch the default key used to manage remote gems:
|
|
41
41
|
|
|
42
42
|
$ gem keys --default work
|
|
43
43
|
|
data/keycutter.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.authors = ["Josh French"]
|
|
11
11
|
s.email = ["josh@vitamin-j.com"]
|
|
12
12
|
s.homepage = "https://github.com/joshfrench/keycutter"
|
|
13
|
-
s.summary = %q{
|
|
14
|
-
s.description = %q{Multiple
|
|
13
|
+
s.summary = %q{Rubygems key management}
|
|
14
|
+
s.description = %q{Multiple rubygems.org accounts? Manage your keys with ease.}
|
|
15
15
|
|
|
16
16
|
s.files = `git ls-files`.split("\n")
|
|
17
17
|
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
data/lib/keycutter/version.rb
CHANGED
|
@@ -8,7 +8,7 @@ class Gem::Commands::KeysCommand < Gem::Command
|
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
def initialize
|
|
11
|
-
super 'keys', "Adds management for multiple
|
|
11
|
+
super 'keys', "Adds management for multiple rubygems accounts"
|
|
12
12
|
|
|
13
13
|
add_option '-l', '--list', 'List keys' do |value,options|
|
|
14
14
|
options[:list] = value
|
|
@@ -27,7 +27,7 @@ class Gem::Commands::KeysCommand < Gem::Command
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.4.0')
|
|
30
|
-
add_option '--host HOST', 'Use another
|
|
30
|
+
add_option '--host HOST', 'Use another rubygems-compatible host' do |value,options|
|
|
31
31
|
options[:host] = value
|
|
32
32
|
end
|
|
33
33
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh French
|
|
@@ -10,7 +10,7 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2020-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: Multiple
|
|
13
|
+
description: Multiple rubygems.org accounts? Manage your keys with ease.
|
|
14
14
|
email:
|
|
15
15
|
- josh@vitamin-j.com
|
|
16
16
|
executables: []
|
|
@@ -64,7 +64,7 @@ rubyforge_project:
|
|
|
64
64
|
rubygems_version: 2.5.2.3
|
|
65
65
|
signing_key:
|
|
66
66
|
specification_version: 4
|
|
67
|
-
summary:
|
|
67
|
+
summary: Rubygems key management
|
|
68
68
|
test_files:
|
|
69
69
|
- features/add.feature
|
|
70
70
|
- features/default.feature
|