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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e7d571fe04c0cb4876f243c393e46adb6dc1d77
4
- data.tar.gz: 1ca75d895460d33d14bb9d84b4efb98ecb32825a
3
+ metadata.gz: 5b1782841974dd8da8cc8b8a04511d0b46863fe8
4
+ data.tar.gz: 3228cc1061a8eb23bd76d7eb17aa2ba6e49e9992
5
5
  SHA512:
6
- metadata.gz: 650f97d0bf40797017af5cb62ea91a7f8d523653334b893c3022a6b32e84476096b789f72a01c934d577fa25e465fdd4a93b5e8f8837234a78aaca70ef0ca5d6
7
- data.tar.gz: f3d4e02875759d791c1403342c38f628b092a84895f7b9396446f5c0a2c82f14768ce67c046387677e008377d406feaea36ccb4ec8e7cfee1f7d113de09f1a5f
6
+ metadata.gz: 83e8eeb306766fb18621dba091ab86cfeaefca0364c0242efca5013a4a3893679b1f0a1fbde93dae529c96a954a276186e282ed8c32b33b440b55141d1377962
7
+ data.tar.gz: 6e968118d2aaa186706216beb235a7d944b3c568b12453d04af85edc758dda617da18b116174b488f6dec4d7196d5928f94e2a7ae5f8249b77004b38ddaf6aa8
@@ -1,5 +1,11 @@
1
1
  ## Change Log
2
2
 
3
+ ### 1.0.1
4
+
5
+ #### Fixed
6
+
7
+ * removed deprecated Gem configurations
8
+
3
9
  ### 1.0.0
4
10
 
5
11
  #### Fixed
@@ -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 = "http://github.com/joshfrench/keycutter"
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"]
@@ -1,3 +1,3 @@
1
1
  module Keycutter
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -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::RubyGemsVersion) >= Gem::Version.new('1.4.0')
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::RubyGemsVersion) >= Gem::Version.new('1.4.0')
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'
@@ -1,6 +1,6 @@
1
1
  require 'rubygems/command_manager'
2
2
 
3
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.3.6')
3
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.3.6')
4
4
  Gem::CommandManager.instance.register_command :keys
5
5
  end
6
6
 
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.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: 2016-12-05 00:00:00.000000000 Z
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: http://github.com/joshfrench/keycutter
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: keycutter
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