kitchen-dsc 0.10.1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kitchen-dsc/version.rb +7 -7
- data/lib/kitchen/provisioner/dsc.rb +328 -311
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e624fe030f3b2b0b22bc97d9225668a67c55045e
|
4
|
+
data.tar.gz: f9c7ce4985d3115dc6ee61f10dd57d76f96b17b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c6bdec9163a77a027f07101c4806305528b8b3aa6b7d2694c7ea000d56ba3b25d62a8c922f3f410adc3c81383056ceafccf14d0b8683c7cceb14709b0e7823e
|
7
|
+
data.tar.gz: '0686ca5ffd4a6b58115220aab4d157ef11a34a588e2b76d50326d880012a2d5f073a6a7d3db7e6ccec16aa7f49a356d1d37567ae159f648b43847b614cd3058f'
|
data/lib/kitchen-dsc/version.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
module Kitchen
|
4
|
-
module Dsc
|
5
|
-
VERSION = '0.
|
6
|
-
end
|
7
|
-
end
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module Kitchen
|
4
|
+
module Dsc
|
5
|
+
VERSION = '0.11.0'.freeze
|
6
|
+
end
|
7
|
+
end
|
@@ -1,311 +1,328 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
#
|
3
|
-
# Author:: Steven Murawski (<steven.murawski@gmail.com>)
|
4
|
-
#
|
5
|
-
# Copyright (C) 2014 Steven Murawski
|
6
|
-
#
|
7
|
-
# Licensed under the Apache 2 License.
|
8
|
-
# See LICENSE for more details
|
9
|
-
|
10
|
-
require "fileutils"
|
11
|
-
require "pathname"
|
12
|
-
require "kitchen/provisioner/base"
|
13
|
-
require "kitchen/util"
|
14
|
-
require "dsc_lcm_configuration"
|
15
|
-
|
16
|
-
module Kitchen
|
17
|
-
module Provisioner
|
18
|
-
class Dsc < Base
|
19
|
-
kitchen_provisioner_api_version 2
|
20
|
-
|
21
|
-
attr_accessor :tmp_dir
|
22
|
-
|
23
|
-
default_config :modules_path, "modules"
|
24
|
-
|
25
|
-
default_config :configuration_script_folder, "examples"
|
26
|
-
default_config :configuration_script, "dsc_configuration.ps1"
|
27
|
-
default_config :configuration_name do |provisioner|
|
28
|
-
provisioner.instance.suite.name
|
29
|
-
end
|
30
|
-
|
31
|
-
default_config :configuration_data_variable, "ConfigurationData"
|
32
|
-
|
33
|
-
|
34
|
-
default_config :
|
35
|
-
default_config :
|
36
|
-
default_config :
|
37
|
-
|
38
|
-
|
39
|
-
default_config :
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
#{
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
{
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
$
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
end
|
178
|
-
|
179
|
-
def
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
end
|
216
|
-
|
217
|
-
def
|
218
|
-
config[:
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
end
|
225
|
-
|
226
|
-
def
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
end
|
238
|
-
|
239
|
-
def
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
end
|
309
|
-
|
310
|
-
|
311
|
-
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# Author:: Steven Murawski (<steven.murawski@gmail.com>)
|
4
|
+
#
|
5
|
+
# Copyright (C) 2014 Steven Murawski
|
6
|
+
#
|
7
|
+
# Licensed under the Apache 2 License.
|
8
|
+
# See LICENSE for more details
|
9
|
+
|
10
|
+
require "fileutils"
|
11
|
+
require "pathname"
|
12
|
+
require "kitchen/provisioner/base"
|
13
|
+
require "kitchen/util"
|
14
|
+
require "dsc_lcm_configuration"
|
15
|
+
|
16
|
+
module Kitchen
|
17
|
+
module Provisioner
|
18
|
+
class Dsc < Base
|
19
|
+
kitchen_provisioner_api_version 2
|
20
|
+
|
21
|
+
attr_accessor :tmp_dir
|
22
|
+
|
23
|
+
default_config :modules_path, "modules"
|
24
|
+
|
25
|
+
default_config :configuration_script_folder, "examples"
|
26
|
+
default_config :configuration_script, "dsc_configuration.ps1"
|
27
|
+
default_config :configuration_name do |provisioner|
|
28
|
+
[provisioner.instance.suite.name]
|
29
|
+
end
|
30
|
+
|
31
|
+
default_config :configuration_data_variable, "ConfigurationData"
|
32
|
+
|
33
|
+
default_config :nuget_force_bootstrap, true
|
34
|
+
default_config :gallery_uri
|
35
|
+
default_config :gallery_name
|
36
|
+
default_config :modules_from_gallery
|
37
|
+
|
38
|
+
default_config :dsc_local_configuration_manager_version, "wmf4"
|
39
|
+
default_config :dsc_local_configuration_manager, {}
|
40
|
+
|
41
|
+
def finalize_config!(instance)
|
42
|
+
config[:dsc_local_configuration_manager] = lcm.lcm_config
|
43
|
+
super(instance)
|
44
|
+
end
|
45
|
+
|
46
|
+
def install_command
|
47
|
+
full_lcm_configuration_script = <<-EOH
|
48
|
+
#{lcm.lcm_configuration_script}
|
49
|
+
|
50
|
+
$null = SetupLCM
|
51
|
+
Set-DscLocalConfigurationManager -Path ./SetupLCM | out-null
|
52
|
+
EOH
|
53
|
+
|
54
|
+
wrap_powershell_code(full_lcm_configuration_script)
|
55
|
+
end
|
56
|
+
|
57
|
+
def init_command
|
58
|
+
script = <<-EOH
|
59
|
+
#{setup_config_directory_script}
|
60
|
+
#{install_module_script if install_modules?}
|
61
|
+
EOH
|
62
|
+
wrap_powershell_code(script)
|
63
|
+
end
|
64
|
+
|
65
|
+
def create_sandbox
|
66
|
+
super
|
67
|
+
info("Staging DSC Resource Modules for copy to the SUT")
|
68
|
+
if powershell_module?
|
69
|
+
prepare_resource_style_directory
|
70
|
+
else
|
71
|
+
prepare_repo_style_directory
|
72
|
+
end
|
73
|
+
info("Staging DSC configuration script for copy to the SUT")
|
74
|
+
prepare_configuration_script
|
75
|
+
end
|
76
|
+
|
77
|
+
def prepare_command
|
78
|
+
info("Moving DSC Resources onto PSModulePath")
|
79
|
+
scripts = <<-EOH
|
80
|
+
|
81
|
+
if (Test-Path (join-path #{config[:root_path]} 'modules'))
|
82
|
+
{
|
83
|
+
dir ( join-path #{config[:root_path]} 'modules/*') -directory |
|
84
|
+
copy-item -destination $env:programfiles/windowspowershell/modules/ -recurse -force
|
85
|
+
}
|
86
|
+
|
87
|
+
$ConfigurationScriptPath = Join-path #{config[:root_path]} #{sandboxed_configuration_script}
|
88
|
+
if (-not (test-path $ConfigurationScriptPath))
|
89
|
+
{
|
90
|
+
throw "Failed to find $ConfigurationScriptPath"
|
91
|
+
}
|
92
|
+
invoke-expression (get-content $ConfigurationScriptPath -raw)
|
93
|
+
|
94
|
+
EOH
|
95
|
+
ensure_array(config[:configuration_name]).each do |configuration|
|
96
|
+
info("Generating the MOF script for the configuration #{configuration}")
|
97
|
+
stage_resources_and_generate_mof_script = <<-EOH
|
98
|
+
|
99
|
+
if(Test-Path c:/configurations/#{configuration})
|
100
|
+
{
|
101
|
+
Remove-Item -Recurse -Force c:/configurations/#{configuration}
|
102
|
+
}
|
103
|
+
|
104
|
+
$Error.clear()
|
105
|
+
|
106
|
+
if (-not (test-path 'c:/configurations'))
|
107
|
+
{
|
108
|
+
mkdir 'c:/configurations' | out-null
|
109
|
+
}
|
110
|
+
|
111
|
+
if (-not (get-command #{configuration}))
|
112
|
+
{
|
113
|
+
throw "Failed to create a configuration command #{configuration}"
|
114
|
+
}
|
115
|
+
|
116
|
+
#{configuration_data_assignment unless config[:configuration_data].nil?}
|
117
|
+
|
118
|
+
try{
|
119
|
+
$null = #{configuration} -outputpath c:/configurations/#{configuration} #{"-configurationdata $" + configuration_data_variable}
|
120
|
+
}
|
121
|
+
catch{
|
122
|
+
}
|
123
|
+
|
124
|
+
if($Error -ne $null)
|
125
|
+
{
|
126
|
+
$Error[-1]
|
127
|
+
exit 1
|
128
|
+
}
|
129
|
+
|
130
|
+
EOH
|
131
|
+
scripts << stage_resources_and_generate_mof_script
|
132
|
+
end
|
133
|
+
debug("Shelling out: #{scripts}")
|
134
|
+
wrap_powershell_code(scripts)
|
135
|
+
end
|
136
|
+
|
137
|
+
def run_command
|
138
|
+
config[:retry_on_exit_code] = [35] if config[:retry_on_exit_code].empty?
|
139
|
+
config[:max_retries] = 3 if config[:max_retries] == 1
|
140
|
+
scripts = ''
|
141
|
+
ensure_array(config[:configuration_name]).each do |configuration|
|
142
|
+
info("Running the configuration #{configuration}")
|
143
|
+
run_configuration_script = <<-EOH
|
144
|
+
$job = start-dscconfiguration -Path c:/configurations/#{configuration} -force
|
145
|
+
$job | wait-job
|
146
|
+
$verbose_output = $job.childjobs[0].verbose
|
147
|
+
$verbose_output
|
148
|
+
if ($verbose_output -match 'A reboot is required to progress further. Please reboot the system.') {
|
149
|
+
"A reboot is required to continue."
|
150
|
+
shutdown /r /t 15
|
151
|
+
exit 35
|
152
|
+
}
|
153
|
+
$dsc_errors = $job.childjobs[0].Error
|
154
|
+
if ($dsc_errors -ne $null) {
|
155
|
+
$dsc_errors
|
156
|
+
exit 1
|
157
|
+
}
|
158
|
+
EOH
|
159
|
+
scripts << run_configuration_script
|
160
|
+
end
|
161
|
+
debug("Shelling out: #{scripts}")
|
162
|
+
wrap_powershell_code(scripts)
|
163
|
+
end
|
164
|
+
|
165
|
+
private
|
166
|
+
|
167
|
+
def lcm
|
168
|
+
@lcm ||= begin
|
169
|
+
lcm_version = config[:dsc_local_configuration_manager_version]
|
170
|
+
lcm_config = config[:dsc_local_configuration_manager]
|
171
|
+
DscLcmConfiguration::Factory.create(lcm_version, lcm_config)
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
def setup_config_directory_script
|
176
|
+
"mkdir (split-path (join-path #{config[:root_path]} #{sandboxed_configuration_script})) -force | out-null"
|
177
|
+
end
|
178
|
+
|
179
|
+
def powershell_module_params(module_specification_hash)
|
180
|
+
keys = module_specification_hash.keys.reject { |k| k.to_s.casecmp('force') == 0 }
|
181
|
+
unless keys.any? { |k| k.to_s.downcase == 'repository' }
|
182
|
+
keys.push(:repository)
|
183
|
+
module_specification_hash[:repository] = psmodule_repository_name
|
184
|
+
end
|
185
|
+
keys.map { |key| "-#{key} #{module_specification_hash[key]}" }.join(' ')
|
186
|
+
end
|
187
|
+
|
188
|
+
def powershell_modules
|
189
|
+
Array(config[:modules_from_gallery]).map do |powershell_module|
|
190
|
+
params = if powershell_module.is_a? Hash
|
191
|
+
powershell_module_params(powershell_module)
|
192
|
+
else
|
193
|
+
"-name '#{powershell_module}' -Repository #{psmodule_repository_name}"
|
194
|
+
end
|
195
|
+
"install-module #{params} -force | out-null"
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
def nuget_force_bootstrap
|
200
|
+
return unless config[:nuget_force_bootstrap]
|
201
|
+
info("Bootstrapping the nuget package provider for PowerShell PackageManagement.")
|
202
|
+
"install-packageprovider nuget -force -forcebootstrap | out-null"
|
203
|
+
end
|
204
|
+
|
205
|
+
def psmodule_repository_name
|
206
|
+
return "PSGallery" if config[:gallery_name].nil? && config[:gallery_uri].nil?
|
207
|
+
return "testing" if config[:gallery_name].nil?
|
208
|
+
config[:gallery_name]
|
209
|
+
end
|
210
|
+
|
211
|
+
def register_psmodule_repository
|
212
|
+
return if config[:gallery_uri].nil?
|
213
|
+
info("Registering a new PowerShellGet Repository - #{psmodule_repository_name}")
|
214
|
+
"register-packagesource -providername PowerShellGet -name '#{psmodule_repository_name}' -location '#{config[:gallery_uri]}' -force -trusted"
|
215
|
+
end
|
216
|
+
|
217
|
+
def install_module_script
|
218
|
+
return if config[:modules_from_gallery].nil?
|
219
|
+
<<-EOH
|
220
|
+
#{nuget_force_bootstrap}
|
221
|
+
#{register_psmodule_repository}
|
222
|
+
#{powershell_modules.join("\n")}
|
223
|
+
EOH
|
224
|
+
end
|
225
|
+
|
226
|
+
def install_modules?
|
227
|
+
config[:dsc_local_configuration_manager_version] == "wmf5" &&
|
228
|
+
!config[:modules_from_gallery].nil?
|
229
|
+
end
|
230
|
+
|
231
|
+
def configuration_data_variable
|
232
|
+
config[:configuration_data_variable].nil? ? "ConfigurationData" : config[:configuration_data_variable]
|
233
|
+
end
|
234
|
+
|
235
|
+
def configuration_data_assignment
|
236
|
+
"$" + configuration_data_variable + " = " + ps_hash(config[:configuration_data])
|
237
|
+
end
|
238
|
+
|
239
|
+
def wrap_powershell_code(code)
|
240
|
+
wrap_shell_code(["$ProgressPreference = 'SilentlyContinue';", code].join("\n"))
|
241
|
+
end
|
242
|
+
|
243
|
+
def powershell_module?
|
244
|
+
module_metadata_file = File.join(config[:kitchen_root], "#{module_name}.psd1")
|
245
|
+
File.exist?(module_metadata_file)
|
246
|
+
end
|
247
|
+
|
248
|
+
def list_files(path)
|
249
|
+
base_directory_content = Dir.glob(File.join(path, "*"))
|
250
|
+
nested_directory_content = Dir.glob(File.join(path, "*/**/*"))
|
251
|
+
all_directory_content = [base_directory_content, nested_directory_content].flatten
|
252
|
+
|
253
|
+
ignore_files = ["Gemfile", "Gemfile.lock", "README.md", "LICENSE.txt"]
|
254
|
+
all_directory_content.reject do |f|
|
255
|
+
debug("Enumerating #{f}")
|
256
|
+
ignore_files.include?(File.basename(f)) || File.directory?(f)
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
def module_name
|
261
|
+
File.basename(config[:kitchen_root])
|
262
|
+
end
|
263
|
+
|
264
|
+
def prepare_resource_style_directory
|
265
|
+
sandbox_base_module_path = File.join(sandbox_path, "modules/#{module_name}")
|
266
|
+
|
267
|
+
base = config[:kitchen_root]
|
268
|
+
list_files(base).each do |src|
|
269
|
+
dest = File.join(sandbox_base_module_path, src.sub("#{base}/", ""))
|
270
|
+
FileUtils.mkdir_p(File.dirname(dest))
|
271
|
+
debug("Staging #{src} ")
|
272
|
+
debug(" at #{dest}")
|
273
|
+
FileUtils.cp(src, dest, :preserve => true)
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
277
|
+
def prepare_repo_style_directory
|
278
|
+
module_path = File.join(config[:kitchen_root], config[:modules_path])
|
279
|
+
sandbox_module_path = File.join(sandbox_path, "modules")
|
280
|
+
|
281
|
+
if Dir.exist?(module_path)
|
282
|
+
debug("Moving #{module_path} to #{sandbox_module_path}")
|
283
|
+
FileUtils.cp_r(module_path, sandbox_module_path)
|
284
|
+
else
|
285
|
+
debug("The modules path #{module_path} was not found. Not moving to #{sandbox_module_path}.")
|
286
|
+
end
|
287
|
+
end
|
288
|
+
|
289
|
+
def sandboxed_configuration_script
|
290
|
+
File.join("configuration", config[:configuration_script])
|
291
|
+
end
|
292
|
+
|
293
|
+
def pad(depth = 0)
|
294
|
+
" " * depth
|
295
|
+
end
|
296
|
+
|
297
|
+
def ps_hash(obj, depth = 0)
|
298
|
+
if obj.is_a?(Hash)
|
299
|
+
obj.map do |k, v|
|
300
|
+
%{#{pad(depth + 2)}#{ps_hash(k)} = #{ps_hash(v, depth + 2)}}
|
301
|
+
end.join(";\n").insert(0, "@{\n").insert(-1, "\n#{pad(depth)}}")
|
302
|
+
elsif obj.is_a?(Array)
|
303
|
+
array_string = obj.map { |v| ps_hash(v, depth + 4) }.join(",")
|
304
|
+
"#{pad(depth)}@(\n#{array_string}\n)"
|
305
|
+
else
|
306
|
+
%{"#{obj}"}
|
307
|
+
end
|
308
|
+
end
|
309
|
+
|
310
|
+
def prepare_configuration_script
|
311
|
+
configuration_script_file = File.join(config[:configuration_script_folder], config[:configuration_script])
|
312
|
+
configuration_script_path = File.join(config[:kitchen_root], configuration_script_file)
|
313
|
+
sandbox_configuration_script_path = File.join(sandbox_path, sandboxed_configuration_script)
|
314
|
+
FileUtils.mkdir_p(File.dirname(sandbox_configuration_script_path))
|
315
|
+
debug("Moving #{configuration_script_path} to #{sandbox_configuration_script_path}")
|
316
|
+
FileUtils.cp(configuration_script_path, sandbox_configuration_script_path)
|
317
|
+
end
|
318
|
+
|
319
|
+
def ensure_array(thing)
|
320
|
+
if thing.is_a?(Array)
|
321
|
+
return thing
|
322
|
+
else
|
323
|
+
return [thing]
|
324
|
+
end
|
325
|
+
end
|
326
|
+
end
|
327
|
+
end
|
328
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-dsc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Murawski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|