aws-inventory 0.2.1 → 0.3.0

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
  SHA1:
3
- metadata.gz: 8f24d7463e40babe374b68f9407b96be20ce2c94
4
- data.tar.gz: 26df28143fed0044df15c546616d724530ad9729
3
+ metadata.gz: 5f5cff9d019cae6b629e6aa48890ea2aba7f665c
4
+ data.tar.gz: a691ebdb60ecca8946b3419dcf4c21f702768f1f
5
5
  SHA512:
6
- metadata.gz: eb2d7433602b4b265b8a8b15b1310d882605232b3b951b7175ac37f7da066ec95489244e75964b5ce6d8033f4af3dd8bbbfb64a71e86bf6ee21c4f72aacb5257
7
- data.tar.gz: bdd111342357d77fe51894becd1f1f7f0273c4efbcc03953cc0c5195faa120f7f45b3886e979eb4d30ad86f4675afb33befd189684af951e043b08c38c079f09
6
+ metadata.gz: 1f9dea807fa8f915dc0db022954aff928b48cd699ce3e17f37961ceb8697010663ea074a9f17402f496871b82542b6ed5df814e56a6890e032bba2e7eda0e7b6
7
+ data.tar.gz: 1390a1d93c1edd1316c4c5ebcaed648b56d0e9444a792cb64c4fdb61d4414dbfc324eaffcbba307ce1655eca947a177286f5881f201d850f0b2593196d9f83c9
@@ -0,0 +1,7 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
+
6
+ ## [0.3.0]
7
+ - initial release
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- inventory (0.0.1)
4
+ aws-inventory (0.2.1)
5
5
  actionview
6
6
  activesupport
7
7
  aws-sdk
@@ -25,7 +25,7 @@ GEM
25
25
  i18n (~> 0.7)
26
26
  minitest (~> 5.1)
27
27
  tzinfo (~> 1.1)
28
- aws-partitions (1.47.0)
28
+ aws-partitions (1.48.0)
29
29
  aws-sdk (3.0.1)
30
30
  aws-sdk-resources (~> 3)
31
31
  aws-sdk-acm (1.2.0)
@@ -34,7 +34,7 @@ GEM
34
34
  aws-sdk-alexaforbusiness (1.0.0)
35
35
  aws-sdk-core (~> 3)
36
36
  aws-sigv4 (~> 1.0)
37
- aws-sdk-apigateway (1.7.0)
37
+ aws-sdk-apigateway (1.8.0)
38
38
  aws-sdk-core (~> 3)
39
39
  aws-sigv4 (~> 1.0)
40
40
  aws-sdk-applicationautoscaling (1.6.0)
@@ -43,7 +43,7 @@ GEM
43
43
  aws-sdk-applicationdiscoveryservice (1.0.0)
44
44
  aws-sdk-core (~> 3)
45
45
  aws-sigv4 (~> 1.0)
46
- aws-sdk-appstream (1.3.0)
46
+ aws-sdk-appstream (1.4.0)
47
47
  aws-sdk-core (~> 3)
48
48
  aws-sigv4 (~> 1.0)
49
49
  aws-sdk-appsync (1.0.0)
@@ -493,7 +493,7 @@ GEM
493
493
  aws-sdk-servicediscovery (1.0.0)
494
494
  aws-sdk-core (~> 3)
495
495
  aws-sigv4 (~> 1.0)
496
- aws-sdk-ses (1.5.0)
496
+ aws-sdk-ses (1.6.0)
497
497
  aws-sdk-core (~> 3)
498
498
  aws-sigv4 (~> 1.0)
499
499
  aws-sdk-shield (1.1.0)
@@ -648,13 +648,13 @@ PLATFORMS
648
648
  ruby
649
649
 
650
650
  DEPENDENCIES
651
+ aws-inventory!
651
652
  bundler
652
653
  byebug
653
654
  codeclimate-test-reporter
654
655
  guard
655
656
  guard-bundler
656
657
  guard-rspec
657
- inventory!
658
658
  rake
659
659
 
660
660
  BUNDLED WITH
@@ -62,6 +62,7 @@ class Inventory::Base
62
62
  class_name = path
63
63
  .sub('.rb','')
64
64
  .sub(%r{.*/inventory}, 'inventory')
65
+ .sub('presenters', 'presenter') # special rule
65
66
  .camelize
66
67
  # special rules
67
68
  class_name.sub!("Cli", "CLI")
@@ -1,3 +1,3 @@
1
1
  module Inventory
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -11,20 +11,23 @@ describe Inventory::CLI do
11
11
  end
12
12
 
13
13
  %w[
14
- cfn
15
- ec2
16
- vpc
17
- sg
18
- rds
19
- route53
20
14
  acm
21
- elb
15
+ cfn
16
+ cw
22
17
  eb
18
+ ec2
23
19
  ecs
20
+ elb
21
+ help
22
+ iam
24
23
  keypair
24
+ rds
25
+ route53
26
+ sg
27
+ vpc
25
28
  ].each do |command|
26
29
  it command do
27
- out = execute("exe/inventory #{command} #{@args}")
30
+ out = execute("exe/aws-inventory #{command} #{@args}")
28
31
  expect(out).to include("report")
29
32
  end
30
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-inventory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
@@ -216,6 +216,7 @@ extra_rdoc_files: []
216
216
  files:
217
217
  - ".gitignore"
218
218
  - ".rspec"
219
+ - CHANGELOG.md
219
220
  - Gemfile
220
221
  - Gemfile.lock
221
222
  - Guardfile