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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5b1782841974dd8da8cc8b8a04511d0b46863fe8
4
- data.tar.gz: 3228cc1061a8eb23bd76d7eb17aa2ba6e49e9992
3
+ metadata.gz: 0edce0025f37a69d2ec054e552ec799d0613898d
4
+ data.tar.gz: 5187f196cae5e219966065d0b3e80f14318100b2
5
5
  SHA512:
6
- metadata.gz: 83e8eeb306766fb18621dba091ab86cfeaefca0364c0242efca5013a4a3893679b1f0a1fbde93dae529c96a954a276186e282ed8c32b33b440b55141d1377962
7
- data.tar.gz: 6e968118d2aaa186706216beb235a7d944b3c568b12453d04af85edc758dda617da18b116174b488f6dec4d7196d5928f94e2a7ae5f8249b77004b38ddaf6aa8
6
+ metadata.gz: 3e2d7bae5048cbd78f839b6d2d8cf4e9beaf4dcfcd3fa2410318c38e28ae3f9d4fda030b02ed17a9fa0578c7f4ae473c2107a454c83aeaab9ae97c1f6067c456
7
+ data.tar.gz: e8e2f1f4d18ccce96bd7e6f948c264784839e0e4573366cbc45c8dcb4e0f21bda625d5a24b0d9e5ef442c810967239109f0ccc7579cc45c42adf0f335a7ef943
@@ -1,5 +1,11 @@
1
1
  ## Change Log
2
2
 
3
+ ### 1.0.2
4
+
5
+ #### Changed
6
+
7
+ Replaced references to gemcutter, almost 10 years after it became rubygems
8
+
3
9
  ### 1.0.1
4
10
 
5
11
  #### Fixed
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  Keycutter
2
2
  =========
3
3
 
4
- Multiple gemcutter accounts? Manage your keys with ease. Keycutter adds account
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 gemcutter-compatible host when adding a key:
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
- gemcutter. To switch the default key used to manage remote gems:
40
+ rubygems. To switch the default key used to manage remote gems:
41
41
 
42
42
  $ gem keys --default work
43
43
 
@@ -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{Gemcutter key management}
14
- s.description = %q{Multiple gemcutter accounts? Manage your keys with ease.}
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")
@@ -1,3 +1,3 @@
1
1
  module Keycutter
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -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 gemcutter accounts"
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 gemcutter-compatible host' do |value,options|
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.1
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 gemcutter accounts? Manage your keys with ease.
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: Gemcutter key management
67
+ summary: Rubygems key management
68
68
  test_files:
69
69
  - features/add.feature
70
70
  - features/default.feature