kitchen-verifier-awspec 0.1.1 → 0.1.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/lib/kitchen/verifier/awspec.rb +2 -2
- data/lib/kitchen/verifier/awspec_version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81b004ca8366ab59210a056f1ece921fc6035163
|
|
4
|
+
data.tar.gz: 603d937877123fe5815006edc74f437d96e27823
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09bf125f7a7ff829d76cbb3fca56b0e597b7ec9aaf1f9c34a7adb69d7d53170404466457420af00ef86d6cb98d20cca0cc892bafacbc51afe9661b7428c87a12'
|
|
7
|
+
data.tar.gz: bb25e383bf3956325b51161962e9e8045f8bc475376723a0c54994e3a27d0d915eaaab81ef69b182a6b5a0356912c1e1dede7d7380ad264cc41cabad52d489c5
|
|
@@ -126,7 +126,7 @@ module Kitchen
|
|
|
126
126
|
end
|
|
127
127
|
gemfile = config[:gemfile] if config[:gemfile]
|
|
128
128
|
begin
|
|
129
|
-
shellout "#{bundler_local_cmd} install --gemfile
|
|
129
|
+
shellout "#{bundler_local_cmd} install --gemfile='#{gemfile}'"
|
|
130
130
|
rescue
|
|
131
131
|
raise ActionFailed, 'Awspec install failed'
|
|
132
132
|
end
|
|
@@ -177,7 +177,7 @@ module Kitchen
|
|
|
177
177
|
info("Using default pattern #{config[:default_path]}/spec/*_spec.rb")
|
|
178
178
|
config[:patterns] = ["#{config[:default_path]}/spec/*_spec.rb"]
|
|
179
179
|
end
|
|
180
|
-
config[:patterns].map { |s| "#{env_vars} #{sudo_env(rspec_cmd)} #{color} -f #{config[:format]} --default-path
|
|
180
|
+
config[:patterns].map { |s| "#{env_vars} #{sudo_env(rspec_cmd)} #{color} -f #{config[:format]} --default-path '#{config[:default_path]}' #{config[:extra_flags]} -P '#{s}'" }.join(';')
|
|
181
181
|
end
|
|
182
182
|
|
|
183
183
|
def rspec_cmd
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-verifier-awspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neill Turner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
@@ -38,8 +38,9 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '3'
|
|
41
|
-
description:
|
|
42
|
-
|
|
41
|
+
description: 'Awspec verifier for Test-Kitchen
|
|
42
|
+
|
|
43
|
+
'
|
|
43
44
|
email:
|
|
44
45
|
- neillwturner@gmail.com
|
|
45
46
|
executables: []
|
|
@@ -70,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
71
|
version: '0'
|
|
71
72
|
requirements: []
|
|
72
73
|
rubyforge_project: "[none]"
|
|
73
|
-
rubygems_version: 2.
|
|
74
|
+
rubygems_version: 2.6.13
|
|
74
75
|
signing_key:
|
|
75
76
|
specification_version: 4
|
|
76
77
|
summary: Awspec verifier for Test-Kitchen
|