aws_data 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 39bfd342831717612699147cd474b73f3abf0bbf05bd18e9a520f407439fa746
4
- data.tar.gz: 911169a85d38932b92f4fdd41aaa49b05b3a28425c92c8d75fe6d383a7581b2a
3
+ metadata.gz: 1c311a97cd8200e6ec2c0ef703fcf05d6dad473af71bcb387dbbcd1329061bd6
4
+ data.tar.gz: cabf08042c96bf430aa40783a99276058da347f79d52871e506a442397fd7503
5
5
  SHA512:
6
- metadata.gz: 4589cd834716105438a7c13eba0a28219759d10e5c289b1a0802d9abd00cc4b24fa1df95fc33a0ffd6f2eac5636e663f345d996db589c8346ae69a1bf44c0c50
7
- data.tar.gz: 630b9007af882c6a216b8822c6c5d9698b24d6b50554775e9e0bc9c61cb2a12e904a3f789ecf7faeb5c8d0070601a6fec65e8f6956600e83b6a1c3c7526655ac
6
+ metadata.gz: 43f2f753dd37166c2bb4d2c6845bb778a991f17d02c5d8a085aebf90f6b44debd58777ee5cd46a6529ae32c27367fa604bb387d3e1a2f30b75d131f9549bc791
7
+ data.tar.gz: de017dd53d4cc537f5334c336a756ea6880e01877fb1600f815b00a1074195b665e6a8e24e5006087e6756219a3faba60e9998a6233544b0d08dae8dea20d4e3
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /Gemfile.lock
9
10
 
10
11
  # rspec failure tracking
11
12
  .rspec_status
@@ -3,5 +3,8 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [0.1.1]
7
+ - rename ENV AWS_DATA_TEST
8
+
6
9
  ## [0.1.0]
7
10
  - Initial release
data/README.md CHANGED
@@ -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
@@ -65,7 +65,7 @@ class AwsData
65
65
 
66
66
  private
67
67
  def test?
68
- ENV['TEST']
68
+ ENV['AWS_DATA_TEST']
69
69
  end
70
70
 
71
71
  # Cross-platform way of finding an executable in the $PATH.
@@ -1,3 +1,3 @@
1
1
  class AwsData
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
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-06-21 00:00:00.000000000 Z
11
+ date: 2020-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: memoist
@@ -92,7 +92,6 @@ files:
92
92
  - ".travis.yml"
93
93
  - CHANGELOG.md
94
94
  - Gemfile
95
- - Gemfile.lock
96
95
  - LICENSE.txt
97
96
  - README.md
98
97
  - Rakefile
@@ -120,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
119
  - !ruby/object:Gem::Version
121
120
  version: '0'
122
121
  requirements: []
123
- rubygems_version: 3.0.3
122
+ rubygems_version: 3.1.2
124
123
  signing_key:
125
124
  specification_version: 4
126
125
  summary: AWS info like region and account id
@@ -1,48 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- aws_data (0.1.0)
5
- aws-sdk-core
6
- memoist
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- aws-eventstream (1.0.3)
12
- aws-partitions (1.176.0)
13
- aws-sdk-core (3.56.0)
14
- aws-eventstream (~> 1.0, >= 1.0.2)
15
- aws-partitions (~> 1.0)
16
- aws-sigv4 (~> 1.1)
17
- jmespath (~> 1.0)
18
- aws-sigv4 (1.1.0)
19
- aws-eventstream (~> 1.0, >= 1.0.2)
20
- diff-lcs (1.3)
21
- jmespath (1.4.0)
22
- memoist (0.16.0)
23
- rake (10.5.0)
24
- rspec (3.8.0)
25
- rspec-core (~> 3.8.0)
26
- rspec-expectations (~> 3.8.0)
27
- rspec-mocks (~> 3.8.0)
28
- rspec-core (3.8.1)
29
- rspec-support (~> 3.8.0)
30
- rspec-expectations (3.8.4)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-mocks (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-support (3.8.2)
37
-
38
- PLATFORMS
39
- ruby
40
-
41
- DEPENDENCIES
42
- aws_data!
43
- bundler (~> 2.0)
44
- rake (~> 10.0)
45
- rspec (~> 3.0)
46
-
47
- BUNDLED WITH
48
- 2.0.1