chef-cli 1.0.6 → 1.0.9
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/chef-cli/command/verify.rb +9 -10
- data/lib/chef-cli/version.rb +1 -1
- data/spec/unit/command/verify_spec.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a61eb28c44da772b3f36a87b1065c4592fe4ba283f063b9fd89313936d5b568
|
|
4
|
+
data.tar.gz: 77deff7af51e805eaf52c737c4b4723c1426f810b277af83e70377be1813118c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db91f3f05c3605cdf702b6f024994ce36805404dd65eded111165aa97ad6a178320f28529c6daf63af4239d46d41188a3318a12fa3ee4b2d7afde9e6aa1156b6
|
|
7
|
+
data.tar.gz: 6dd0e84f0783f709850b671a99b3e38980e65cacbc7cdd5ea47c99288a18376b2763de651f60d7fdd5bc03a2709f5cd1595f82cb2d5cc59ce93966d9d1d0ce3e
|
|
@@ -92,10 +92,14 @@ module ChefCLI
|
|
|
92
92
|
bundle_install_mutex.synchronize { sh("#{embedded_bin("bundle")} install") }
|
|
93
93
|
sh("#{embedded_bin("bundle")} exec #{embedded_bin("rspec")} --color --format progress spec/unit --tag ~graphviz")
|
|
94
94
|
end
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
95
|
+
|
|
96
|
+
# See older versions of this file in git to retrieve
|
|
97
|
+
# our cucumber test command for berkshelf.
|
|
98
|
+
# We had to remove them because we no longer bundle These tests cannot be run unless we bundle cucumber
|
|
99
|
+
# c.integration_test do
|
|
100
|
+
# bundle_install_mutex.synchronize { sh("#{embedded_bin("bundle")} install") }
|
|
101
|
+
# sh("#{embedded_bin("bundle")} exec #{embedded_bin("cucumber")} --color --format progress --tags ~@no_run --tags ~@spawn --tags ~@graphviz --strict")
|
|
102
|
+
# end
|
|
99
103
|
|
|
100
104
|
c.smoke_test do
|
|
101
105
|
tmpdir do |cwd|
|
|
@@ -197,7 +201,7 @@ module ChefCLI
|
|
|
197
201
|
# bundle_install_mutex.synchronize { sh("#{embedded_bin("bundle")} install") }
|
|
198
202
|
# sh("#{embedded_bin("bundle")} exec rspec")
|
|
199
203
|
# end
|
|
200
|
-
c.smoke_test { sh("#{bin("chef-run")} -v") }
|
|
204
|
+
c.smoke_test { sh("#{bin("chef-run")} -v", env: { "CHEF_TELEMETRY_OPT_OUT" => "true" }) }
|
|
201
205
|
end
|
|
202
206
|
|
|
203
207
|
add_component "chefspec" do |c|
|
|
@@ -248,11 +252,6 @@ module ChefCLI
|
|
|
248
252
|
c.smoke_test { sh("#{embedded_bin("gem")} list fauxhai") }
|
|
249
253
|
end
|
|
250
254
|
|
|
251
|
-
add_component "knife-spork" do |c|
|
|
252
|
-
c.gem_base_dir = "knife-spork"
|
|
253
|
-
c.smoke_test { sh("#{bin("knife")} spork info") }
|
|
254
|
-
end
|
|
255
|
-
|
|
256
255
|
add_component "kitchen-vagrant" do |c|
|
|
257
256
|
c.gem_base_dir = "kitchen-vagrant"
|
|
258
257
|
# The build is not passing in travis, so no tests
|
data/lib/chef-cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chef Software, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-cli
|