awspec 0.26.1 → 0.26.2
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 +4 -4
- data/awspec.gemspec +2 -2
- data/bin/console +7 -0
- data/bin/setup +5 -0
- data/{lib/awspec/bin → bin}/toolbox +0 -0
- data/doc/contributing.md +2 -2
- data/{bin → exe}/awspec +0 -0
- data/lib/awspec/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 752c70ba37444287c8a4fd27aa3117947bf4b79f
|
|
4
|
+
data.tar.gz: 9ca42f9f8cbfe053a3ec8fec356643f8b670fee2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c18fb8e6043b30f7fec4a8b42f36c649e1c141895fc6555e0f4d28fc9864d39d99eea0942f5856644dd46b26be49e52ad7b1a01fcd64a21285e6c713096f67de
|
|
7
|
+
data.tar.gz: def2845b663ba8f50742b6a5ca40003a548aab024f4ef74f6bb24063fbf292f313ecf5cf575ceccbf3958d2e126729933daee8176cb76d12f225ecf232cd5c00
|
data/awspec.gemspec
CHANGED
|
@@ -15,8 +15,8 @@ Gem::Specification.new do |spec|
|
|
|
15
15
|
spec.license = 'MIT'
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
|
-
spec.bindir = '
|
|
19
|
-
spec.executables = spec.files.grep(%r{^
|
|
18
|
+
spec.bindir = 'exe'
|
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ['lib']
|
|
21
21
|
|
|
22
22
|
spec.required_ruby_version = '>= 2.1'
|
data/bin/console
ADDED
data/bin/setup
ADDED
|
File without changes
|
data/doc/contributing.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
## Add new resource type (ex. Redshift resource)
|
|
4
4
|
|
|
5
5
|
1. Create your feature branch (`git checkout -b add-type-redshift`)
|
|
6
|
-
2. Generate template files (`bundle exec
|
|
6
|
+
2. Generate template files (`bundle exec bin/toolbox template redshift`)
|
|
7
7
|
3. Fill files with code.
|
|
8
|
-
4. Generate [doc/resource_types.md](doc/resource_types.md) (`bundle exec
|
|
8
|
+
4. Generate [doc/resource_types.md](doc/resource_types.md) (`bundle exec bin/toolbox docgen > doc/resource_type.md`)
|
|
9
9
|
5. Run test (`bundle exec rake spec`)
|
|
10
10
|
6. Push to the branch (`git push origin add-type-redshift`)
|
|
11
11
|
7. Create a new Pull Request
|
data/{bin → exe}/awspec
RENAMED
|
File without changes
|
data/lib/awspec/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: awspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.26.
|
|
4
|
+
version: 0.26.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- k1LoW
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -197,7 +197,9 @@ files:
|
|
|
197
197
|
- Rakefile
|
|
198
198
|
- awspec-logo.png
|
|
199
199
|
- awspec.gemspec
|
|
200
|
-
- bin/
|
|
200
|
+
- bin/console
|
|
201
|
+
- bin/setup
|
|
202
|
+
- bin/toolbox
|
|
201
203
|
- doc/_resource_types/autoscaling_group.md
|
|
202
204
|
- doc/_resource_types/cloudwatch_alarm.md
|
|
203
205
|
- doc/_resource_types/directconnect_virtual_interface.md
|
|
@@ -223,8 +225,8 @@ files:
|
|
|
223
225
|
- doc/_resource_types/vpc.md
|
|
224
226
|
- doc/contributing.md
|
|
225
227
|
- doc/resource_types.md
|
|
228
|
+
- exe/awspec
|
|
226
229
|
- lib/awspec.rb
|
|
227
|
-
- lib/awspec/bin/toolbox
|
|
228
230
|
- lib/awspec/cli.rb
|
|
229
231
|
- lib/awspec/command/generate.rb
|
|
230
232
|
- lib/awspec/ext.rb
|