awspec 0.26.1 → 0.26.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
  SHA1:
3
- metadata.gz: 5486269883d1f0a96ec29bed97a8b3b0b4dcbd34
4
- data.tar.gz: 65bd50f7d240b168b9a66bf244d4e7b5a0392e75
3
+ metadata.gz: 752c70ba37444287c8a4fd27aa3117947bf4b79f
4
+ data.tar.gz: 9ca42f9f8cbfe053a3ec8fec356643f8b670fee2
5
5
  SHA512:
6
- metadata.gz: c25de1d0fa1b2152a9169dacd2989ecbc89d559235f37ce57cb2b31ad8115f1aaafb9245e7381a7117734d4b9606841eee2452bb16af3d0c52edfbf31ae49432
7
- data.tar.gz: 9947ccdfc20409da767dc0d159e70476f79e6883fedbf7e56a07760db0044d07a215ebb15efed1f42d7ffda0867ef6ff68328d41599d1e3c06a85ec62350ce27
6
+ metadata.gz: c18fb8e6043b30f7fec4a8b42f36c649e1c141895fc6555e0f4d28fc9864d39d99eea0942f5856644dd46b26be49e52ad7b1a01fcd64a21285e6c713096f67de
7
+ data.tar.gz: def2845b663ba8f50742b6a5ca40003a548aab024f4ef74f6bb24063fbf292f313ecf5cf575ceccbf3958d2e126729933daee8176cb76d12f225ecf232cd5c00
@@ -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 = 'bin'
19
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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'
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'awspec'
5
+
6
+ require 'pry'
7
+ Pry.start
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
File without changes
@@ -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 ./lib/awspec/bin/toolbox template redshift`)
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 ./lib/awspec/bin/toolbox docgen > doc/resource_type.md`)
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
File without changes
@@ -1,3 +1,3 @@
1
1
  module Awspec
2
- VERSION = '0.26.1'
2
+ VERSION = '0.26.2'
3
3
  end
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.1
4
+ version: 0.26.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - k1LoW
8
8
  autorequire:
9
- bindir: bin
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/awspec
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