awskeyring 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ba83a2dbfa7ff7613421c1f3fbe82c695a67055
4
- data.tar.gz: 4b12ee81c5a56095407c68d25f064a5466fd3d46
3
+ metadata.gz: f87fe993749e587c364bcb0465706d9699b9e5c9
4
+ data.tar.gz: e170aefaa92f8a454f04134b2180e795296761aa
5
5
  SHA512:
6
- metadata.gz: 6c5e2cc15bb1adb771b1d8bc6282fd62bf2285932a14bd7bb498606d290fc3d4ccc3b58e7207a73cde0fadabca1c5e827a6a5b8a976b3ab4371bb0c4eb9f3234
7
- data.tar.gz: bb684835c14ed7621bc57ffac0ec05390d0563efee66ea9a2b216d667766406f7821ee508993ffe08d71ecab974b6a5b68abcbb563fecc928bd772eb8e71ad28
6
+ metadata.gz: d610d8d53bdc0fc768f06d07725e46ba557dd4647dfa3d147730878e730a0629bd9f824701d9315e140c877f33c98f95da8ef6be261e7649ce101486f7089c97
7
+ data.tar.gz: db49f9812edfb131cbbb019334b94cad60a2a09398f0ba4dfe99510fca23e6dfe230460b7b39452eb5c576bb22545651abdbe5bf8c95dbc858a41b6b1bf09291
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # Change Log
2
2
 
3
- ## [v1.0.0](https://github.com/vibrato/awskeyring/tree/v1.0.0) (2019-05-20)
3
+ ## [v1.0.1](https://github.com/vibrato/awskeyring/tree/v1.0.1) (2019-05-23)
4
+ [Full Changelog](https://github.com/vibrato/awskeyring/compare/v1.0.0...v1.0.1)
5
+
6
+ **Implemented enhancements:**
7
+
8
+ - auto-complete the --version [\#47](https://github.com/vibrato/awskeyring/pull/47) ([tristanmorgan](https://github.com/tristanmorgan))
9
+
10
+ **Fixed bugs:**
11
+
12
+ - Unfreeze secret strings. [\#46](https://github.com/vibrato/awskeyring/pull/46) ([tristanmorgan](https://github.com/tristanmorgan))
13
+
14
+ ## [v1.0.0](https://github.com/vibrato/awskeyring/tree/v1.0.0) (2019-05-19)
4
15
  [Full Changelog](https://github.com/vibrato/awskeyring/compare/v0.10.0...v1.0.0)
5
16
 
6
17
  **Implemented enhancements:**
@@ -15,7 +15,7 @@ module Awskeyring
15
15
  end
16
16
 
17
17
  private_class_method def self.hide_input # rubocop:disable Metrics/MethodLength
18
- password = ''
18
+ password = +''
19
19
  loop do
20
20
  character = $stdin.getch
21
21
  break unless character
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Awskeyring
4
4
  # The Gem's version number
5
- VERSION = '1.0.0'
5
+ VERSION = '1.0.1'
6
6
  # The Gem's homepage
7
7
  HOMEPAGE = 'https://github.com/vibrato/awskeyring'
8
8
  end
@@ -15,6 +15,7 @@ class AwskeyringCommand < Thor # rubocop:disable Metrics/ClassLength
15
15
  I18n.backend.load_translations
16
16
 
17
17
  map %w[--version -v] => :__version
18
+ map %w[--help -h] => :help
18
19
  map ['init'] => :initialise
19
20
  map ['adr'] => :add_role
20
21
  map ['con'] => :console
@@ -379,7 +380,7 @@ class AwskeyringCommand < Thor # rubocop:disable Metrics/ClassLength
379
380
  comp_len = 3 if curr.start_with?('-')
380
381
 
381
382
  case prev
382
- when 'help'
383
+ when 'help', File.basename($PROGRAM_NAME)
383
384
  comp_len = 0
384
385
  when 'remove-role', '-r', 'rmr'
385
386
  comp_len = 2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awskeyring
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
  - Tristan Morgan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-20 00:00:00.000000000 Z
11
+ date: 2019-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-iam