aws-keychain-util 0.0.1 → 0.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.
- data/aws-keychain-util.gemspec +1 -1
- data/bin/aws-creds +1 -1
- metadata +1 -1
data/aws-keychain-util.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require 'aws-keychain-util/version'
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = "aws-keychain-util"
|
|
8
|
-
gem.version =
|
|
8
|
+
gem.version = '0.0.2'
|
|
9
9
|
gem.authors = ["Zach Wily"]
|
|
10
10
|
gem.email = ["zach@zwily.com"]
|
|
11
11
|
gem.description = %q{Helps manage a keychain of AWS credentials on OS X.}
|
data/bin/aws-creds
CHANGED
|
@@ -58,7 +58,7 @@ when 'init'
|
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
name = ask("Name for AWS keychain (default: 'aws'): ")
|
|
61
|
-
name = "aws" if
|
|
61
|
+
name = "aws" if name == ""
|
|
62
62
|
|
|
63
63
|
puts "The OS will now ask you for a password to protect your keychain. Choose wisely."
|
|
64
64
|
keychain = Keychain.create(name)
|