chef-cli 5.5.4 → 5.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/chef-cli/skeletons/code_generator/recipes/cookbook.rb +14 -0
- data/lib/chef-cli/version.rb +1 -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: 1716bb7f053b4836d2e2a2fc6e309ca583a059d537606361dabf0c8b40e7cc98
|
4
|
+
data.tar.gz: 75e3112b7e47f3bd96aa84727e76ec65d80c3ef977321c5132f0bebef962e201
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c10e74154812fc6db2b0b81f8bfa48d4e0e284824b8c3beb24e19518be85d909d5ca4f6f1c8263e09b019f6469479a071b78a09ee15b1e15566c7234d580708e
|
7
|
+
data.tar.gz: f2684d4b818592bbd2c1575aa46105292a3903c2f93d3b68b60f260001474ae52b26b593fdaf9fa73113cf9e3db9397732dccbb724b605f9b50e21f6f744044b
|
@@ -131,6 +131,20 @@ else
|
|
131
131
|
end
|
132
132
|
end
|
133
133
|
|
134
|
+
# the same will be done below if workflow was enabled so avoid double work and skip this
|
135
|
+
unless context.enable_workflow
|
136
|
+
directory "#{cookbook_dir}/.delivery"
|
137
|
+
|
138
|
+
template "#{cookbook_dir}/.delivery/project.toml" do
|
139
|
+
variables(
|
140
|
+
specs: context.specs
|
141
|
+
)
|
142
|
+
source 'delivery-project.toml.erb'
|
143
|
+
helpers(ChefCLI::Generator::TemplateHelper)
|
144
|
+
action :create_if_missing
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
134
148
|
# git
|
135
149
|
if context.have_git
|
136
150
|
unless context.skip_git_init
|
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: 5.5.
|
4
|
+
version: 5.5.5
|
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: 2022-01-
|
11
|
+
date: 2022-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-cli
|