awskeyring 0.0.3 → 0.0.4

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: c334764f64951c2cdc1956a0289601b6c088bd5c
4
- data.tar.gz: 2dd4c1112a6ee8eb15821d93e9ff352ce2267fac
3
+ metadata.gz: ccf8f7a584af54361cdc4250f47816e498f3a965
4
+ data.tar.gz: e66a63bf9340c2f984237481b371b72d9c09daf5
5
5
  SHA512:
6
- metadata.gz: a4faa576d8f631d0b3ffb687760de1a813e0f4fd2e92ea2dbf463e5c63bd0b25b6eb61381d0a96d2943bf0d779e15de2c234571d8a7a0e11d52a146b6127959b
7
- data.tar.gz: b2cc0d573f5acda892c2d84f7d6e51254122498da548ef2d89567f820f93b55bd82fc986354fd4eee45e9512238d46896e6f010498be21c7f01643c9eae00620
6
+ metadata.gz: 17c8af8530dfd2bf2962017afaeff0c6b7e68c59ae825982eefc932ae404e46a9b860daeeba20d2cc2b2f02bca8790d4687910859421c87f5af099f3232632b8
7
+ data.tar.gz: 19992ac28d7960adcab400f9961398f3e3a34e9d17d635aa06493cb45268c27dd15dac89f8c2f48c558643c0d754fa593e312e8d7eb7fed5c848a5c77ada4ffa
data/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Change Log
2
2
 
3
- ## [0.0.3](https://github.com/vibrato/awskeyring/tree/0.0.3) (2018-01-29)
4
- [Full Changelog](https://github.com/vibrato/awskeyring/compare/v0.0.2...0.0.3)
3
+ ## [v0.0.3](https://github.com/vibrato/awskeyring/tree/v0.0.3) (2018-01-28)
4
+ [Full Changelog](https://github.com/vibrato/awskeyring/compare/v0.0.2...v0.0.3)
5
5
 
6
6
  **Implemented enhancements:**
7
7
 
data/README.md CHANGED
@@ -16,6 +16,22 @@ from the Terminal, and to provide useful functions like assuming roles.
16
16
  For Enterprise environments there are better suited tools to use
17
17
  like [HashiCorp Vault](https://vaultproject.io/).
18
18
 
19
+ ## Quick start
20
+
21
+ First you need to initialise your keychain to hold your AWS credentials.
22
+
23
+ awskeyring initialise
24
+
25
+ Then add your keys to it.
26
+
27
+ awskeyring add personal-aws
28
+
29
+ Now your keys are stored safely in the macOS keychain. To print environment variables run...
30
+
31
+ awskeyring env personal-aws
32
+
33
+ See below and in the wiki for more details on usage.
34
+
19
35
  ## Installation
20
36
 
21
37
  Install it with:
data/Rakefile CHANGED
@@ -3,7 +3,9 @@ require 'rspec/core/rake_task'
3
3
  require 'rubocop/rake_task'
4
4
  require 'github_changelog_generator/task'
5
5
 
6
- GitHubChangelogGenerator::RakeTask.new :changelog
6
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
7
+ config.future_release = "v#{Awskeyring::VERSION}"
8
+ end
7
9
 
8
10
  RuboCop::RakeTask.new do |rubocop|
9
11
  rubocop.options = ['-D']
@@ -1,3 +1,3 @@
1
1
  module Awskeyring
2
- VERSION = '0.0.3'.freeze
2
+ VERSION = '0.0.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awskeyring
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tristan Morgan