codepipeline 0.3.1 → 0.3.2

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
  SHA256:
3
- metadata.gz: 21c1dc801908feb55136bfd9fb4ee46693a81545e77ed5a0101d3d85709544cd
4
- data.tar.gz: f8ffcf81382d89b98532394d22eacbe020b4d0d58a8ca439931c52691a4e183f
3
+ metadata.gz: 05f17ca618db165035513693108d3be5f46107656b16998db8c15bfd12a2e2af
4
+ data.tar.gz: 30e9a655b994ba3ace0827db6474003e4b38b8bdeec9bcbe1fcbabd4be62ab1d
5
5
  SHA512:
6
- metadata.gz: 2c7ad98f5f0ed471eaea56810f9fcd9cdf031bca8ba43864fcec9a1c54364b02f6fa315f9855952bf628c2afd8651ab8132a82639ebe36428f33ca52d6ba4d20
7
- data.tar.gz: 5ec91787ffca34f0730ce6dc2e4dec6d27519a4962e044212cdf4d95258efcb12da0c11d299e0e9897c8562960ffa1dfd76f6dbac9215eb5d97dc904c9f4b01a
6
+ metadata.gz: fa75143c223738fc56dd534ef50ba662e29839e35963323174fa11898c34bc297d72e1b8b09e0c0cca40ca2263a2f165d3e72d0fd9c98f64e752389374b16378
7
+ data.tar.gz: c05c3b8448872ccdcc7961eb8306ac4ec3f4a293ce9e82265d1063e4d9680adb5544e5568b35225870ad04fabfff6515be5f1df72192d775794dd38c3ab3b21f
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.3.2]
7
+ - update vendor/aws_data
8
+
6
9
  ## [0.3.1]
7
10
  - fix gem dependencies in vendor
8
11
 
@@ -1,3 +1,3 @@
1
1
  module Codepipe
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
@@ -0,0 +1,7 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
+
6
+ ## [0.1.0]
7
+ - Initial release
@@ -21,9 +21,10 @@ Or install it yourself as:
21
21
  ## Usage
22
22
 
23
23
  ```ruby
24
+ require "aws_data"
24
25
  aws = AwsData.new
25
26
  aws.account # account id
26
- aws.region # account id
27
+ aws.region # region
27
28
  ```
28
29
 
29
30
  ## Development
@@ -51,6 +51,8 @@ class AwsData
51
51
  # aws sts get-caller-identity
52
52
  def account
53
53
  return '123456789' if test?
54
+ return ENV['AWS_ACCOUNT'] if ENV['AWS_ACCOUNT']
55
+
54
56
  # ensure region set, required for sts.get_caller_identity.account to work
55
57
  ENV['AWS_REGION'] ||= region
56
58
  begin
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codepipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-10 00:00:00.000000000 Z
11
+ date: 2019-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -306,6 +306,7 @@ files:
306
306
  - lib/template/.codepipeline/schedule.rb
307
307
  - lib/template/.codepipeline/settings.yml
308
308
  - lib/template/.codepipeline/sns.rb
309
+ - vendor/aws_data/CHANGELOG.md
309
310
  - vendor/aws_data/Gemfile
310
311
  - vendor/aws_data/Gemfile.lock
311
312
  - vendor/aws_data/LICENSE.txt