aws-keychain-util 0.0.2 → 0.0.3

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.
@@ -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 = '0.0.2'
8
+ gem.version = '0.0.3'
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
@@ -112,8 +112,8 @@ when 'shell'
112
112
 
113
113
  item = get_item_from_args_for_command('shell')
114
114
  aws_env = {}
115
- aws_env['AWS_ACCESS_KEY_ID'] = item.attributes[:account]
116
- aws_env['AWS_SECRET_ACCESS_KEY'] = item.password
115
+ aws_env['AWS_ACCESS_KEY_ID'] = aws_env['AWS_ACCESS_KEY'] = item.attributes[:account]
116
+ aws_env['AWS_SECRET_ACCESS_KEY'] = aws_env['AWS_SECRET_KEY'] = item.password
117
117
  aws_env['AWS_CREDS_NAME'] = item.attributes[:label]
118
118
  aws_env['RPROMPT'] = "(aws #{item.attributes[:label]})" # zsh only
119
119
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-keychain-util
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-19 00:00:00.000000000 Z
12
+ date: 2013-03-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby-keychain