chef-dk 2.3.4 → 2.4.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +22 -18
  3. data/Gemfile.lock +184 -254
  4. data/README.md +1 -1
  5. data/Rakefile +1 -1
  6. data/acceptance/Gemfile.lock +27 -32
  7. data/lib/chef-dk/chef_server_api_multi.rb +73 -0
  8. data/lib/chef-dk/command/update.rb +5 -12
  9. data/lib/chef-dk/configurable.rb +19 -0
  10. data/lib/chef-dk/cookbook_omnifetch.rb +1 -0
  11. data/lib/chef-dk/exceptions.rb +11 -0
  12. data/lib/chef-dk/generator.rb +1 -1
  13. data/lib/chef-dk/policyfile/attribute_merge_checker.rb +110 -0
  14. data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +5 -4
  15. data/lib/chef-dk/policyfile/chef_server_lock_fetcher.rb +164 -0
  16. data/lib/chef-dk/policyfile/cookbook_location_specification.rb +3 -3
  17. data/lib/chef-dk/policyfile/dsl.rb +16 -0
  18. data/lib/chef-dk/policyfile/included_policies_cookbook_source.rb +156 -0
  19. data/lib/chef-dk/policyfile/local_lock_fetcher.rb +122 -0
  20. data/lib/chef-dk/policyfile/lock_applier.rb +80 -0
  21. data/lib/chef-dk/policyfile/null_cookbook_source.rb +4 -0
  22. data/lib/chef-dk/policyfile/policyfile_location_specification.rb +122 -0
  23. data/lib/chef-dk/policyfile_compiler.rb +129 -16
  24. data/lib/chef-dk/policyfile_lock.rb +30 -0
  25. data/lib/chef-dk/policyfile_services/install.rb +7 -1
  26. data/lib/chef-dk/policyfile_services/update_attributes.rb +10 -2
  27. data/lib/chef-dk/skeletons/code_generator/templates/default/recipe_spec.rb.erb +14 -1
  28. data/lib/chef-dk/version.rb +1 -1
  29. data/omnibus_overrides.rb +6 -6
  30. data/spec/unit/chef_server_api_multi_spec.rb +120 -0
  31. data/spec/unit/command/update_spec.rb +3 -3
  32. data/spec/unit/configurable_spec.rb +27 -0
  33. data/spec/unit/policyfile/attribute_merge_checker_spec.rb +80 -0
  34. data/spec/unit/policyfile/chef_server_lock_fetcher_spec.rb +161 -0
  35. data/spec/unit/policyfile/cookbook_location_specification_spec.rb +48 -0
  36. data/spec/unit/policyfile/included_policies_cookbook_source_spec.rb +242 -0
  37. data/spec/unit/policyfile/local_lock_fetcher_spec.rb +161 -0
  38. data/spec/unit/policyfile/lock_applier_spec.rb +100 -0
  39. data/spec/unit/policyfile_demands_spec.rb +1 -1
  40. data/spec/unit/policyfile_includes_dsl_spec.rb +159 -0
  41. data/spec/unit/policyfile_includes_spec.rb +720 -0
  42. data/spec/unit/policyfile_install_with_includes_spec.rb +232 -0
  43. data/spec/unit/policyfile_lock_build_spec.rb +11 -2
  44. data/spec/unit/policyfile_services/update_attributes_spec.rb +13 -0
  45. metadata +28 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 128f6d06f80e439c8f3742ebfa4a00ce1b344228
4
- data.tar.gz: 9e2f2df6a4ab45bc0a331592e58c604976d20f25
3
+ metadata.gz: bfc1c915757e703d76a4c7e547586dff8780de13
4
+ data.tar.gz: b0c7273cdf7ca54111c3ddc7595383775bf99be6
5
5
  SHA512:
6
- metadata.gz: 69fd2e8a6014e14cbf234cfd7715dc0dff101bd0bba5929ba64772f60c71c8a0feb4afbfcd8987561bddc80ab65ae4c2e0cad5d78b8324fd944f23473608d551
7
- data.tar.gz: 684c9139296aa0370f25aec8243aac5bf11f3d6fc48c4324bee6339a8740a785d023277e36262e11ffdc177adf13bce323aef7effc2f5457efbe5052cf72fec6
6
+ metadata.gz: a7578029c1633e95c5f722a89e549c1f3531cf6db1f849ffeaceed7a189a9946830f3b1726bae0b4e9fc2b46c1b89647619cd837878da3db54ceb56ce7223f55
7
+ data.tar.gz: 9e39c3b15e89082eedcb1a06163da22c4714ef5024407169a1831717b5c04cb88ce03fd81977bf818e311954d6d4a84699275fb9efbdf92c2055a8d57f0f9baf
data/Gemfile CHANGED
@@ -29,7 +29,7 @@ group(:omnibus_package, :development, :test) do
29
29
  gem "dep_selector"
30
30
  gem "guard"
31
31
  gem "cookstyle", ">= 2.0.0"
32
- gem "foodcritic", ">= 11.2"
32
+ gem "foodcritic", ">= 12.1"
33
33
  end
34
34
 
35
35
  # We tend to track latest stable release without pinning.
@@ -38,28 +38,32 @@ end
38
38
  # We equality pin the chef gem itself to assert which version we're shipping.
39
39
  group(:omnibus_package) do
40
40
  gem "appbundler"
41
- gem "berkshelf", ">= 6.3"
42
- gem "chef-provisioning", ">= 2.4.0"
43
- gem "chef-provisioning-aws", ">= 2.0"
44
- gem "chef-provisioning-azure", ">= 0.6.0"
45
- gem "chef-provisioning-fog", ">= 0.20.0"
46
- gem "chef-vault"
47
- gem "chef", "= 13.4.19"
48
- gem "cheffish", ">= 13.0"
49
- gem "chefspec"
50
- gem "fauxhai"
51
- gem "inspec", ">= 0.29.0"
52
- gem "kitchen-ec2"
41
+ gem "berkshelf", ">= 6.3.1"
42
+ gem "chef-provisioning", ">= 2.4.0", group: :provisioning
43
+ gem "chef-provisioning-aws", ">= 3.0.0", group: :provisioning
44
+ gem "chef-provisioning-azure", ">= 0.6.0", group: :provisioning
45
+ gem "chef-provisioning-fog", ">= 0.26.0", group: :provisioning
46
+ gem "chef-vault", ">= 3.3.0"
47
+ gem "chef", "= 13.6.4"
48
+ gem "cheffish", ">= 13.1.0"
49
+ gem "chefspec", ">= 7.1.0"
50
+ gem "fauxhai", ">= 5.4.0"
51
+ gem "inspec", ">= 1.42.3"
52
+ gem "kitchen-ec2", ">= 1.3.2"
53
+ gem "kitchen-digitalocean", ">= 0.9.8"
53
54
  gem "kitchen-dokken", ">= 2.5.0"
54
- gem "kitchen-hyperv"
55
- gem "kitchen-inspec"
56
- gem "kitchen-vagrant"
57
- gem "knife-windows"
55
+ gem "kitchen-google", ">= 1.4.0"
56
+ gem "kitchen-hyperv", ">= 0.5.1"
57
+ gem "kitchen-inspec", ">= 0.19.0"
58
+ gem "kitchen-vagrant", ">= 1.2.1"
59
+ gem "knife-ec2", ">= 0.15.0"
60
+ gem "knife-google", ">= 3.2.0"
61
+ gem "knife-windows", ">= 1.9.0"
58
62
  gem "knife-opc", ">= 0.3.2"
59
63
  gem "ohai", ">= 13.1.0"
60
64
  # net-ssh 4.2.0 explodes the world. FIXME
61
65
  gem "net-ssh", "= 4.1.0"
62
- gem "test-kitchen"
66
+ gem "test-kitchen", ">= 1.18.0"
63
67
  gem "listen"
64
68
  gem "dco"
65
69
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- chef-dk (2.3.4)
4
+ chef-dk (2.4.17)
5
5
  addressable (>= 2.3.5, < 2.6)
6
6
  chef (~> 13.0)
7
7
  chef-provisioning (~> 2.0)
@@ -17,35 +17,31 @@ PATH
17
17
  GEM
18
18
  remote: https://rubygems.org/
19
19
  specs:
20
- CFPropertyList (2.3.5)
21
- activesupport (4.2.9)
20
+ activesupport (5.1.4)
21
+ concurrent-ruby (~> 1.0, >= 1.0.2)
22
22
  i18n (~> 0.7)
23
23
  minitest (~> 5.1)
24
- thread_safe (~> 0.3, >= 0.3.4)
25
24
  tzinfo (~> 1.1)
26
25
  addressable (2.5.2)
27
26
  public_suffix (>= 2.0.2, < 4.0)
28
27
  app_conf (0.4.2)
29
28
  appbundler (0.10.0)
30
29
  mixlib-cli (~> 1.4)
31
- mixlib-shellout (~> 2.0)
32
30
  artifactory (2.8.2)
33
31
  ast (2.3.0)
34
- autoparse (0.3.3)
35
- addressable (>= 2.3.1)
36
- extlib (>= 0.9.15)
37
- multi_json (>= 1.0.0)
38
- aws-sdk (2.10.45)
39
- aws-sdk-resources (= 2.10.45)
40
- aws-sdk-core (2.10.45)
32
+ aws-sdk (2.10.90)
33
+ aws-sdk-resources (= 2.10.90)
34
+ aws-sdk-core (2.10.90)
41
35
  aws-sigv4 (~> 1.0)
42
36
  jmespath (~> 1.0)
43
- aws-sdk-resources (2.10.45)
44
- aws-sdk-core (= 2.10.45)
45
- aws-sdk-v1 (1.67.0)
46
- json (~> 1.4)
47
- nokogiri (~> 1)
37
+ aws-sdk-resources (2.10.90)
38
+ aws-sdk-core (= 2.10.90)
48
39
  aws-sigv4 (1.0.2)
40
+ axiom-types (0.1.1)
41
+ descendants_tracker (~> 0.0.4)
42
+ ice_nine (~> 0.11.0)
43
+ thread_safe (~> 0.3, >= 0.3.1)
44
+ backports (3.10.3)
49
45
  berkshelf (6.3.1)
50
46
  buff-config (~> 2.0)
51
47
  buff-extensions (~> 2.0)
@@ -62,9 +58,8 @@ GEM
62
58
  ridley (~> 5.0)
63
59
  solve (~> 4.0)
64
60
  thor (~> 0.19, < 0.19.2)
65
- binding_of_caller (0.7.2)
61
+ binding_of_caller (0.7.3)
66
62
  debug_inspector (>= 0.0.1)
67
- blankslate (2.1.2.4)
68
63
  buff-config (2.0.0)
69
64
  buff-extensions (~> 2.0)
70
65
  varia_model (~> 0.6)
@@ -80,10 +75,10 @@ GEM
80
75
  celluloid-io (0.16.2)
81
76
  celluloid (>= 0.16.0)
82
77
  nio4r (>= 1.1.0)
83
- chef (13.4.19)
78
+ chef (13.6.4)
84
79
  addressable
85
80
  bundler (>= 1.10)
86
- chef-config (= 13.4.19)
81
+ chef-config (= 13.6.4)
87
82
  chef-zero (>= 13.0)
88
83
  diff-lcs (~> 1.2, >= 1.2.4)
89
84
  erubis (~> 2.7)
@@ -110,10 +105,10 @@ GEM
110
105
  specinfra (~> 2.10)
111
106
  syslog-logger (~> 1.6)
112
107
  uuidtools (~> 2.1.5)
113
- chef (13.4.19-universal-mingw32)
108
+ chef (13.6.4-universal-mingw32)
114
109
  addressable
115
110
  bundler (>= 1.10)
116
- chef-config (= 13.4.19)
111
+ chef-config (= 13.6.4)
117
112
  chef-zero (>= 13.0)
118
113
  diff-lcs (~> 1.2, >= 1.2.4)
119
114
  erubis (~> 2.7)
@@ -154,12 +149,12 @@ GEM
154
149
  chef-api (0.7.1)
155
150
  logify (~> 0.1)
156
151
  mime-types
157
- chef-config (13.4.19)
152
+ chef-config (13.6.4)
158
153
  addressable
159
154
  fuzzyurl
160
155
  mixlib-config (~> 2.0)
161
156
  mixlib-shellout (~> 2.0)
162
- chef-provisioning (2.5.0)
157
+ chef-provisioning (2.6.0)
163
158
  cheffish (>= 4.0, < 14.0)
164
159
  inifile (>= 2.0.2)
165
160
  mixlib-install (>= 1.0)
@@ -169,25 +164,27 @@ GEM
169
164
  winrm (~> 2.0)
170
165
  winrm-elevated (~> 1.0)
171
166
  winrm-fs (~> 1.0)
172
- chef-provisioning-aws (2.2.2)
167
+ chef-provisioning-aws (3.0.0)
173
168
  aws-sdk (>= 2.2.18, < 3.0)
174
- aws-sdk-v1 (>= 1.59.0)
175
169
  chef-provisioning (>= 1.0, < 3.0)
176
170
  retryable (~> 2.0, >= 2.0.1)
177
171
  ubuntu_ami (~> 0.4, >= 0.4.1)
178
172
  chef-provisioning-azure (0.6.0)
179
173
  chef-provisioning (>= 1.0, < 3.0)
180
174
  stuartpreston-azure-sdk-for-ruby (~> 0.7)
181
- chef-provisioning-fog (0.21.0)
175
+ chef-provisioning-fog (0.26.0)
182
176
  chef-provisioning (>= 1.0, < 3.0)
183
- fog (>= 1.37.0)
177
+ cheffish (>= 13.1.0, < 14.0)
184
178
  fog-digitalocean
179
+ fog-joyent
180
+ fog-openstack
181
+ fog-rackspace
185
182
  fog-scaleway
186
- fog-softlayer (~> 1.1.0)
187
- google-api-client (~> 0.8.0)
183
+ fog-softlayer
184
+ fog-xenserver
188
185
  retryable
189
186
  winrm-elevated
190
- chef-sugar (3.5.0)
187
+ chef-sugar (3.6.0)
191
188
  chef-vault (3.3.0)
192
189
  chef-zero (13.1.0)
193
190
  ffi-yajl (~> 2.2)
@@ -195,10 +192,10 @@ GEM
195
192
  mixlib-log (~> 1.3)
196
193
  rack (~> 2.0)
197
194
  uuidtools (~> 2.1)
198
- cheffish (13.0.0)
195
+ cheffish (13.1.0)
199
196
  chef-zero (~> 13.0)
200
197
  net-ssh
201
- chefspec (7.1.0)
198
+ chefspec (7.1.1)
202
199
  chef (>= 12.14.89)
203
200
  fauxhai (>= 4, < 6)
204
201
  rspec (~> 3.0)
@@ -206,21 +203,28 @@ GEM
206
203
  rubocop (= 0.49.1)
207
204
  cleanroom (1.0.0)
208
205
  coderay (1.1.2)
206
+ coercible (1.0.0)
207
+ descendants_tracker (~> 0.0.1)
209
208
  concurrent-ruby (1.0.5)
210
- cookbook-omnifetch (0.6.0)
209
+ cookbook-omnifetch (0.8.0)
211
210
  mixlib-archive (~> 0.4)
212
211
  cookstyle (2.1.0)
213
212
  rubocop (= 0.49.1)
214
- cucumber (2.4.0)
213
+ cucumber (3.1.0)
215
214
  builder (>= 2.1.2)
216
- cucumber-core (~> 1.5.0)
215
+ cucumber-core (~> 3.1.0)
216
+ cucumber-expressions (~> 5.0.4)
217
217
  cucumber-wire (~> 0.0.1)
218
- diff-lcs (>= 1.1.3)
219
- gherkin (~> 4.0)
218
+ diff-lcs (~> 1.3)
219
+ gherkin (~> 5.0)
220
220
  multi_json (>= 1.7.5, < 2.0)
221
221
  multi_test (>= 0.1.2)
222
- cucumber-core (1.5.0)
223
- gherkin (~> 4.0)
222
+ cucumber-core (3.1.0)
223
+ backports (>= 3.8.0)
224
+ cucumber-tag_expressions (~> 1.1.0)
225
+ gherkin (>= 5.0.0)
226
+ cucumber-expressions (5.0.5)
227
+ cucumber-tag_expressions (1.1.0)
224
228
  cucumber-wire (0.0.1)
225
229
  dco (1.0.1)
226
230
  git (~> 1.3)
@@ -230,17 +234,25 @@ GEM
230
234
  dep_selector (1.0.6)
231
235
  dep-selector-libgecode (~> 1.0)
232
236
  ffi (~> 1.9)
237
+ descendants_tracker (0.0.4)
238
+ thread_safe (~> 0.3, >= 0.3.1)
233
239
  diff-lcs (1.3)
234
240
  diffy (3.2.0)
235
- docker-api (1.33.6)
236
- excon (>= 0.38.0)
237
- json
241
+ docker-api (1.34.0)
242
+ excon (>= 0.47.0)
243
+ multi_json
244
+ droplet_kit (2.2.1)
245
+ activesupport (> 3.0, < 6)
246
+ faraday (~> 0.9)
247
+ kartograph (~> 0.2.3)
248
+ resource_kit (~> 0.1.5)
249
+ virtus (~> 1.0.3)
250
+ equalizer (0.0.11)
238
251
  erubis (2.7.0)
239
252
  excon (0.59.0)
240
- extlib (0.9.16)
241
253
  faraday (0.13.1)
242
254
  multipart-post (>= 1.2, < 3)
243
- fauxhai (5.3.0)
255
+ fauxhai (5.5.0)
244
256
  net-ssh
245
257
  ffi (1.9.18)
246
258
  ffi (1.9.18-x64-mingw32)
@@ -253,64 +265,11 @@ GEM
253
265
  ffi
254
266
  ffi-yajl (2.3.1)
255
267
  libyajl2 (~> 1.2)
256
- fission (0.5.0)
257
- CFPropertyList (~> 2.2)
258
- fog (1.41.0)
259
- fog-aliyun (>= 0.1.0)
260
- fog-atmos
261
- fog-aws (>= 0.6.0)
262
- fog-brightbox (~> 0.4)
263
- fog-cloudatcost (~> 0.1.0)
264
- fog-core (~> 1.45)
265
- fog-digitalocean (>= 0.3.0)
266
- fog-dnsimple (~> 1.0)
267
- fog-dynect (~> 0.0.2)
268
- fog-ecloud (~> 0.1)
269
- fog-google (<= 0.1.0)
270
- fog-internet-archive
271
- fog-joyent
272
- fog-json
273
- fog-local
274
- fog-openstack
275
- fog-powerdns (>= 0.1.1)
276
- fog-profitbricks
277
- fog-rackspace
278
- fog-radosgw (>= 0.0.2)
279
- fog-riakcs
280
- fog-sakuracloud (>= 0.0.4)
281
- fog-serverlove
282
- fog-softlayer
283
- fog-storm_on_demand
284
- fog-terremark
285
- fog-vmfusion
286
- fog-voxel
287
- fog-vsphere (>= 0.4.0)
288
- fog-xenserver
289
- fog-xml (~> 0.1.1)
290
- ipaddress (~> 0.5)
291
- json (>= 1.8, < 2.0)
292
- fog-aliyun (0.2.0)
293
- fog-core (~> 1.27)
294
- fog-json (~> 1.0)
295
- ipaddress (~> 0.8)
296
- xml-simple (~> 1.1)
297
- fog-atmos (0.1.0)
298
- fog-core
299
- fog-xml
300
268
  fog-aws (1.4.1)
301
269
  fog-core (~> 1.38)
302
270
  fog-json (~> 1.0)
303
271
  fog-xml (~> 0.1)
304
272
  ipaddress (~> 0.8)
305
- fog-brightbox (0.13.0)
306
- fog-core (~> 1.22)
307
- fog-json
308
- inflecto (~> 0.0.2)
309
- fog-cloudatcost (0.1.2)
310
- fog-core (~> 1.36)
311
- fog-json (~> 1.0)
312
- fog-xml (~> 0.1)
313
- ipaddress (~> 0.8)
314
273
  fog-core (1.45.0)
315
274
  builder
316
275
  excon (~> 0.58)
@@ -320,90 +279,34 @@ GEM
320
279
  fog-json (>= 1.0)
321
280
  fog-xml (>= 0.1)
322
281
  ipaddress (>= 0.5)
323
- fog-dnsimple (1.0.0)
324
- fog-core (~> 1.38)
325
- fog-json (~> 1.0)
326
- fog-dynect (0.0.3)
327
- fog-core
328
- fog-json
329
- fog-xml
330
- fog-ecloud (0.3.0)
331
- fog-core
332
- fog-xml
333
- fog-google (0.1.0)
334
- fog-core
335
- fog-json
336
- fog-xml
337
- fog-internet-archive (0.0.1)
338
- fog-core
339
- fog-json
340
- fog-xml
341
282
  fog-joyent (0.0.1)
342
283
  fog-core (~> 1.42)
343
284
  fog-json (>= 1.0)
344
285
  fog-json (1.0.2)
345
286
  fog-core (~> 1.0)
346
287
  multi_json (~> 1.10)
347
- fog-local (0.4.0)
348
- fog-core (~> 1.27)
349
- fog-openstack (0.1.21)
288
+ fog-openstack (0.1.22)
350
289
  fog-core (>= 1.40)
351
290
  fog-json (>= 1.0)
352
291
  ipaddress (>= 0.8)
353
- fog-powerdns (0.1.1)
354
- fog-core (~> 1.27)
355
- fog-json (~> 1.0)
356
- fog-xml (~> 0.1)
357
- fog-profitbricks (4.0.0)
358
- fog-core (~> 1.42)
359
- fog-json (~> 1.0)
360
292
  fog-rackspace (0.1.5)
361
293
  fog-core (>= 1.35)
362
294
  fog-json (>= 1.0)
363
295
  fog-xml (>= 0.1)
364
296
  ipaddress (>= 0.8)
365
- fog-radosgw (0.0.5)
366
- fog-core (>= 1.21.0)
367
- fog-json
368
- fog-xml (>= 0.0.1)
369
- fog-riakcs (0.1.0)
370
- fog-core
371
- fog-json
372
- fog-xml
373
- fog-sakuracloud (1.7.5)
374
- fog-core
375
- fog-json
376
297
  fog-scaleway (0.3.0)
377
298
  fog-core (~> 1.42)
378
299
  fog-json (~> 1.0)
379
- fog-serverlove (0.1.2)
380
- fog-core
381
- fog-json
382
300
  fog-softlayer (1.1.4)
383
301
  fog-core
384
302
  fog-json
385
- fog-storm_on_demand (0.1.1)
386
- fog-core
387
- fog-json
388
- fog-terremark (0.1.0)
389
- fog-core
390
- fog-xml
391
- fog-vmfusion (0.1.0)
392
- fission
393
- fog-core
394
- fog-voxel (0.1.0)
395
- fog-core
396
- fog-xml
397
- fog-vsphere (1.12.0)
398
- fog-core
399
- rbvmomi (~> 1.9)
400
303
  fog-xenserver (0.3.0)
401
304
  fog-core
402
305
  fog-xml
403
306
  fog-xml (0.1.3)
404
307
  fog-core
405
308
  nokogiri (>= 1.5.11, < 2.0.0)
406
- foodcritic (11.4.0)
309
+ foodcritic (12.2.1)
407
310
  cucumber-core (>= 1.3)
408
311
  erubis
409
312
  ffi-yajl (~> 2.0)
@@ -413,22 +316,22 @@ GEM
413
316
  treetop (~> 1.4)
414
317
  formatador (0.2.5)
415
318
  fuzzyurl (0.9.0)
416
- gherkin (4.1.3)
319
+ gcewinpass (1.0.0)
320
+ google-api-client (~> 0.9.0)
321
+ gherkin (5.0.0)
417
322
  git (1.3.0)
418
- google-api-client (0.8.7)
419
- activesupport (>= 3.2, < 5.0)
323
+ google-api-client (0.9.28)
420
324
  addressable (~> 2.3)
421
- autoparse (~> 0.3)
422
- extlib (~> 0.9)
423
- faraday (~> 0.9)
424
- googleauth (~> 0.3)
425
- launchy (~> 2.4)
426
- multi_json (~> 1.10)
427
- retriable (~> 1.4)
428
- signet (~> 0.6)
429
- googleauth (0.5.3)
325
+ googleauth (~> 0.5)
326
+ httpclient (~> 2.7)
327
+ hurley (~> 0.1)
328
+ memoist (~> 0.11)
329
+ mime-types (>= 1.6)
330
+ representable (~> 2.3.0)
331
+ retriable (~> 2.0)
332
+ googleauth (0.6.2)
430
333
  faraday (~> 0.12)
431
- jwt (~> 1.4)
334
+ jwt (>= 1.4, < 3.0)
432
335
  logging (~> 2.0)
433
336
  memoist (~> 0.12)
434
337
  multi_json (~> 1.11)
@@ -448,16 +351,18 @@ GEM
448
351
  gyoku (1.3.1)
449
352
  builder (>= 2.1.2)
450
353
  hashie (3.5.6)
451
- highline (1.7.8)
354
+ highline (1.7.10)
452
355
  hitimes (1.2.6)
453
356
  hitimes (1.2.6-x86-mingw32)
454
357
  htmlentities (4.3.4)
455
358
  httpclient (2.8.3)
456
- i18n (0.8.6)
457
- inflecto (0.0.2)
359
+ hurley (0.2)
360
+ i18n (0.9.1)
361
+ concurrent-ruby (~> 1.0)
362
+ ice_nine (0.11.2)
458
363
  inifile (3.0.0)
459
364
  iniparse (1.4.4)
460
- inspec (1.36.1)
365
+ inspec (1.45.13)
461
366
  addressable (~> 2.4)
462
367
  faraday (>= 0.9.0)
463
368
  hashie (~> 3.4)
@@ -475,13 +380,17 @@ GEM
475
380
  semverse
476
381
  sslshake (~> 1.2)
477
382
  thor (~> 0.19)
478
- toml (~> 0.1)
479
- train (~> 0.26)
383
+ tomlrb (~> 1.2)
384
+ train (~> 0.29, >= 0.29.2)
480
385
  ipaddress (0.8.3)
481
386
  iso8601 (0.9.1)
482
387
  jmespath (1.3.1)
483
388
  json (1.8.6)
484
- jwt (1.5.6)
389
+ jwt (2.1.0)
390
+ kartograph (0.2.4)
391
+ kitchen-digitalocean (0.9.8)
392
+ droplet_kit (~> 2.2)
393
+ test-kitchen (~> 1.17)
485
394
  kitchen-dokken (2.6.5)
486
395
  docker-api (~> 1.33)
487
396
  lockfile (~> 2.1)
@@ -492,18 +401,35 @@ GEM
492
401
  multi_json
493
402
  retryable (~> 2.0)
494
403
  test-kitchen (~> 1.4, >= 1.4.1)
404
+ kitchen-google (1.4.0)
405
+ gcewinpass (~> 1.0)
406
+ google-api-client (~> 0.9.0)
407
+ test-kitchen
495
408
  kitchen-hyperv (0.5.1)
496
409
  test-kitchen (~> 1.4)
497
- kitchen-inspec (0.19.0)
410
+ kitchen-inspec (0.20.0)
498
411
  hashie (~> 3.4)
499
412
  inspec (>= 0.34.0, < 2.0.0)
500
413
  test-kitchen (~> 1.6)
501
414
  kitchen-vagrant (1.2.1)
502
415
  test-kitchen (~> 1.4)
416
+ knife-cloud (1.2.1)
417
+ chef (>= 0.10.10)
418
+ knife-windows (>= 0.5.14)
419
+ mixlib-shellout
420
+ knife-ec2 (0.16.0)
421
+ fog-aws (~> 1.0)
422
+ knife-windows (~> 1.0)
423
+ mime-types
424
+ knife-google (3.2.0)
425
+ chef (>= 12.0)
426
+ gcewinpass (~> 1.0)
427
+ google-api-client (~> 0.9.0)
428
+ knife-cloud (~> 1.2.0)
503
429
  knife-opc (0.3.2)
504
430
  knife-push (1.0.3)
505
431
  chef (>= 12.7.2)
506
- knife-spork (1.6.3)
432
+ knife-spork (1.7.1)
507
433
  app_conf (>= 0.4.0)
508
434
  chef (>= 11.0.0)
509
435
  diffy (>= 3.0.1)
@@ -511,8 +437,6 @@ GEM
511
437
  knife-windows (1.9.0)
512
438
  winrm (~> 2.1)
513
439
  winrm-elevated (~> 1.0)
514
- launchy (2.4.3)
515
- addressable (~> 2.3)
516
440
  libyajl2 (1.2.0)
517
441
  listen (3.1.5)
518
442
  rb-fsevent (~> 0.9, >= 0.9.4)
@@ -528,11 +452,11 @@ GEM
528
452
  macaddr (1.7.1)
529
453
  systemu (~> 2.6.2)
530
454
  memoist (0.16.0)
531
- method_source (0.8.2)
455
+ method_source (0.9.0)
532
456
  mime-types (3.1)
533
457
  mime-types-data (~> 3.2015)
534
458
  mime-types-data (3.2016.0521)
535
- mini_portile2 (2.2.0)
459
+ mini_portile2 (2.3.0)
536
460
  minitar (0.5.4)
537
461
  minitest (5.10.3)
538
462
  mixlib-archive (0.4.1)
@@ -540,8 +464,7 @@ GEM
540
464
  mixlib-authentication (1.4.2)
541
465
  mixlib-cli (1.7.0)
542
466
  mixlib-config (2.2.4)
543
- mixlib-install (2.1.12)
544
- artifactory
467
+ mixlib-install (3.8.0)
545
468
  mixlib-shellout
546
469
  mixlib-versioning
547
470
  thor
@@ -551,7 +474,7 @@ GEM
551
474
  win32-process (~> 0.8.2)
552
475
  wmi-lite (~> 1.0)
553
476
  mixlib-versioning (1.2.2)
554
- molinillo (0.6.3)
477
+ molinillo (0.6.4)
555
478
  multi_json (1.12.2)
556
479
  multi_test (0.1.2)
557
480
  multipart-post (2.0.0)
@@ -568,19 +491,19 @@ GEM
568
491
  net-ssh-gateway (>= 1.2.0)
569
492
  net-telnet (0.1.1)
570
493
  nio4r (2.1.0)
571
- nokogiri (1.8.0)
572
- mini_portile2 (~> 2.2.0)
573
- nokogiri (1.8.0-x64-mingw32)
574
- mini_portile2 (~> 2.2.0)
575
- nokogiri (1.8.0-x86-mingw32)
576
- mini_portile2 (~> 2.2.0)
494
+ nokogiri (1.8.1)
495
+ mini_portile2 (~> 2.3.0)
496
+ nokogiri (1.8.1-x64-mingw32)
497
+ mini_portile2 (~> 2.3.0)
498
+ nokogiri (1.8.1-x86-mingw32)
499
+ mini_portile2 (~> 2.3.0)
577
500
  nori (2.6.0)
578
501
  notiffany (0.1.1)
579
502
  nenv (~> 0.1)
580
503
  shellany (~> 0.0)
581
504
  octokit (4.7.0)
582
505
  sawyer (~> 0.8.0, >= 0.5.3)
583
- ohai (13.4.0)
506
+ ohai (13.6.0)
584
507
  chef-config (>= 12.5.0.alpha.1, < 14)
585
508
  ffi (~> 1.9)
586
509
  ffi-yajl (~> 2.2)
@@ -600,19 +523,17 @@ GEM
600
523
  os (0.9.6)
601
524
  paint (1.0.1)
602
525
  parallel (1.12.0)
603
- parser (2.4.0.0)
604
- ast (~> 2.2)
605
- parslet (1.5.0)
606
- blankslate (~> 2.0)
526
+ parser (2.4.0.2)
527
+ ast (~> 2.3)
528
+ parslet (1.8.1)
607
529
  plist (3.3.0)
608
530
  polyglot (0.3.5)
609
531
  powerpack (0.1.1)
610
532
  proxifier (1.0.3)
611
- pry (0.10.4)
533
+ pry (0.11.3)
612
534
  coderay (~> 1.1.0)
613
- method_source (~> 0.8.1)
614
- slop (~> 3.4)
615
- pry-byebug (3.5.0)
535
+ method_source (~> 0.9.0)
536
+ pry-byebug (3.5.1)
616
537
  byebug (~> 9.1)
617
538
  pry (~> 0.10)
618
539
  pry-remote (0.1.8)
@@ -621,23 +542,22 @@ GEM
621
542
  pry-stack_explorer (0.4.9.2)
622
543
  binding_of_caller (>= 0.7)
623
544
  pry (>= 0.9.11)
624
- public_suffix (3.0.0)
545
+ public_suffix (3.0.1)
625
546
  rack (2.0.3)
626
547
  rainbow (2.2.2)
627
548
  rake
628
- rake (12.1.0)
549
+ rake (12.3.0)
629
550
  rb-fsevent (0.10.2)
630
551
  rb-inotify (0.9.10)
631
552
  ffi (>= 0.5.0, < 2)
632
553
  rb-readline (0.5.5)
633
- rbvmomi (1.11.3)
634
- builder (~> 3.0)
635
- json (>= 1.8)
636
- nokogiri (~> 1.5)
637
- trollop (~> 2.1)
638
554
  rdoc (5.1.0)
639
555
  rdp-ruby-wmi (0.3.1)
640
- retriable (1.4.1)
556
+ representable (2.3.0)
557
+ uber (~> 0.0.7)
558
+ resource_kit (0.1.7)
559
+ addressable (>= 2.3.6, < 3.0.0)
560
+ retriable (2.1.0)
641
561
  retryable (2.0.4)
642
562
  ridley (5.1.1)
643
563
  addressable
@@ -657,22 +577,22 @@ GEM
657
577
  retryable (~> 2.0)
658
578
  semverse (~> 2.0)
659
579
  varia_model (~> 0.6)
660
- rspec (3.6.0)
661
- rspec-core (~> 3.6.0)
662
- rspec-expectations (~> 3.6.0)
663
- rspec-mocks (~> 3.6.0)
664
- rspec-core (3.6.0)
665
- rspec-support (~> 3.6.0)
666
- rspec-expectations (3.6.0)
580
+ rspec (3.7.0)
581
+ rspec-core (~> 3.7.0)
582
+ rspec-expectations (~> 3.7.0)
583
+ rspec-mocks (~> 3.7.0)
584
+ rspec-core (3.7.0)
585
+ rspec-support (~> 3.7.0)
586
+ rspec-expectations (3.7.0)
667
587
  diff-lcs (>= 1.2.0, < 2.0)
668
- rspec-support (~> 3.6.0)
588
+ rspec-support (~> 3.7.0)
669
589
  rspec-its (1.2.0)
670
590
  rspec-core (>= 3.0.0)
671
591
  rspec-expectations (>= 3.0.0)
672
- rspec-mocks (3.6.0)
592
+ rspec-mocks (3.7.0)
673
593
  diff-lcs (>= 1.2.0, < 2.0)
674
- rspec-support (~> 3.6.0)
675
- rspec-support (3.6.0)
594
+ rspec-support (~> 3.7.0)
595
+ rspec-support (3.7.0)
676
596
  rspec_junit_formatter (0.2.3)
677
597
  builder (< 4)
678
598
  rspec-core (>= 2, < 4, != 2.12.0)
@@ -684,7 +604,7 @@ GEM
684
604
  ruby-progressbar (~> 1.7)
685
605
  unicode-display_width (~> 1.0, >= 1.0.1)
686
606
  ruby-prof (0.16.2)
687
- ruby-progressbar (1.8.3)
607
+ ruby-progressbar (1.9.0)
688
608
  ruby-shadow (2.5.0)
689
609
  ruby_dep (1.5.0)
690
610
  rubyntlm (0.6.2)
@@ -695,23 +615,23 @@ GEM
695
615
  addressable (>= 2.3.5, < 2.6)
696
616
  faraday (~> 0.8, < 1.0)
697
617
  semverse (2.0.0)
698
- serverspec (2.40.0)
618
+ serverspec (2.41.3)
699
619
  multi_json
700
620
  rspec (~> 3.0)
701
621
  rspec-its
702
- specinfra (~> 2.68)
622
+ specinfra (~> 2.72)
703
623
  sfl (2.3)
704
624
  shellany (0.0.1)
705
- signet (0.7.3)
625
+ signet (0.8.1)
706
626
  addressable (~> 2.3)
707
627
  faraday (~> 0.9)
708
- jwt (~> 1.5)
628
+ jwt (>= 1.5, < 3.0)
709
629
  multi_json (~> 1.10)
710
630
  slop (3.6.0)
711
631
  solve (4.0.0)
712
632
  molinillo (~> 0.6)
713
633
  semverse (>= 1.1, < 3.0)
714
- specinfra (2.71.2)
634
+ specinfra (2.72.1)
715
635
  net-scp
716
636
  net-ssh (>= 2.7, < 5.0)
717
637
  net-telnet
@@ -728,21 +648,23 @@ GEM
728
648
  uuid (~> 2.0)
729
649
  syslog-logger (1.6.8)
730
650
  systemu (2.6.5)
731
- test-kitchen (1.17.0)
732
- mixlib-install (>= 1.2, < 3.0)
651
+ test-kitchen (1.19.2)
652
+ mixlib-install (~> 3.6)
733
653
  mixlib-shellout (>= 1.2, < 3.0)
734
654
  net-scp (~> 1.1)
735
655
  net-ssh (>= 2.9, < 5.0)
736
656
  net-ssh-gateway (~> 1.2)
737
657
  safe_yaml (~> 1.0)
738
658
  thor (~> 0.19, < 0.19.2)
659
+ winrm (~> 2.0)
660
+ winrm-elevated (~> 1.0)
661
+ winrm-fs (~> 1.1.0)
739
662
  thor (0.19.1)
740
663
  thread_safe (0.3.6)
741
664
  timers (4.0.4)
742
665
  hitimes
743
- toml (0.1.2)
744
- parslet (~> 1.5.0)
745
- train (0.26.2)
666
+ tomlrb (1.2.6)
667
+ train (0.29.2)
746
668
  docker-api (~> 1.26)
747
669
  json (>= 1.8, < 3.0)
748
670
  mixlib-shellout (~> 2.0)
@@ -750,11 +672,11 @@ GEM
750
672
  net-ssh (>= 2.9, < 5.0)
751
673
  winrm (~> 2.0)
752
674
  winrm-fs (~> 1.0)
753
- treetop (1.6.8)
675
+ treetop (1.6.9)
754
676
  polyglot (~> 0.3)
755
- trollop (2.1.2)
756
- tzinfo (1.2.3)
677
+ tzinfo (1.2.4)
757
678
  thread_safe (~> 0.1)
679
+ uber (0.0.15)
758
680
  ubuntu_ami (0.4.1)
759
681
  unicode-display_width (1.3.0)
760
682
  uuid (2.3.8)
@@ -763,6 +685,11 @@ GEM
763
685
  varia_model (0.6.0)
764
686
  buff-extensions (~> 2.0)
765
687
  hashie (>= 2.0.2, < 4.0.0)
688
+ virtus (1.0.5)
689
+ axiom-types (~> 0.1)
690
+ coercible (~> 1.0)
691
+ descendants_tracker (~> 0.0, >= 0.0.3)
692
+ equalizer (~> 0.0, >= 0.0.9)
766
693
  win32-api (1.5.3-universal-mingw32)
767
694
  win32-dir (0.5.1)
768
695
  ffi (>= 1.0.0)
@@ -798,14 +725,13 @@ GEM
798
725
  winrm-elevated (1.1.0)
799
726
  winrm (~> 2.0)
800
727
  winrm-fs (~> 1.0)
801
- winrm-fs (1.0.1)
728
+ winrm-fs (1.1.1)
802
729
  erubis (~> 2.7)
803
730
  logging (>= 1.6.1, < 3.0)
804
731
  rubyzip (~> 1.1)
805
732
  winrm (~> 2.0)
806
733
  wmi-lite (1.0.0)
807
- xml-simple (1.1.5)
808
- yard (0.9.9)
734
+ yard (0.9.12)
809
735
 
810
736
  PLATFORMS
811
737
  ruby
@@ -815,39 +741,43 @@ PLATFORMS
815
741
  DEPENDENCIES
816
742
  appbundler
817
743
  artifactory
818
- berkshelf (>= 6.3)
744
+ berkshelf (>= 6.3.1)
819
745
  bundler
820
- chef (= 13.4.19)
746
+ chef (= 13.6.4)
821
747
  chef-dk!
822
748
  chef-provisioning (>= 2.4.0)
823
- chef-provisioning-aws (>= 2.0)
749
+ chef-provisioning-aws (>= 3.0.0)
824
750
  chef-provisioning-azure (>= 0.6.0)
825
- chef-provisioning-fog (>= 0.20.0)
751
+ chef-provisioning-fog (>= 0.26.0)
826
752
  chef-sugar
827
- chef-vault
828
- cheffish (>= 13.0)
829
- chefspec
753
+ chef-vault (>= 3.3.0)
754
+ cheffish (>= 13.1.0)
755
+ chefspec (>= 7.1.0)
830
756
  chefstyle
831
757
  cookstyle (>= 2.0.0)
832
758
  cucumber
833
759
  dco
834
760
  dep-selector-libgecode
835
761
  dep_selector
836
- fauxhai
762
+ fauxhai (>= 5.4.0)
837
763
  ffi
838
764
  ffi-rzmq-core
839
- foodcritic (>= 11.2)
765
+ foodcritic (>= 12.1)
840
766
  guard
841
- inspec (>= 0.29.0)
767
+ inspec (>= 1.42.3)
768
+ kitchen-digitalocean (>= 0.9.8)
842
769
  kitchen-dokken (>= 2.5.0)
843
- kitchen-ec2
844
- kitchen-hyperv
845
- kitchen-inspec
846
- kitchen-vagrant
770
+ kitchen-ec2 (>= 1.3.2)
771
+ kitchen-google (>= 1.4.0)
772
+ kitchen-hyperv (>= 0.5.1)
773
+ kitchen-inspec (>= 0.19.0)
774
+ kitchen-vagrant (>= 1.2.1)
775
+ knife-ec2 (>= 0.15.0)
776
+ knife-google (>= 3.2.0)
847
777
  knife-opc (>= 0.3.2)
848
778
  knife-push
849
779
  knife-spork
850
- knife-windows
780
+ knife-windows (>= 1.9.0)
851
781
  listen
852
782
  mixlib-install
853
783
  mixlib-versioning
@@ -870,7 +800,7 @@ DEPENDENCIES
870
800
  ruby-prof
871
801
  ruby-shadow
872
802
  stove
873
- test-kitchen
803
+ test-kitchen (>= 1.18.0)
874
804
  win32-api
875
805
  win32-dir
876
806
  win32-event
@@ -884,4 +814,4 @@ DEPENDENCIES
884
814
  yard
885
815
 
886
816
  BUNDLED WITH
887
- 1.15.4
817
+ 1.16.0