chef-dk 0.17.17 → 0.18.26

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +11 -14
  3. data/Gemfile.lock +162 -139
  4. data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +0 -1
  5. data/acceptance/Gemfile.lock +73 -68
  6. data/chef-dk.gemspec +3 -9
  7. data/lib/chef-dk/command/clean_policy_cookbooks.rb +1 -2
  8. data/lib/chef-dk/command/clean_policy_revisions.rb +1 -1
  9. data/lib/chef-dk/command/delete_policy.rb +1 -1
  10. data/lib/chef-dk/command/delete_policy_group.rb +1 -1
  11. data/lib/chef-dk/command/export.rb +1 -1
  12. data/lib/chef-dk/command/generator_commands/build_cookbook.rb +11 -1
  13. data/lib/chef-dk/command/generator_commands/cookbook.rb +11 -2
  14. data/lib/chef-dk/command/install.rb +1 -1
  15. data/lib/chef-dk/command/push.rb +1 -1
  16. data/lib/chef-dk/command/push_archive.rb +1 -1
  17. data/lib/chef-dk/command/show_policy.rb +1 -1
  18. data/lib/chef-dk/command/undelete.rb +1 -1
  19. data/lib/chef-dk/command/update.rb +1 -1
  20. data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +1 -1
  21. data/lib/chef-dk/skeletons/code_generator/files/default/repo/data_bags/README.md +2 -2
  22. data/lib/chef-dk/skeletons/code_generator/files/default/repo/roles/README.md +1 -1
  23. data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +4 -3
  24. data/lib/chef-dk/skeletons/code_generator/templates/default/Policyfile.rb.erb +1 -1
  25. data/lib/chef-dk/version.rb +1 -1
  26. data/omnibus_overrides.rb +1 -2
  27. data/spec/unit/command/generator_commands/cookbook_spec.rb +5 -5
  28. data/spec/unit/command/generator_commands/policyfile_spec.rb +1 -1
  29. data/spec/unit/command/generator_commands/repo_spec.rb +1 -1
  30. data/tasks/dependencies.rb +2 -1
  31. data/tasks/version.rb +28 -3
  32. data/version_policy.rb +22 -22
  33. metadata +5 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e87c2780a2527adbfbf2398f04c21071e17d444c
4
- data.tar.gz: 9e909f8c26214c9fbe273ef9a3e0aa89fd5ebae2
3
+ metadata.gz: f906bee9734d445319af51c3bc0139d048d47abb
4
+ data.tar.gz: fe01b01d9ad8e7b3554b3a3c46c6aebdba968de2
5
5
  SHA512:
6
- metadata.gz: 455bf41016fa0f77bf4a6e6cc9ff119a9773bc2722e0cfaf2944438ec47a81844b0c016c0e70cb549f30f4c8978f1c7d8738ea5d6db592cf11ecaa453db97645
7
- data.tar.gz: 8401c1c5f28495efc09578a696ea290c9015029ae828464d84a541b181f9e945abbbff9fab5b2efe74b50615fe934391a7dfe9a978cff3f3f3f8ec55732a2538
6
+ metadata.gz: f99a5c851d653bcb883b57c8da49e945d406ab95ed8dcb5b2efd8038ccc978c449f1638858aa10902b85ea430b81d8d1a87863cd93fe70a9a9ec5d98818a8e94
7
+ data.tar.gz: ab78fea87d65c32851aeafe3ca8bd2d0b301fcb7d21ce17c73d65e472845a0e6cde21a9e9182c464b41337ead842280c0f5bd7f6d13eabd6b8c73e45d212c322
data/Gemfile CHANGED
@@ -42,21 +42,21 @@ end
42
42
  # at least prevent downgrades beyond that:
43
43
  group(:omnibus_package) do
44
44
  gem "appbundler", github: "chef/appbundler" # until next release with multiple-gem support
45
- gem "berkshelf"
45
+ gem "berkshelf", ">= 5.0"
46
46
  # Chef 12.8.1 Gem includes some extra files which can break gem installation on
47
47
  # windows. For now we are pulling chef from github at the tag as a workaround.
48
- gem "chef-provisioning", ">= 1.7.0"
49
- gem "chef-provisioning-aws", ">= 1.8.0"
50
- gem "chef-provisioning-azure", ">= 0.5.0"
51
- gem "chef-provisioning-fog", ">= 0.18.0"
48
+ gem "chef-provisioning", ">= 2.0"
49
+ gem "chef-provisioning-aws", ">= 2.0"
50
+ gem "chef-provisioning-azure", ">= 0.6.0"
51
+ gem "chef-provisioning-fog", ">= 0.20.0"
52
52
  gem "chef-provisioning-vagrant", ">= 0.11.0"
53
53
  gem "chef-vault"
54
54
  # The chef version is pinned by "rake dependencies", which grabs the current version from omnibus.
55
- gem "chef", github: "chef/chef", branch: "v12.13.37"
56
- gem "cheffish", ">= 2.0.3"
55
+ gem "chef", github: "chef/chef", branch: "v12.14.89"
56
+ gem "cheffish", ">= 4.0"
57
57
  gem "chefspec"
58
58
  gem "fauxhai"
59
- gem "foodcritic", ">= 6.1.1"
59
+ gem "foodcritic", ">= 7.1"
60
60
  gem "inspec", ">= 0.17.1"
61
61
  gem "kitchen-ec2"
62
62
  gem "kitchen-dokken"
@@ -65,19 +65,15 @@ group(:omnibus_package) do
65
65
  gem "knife-windows"
66
66
  gem "ohai", ">= 8.13.0"
67
67
  gem "test-kitchen"
68
- # Until listen supports Ruby 2.0 and 2.1
69
- gem "listen", "< 3.1.0"
68
+ gem "listen"
70
69
  gem "mixlib-install"
71
70
 
72
- # until dk runs on ruby 2.2.2+
73
- gem "activesupport", "< 5.0"
74
-
75
71
  # For Delivery build node
76
72
  gem "chef-sugar"
77
73
  gem "mixlib-versioning"
78
74
  gem "artifactory"
79
75
  # The opscode-pushy-client version is pinned by "rake dependencies", which grabs the current version from omnibus.
80
- gem "opscode-pushy-client", github: "chef/opscode-pushy-client", branch: "2.1.1"
76
+ gem "opscode-pushy-client", github: "chef/opscode-pushy-client", branch: "2.1.2"
81
77
  gem "ffi-rzmq-core"
82
78
  gem "knife-push"
83
79
 
@@ -93,6 +89,7 @@ group(:omnibus_package) do
93
89
  gem "cookstyle"
94
90
  gem "winrm-fs"
95
91
  gem "winrm-elevated"
92
+ gem "cucumber"
96
93
  end
97
94
 
98
95
  # Everything except AIX and Windows
@@ -1,19 +1,20 @@
1
1
  GIT
2
2
  remote: git://github.com/chef/appbundler.git
3
- revision: a8376ff735ec63d6f4e3cffe971223516890239c
3
+ revision: 379a06cc58e0d150fb966b49a16df4c70bb9d4d4
4
4
  specs:
5
5
  appbundler (0.9.0)
6
6
  mixlib-cli (~> 1.4)
7
7
 
8
8
  GIT
9
9
  remote: git://github.com/chef/chef.git
10
- revision: 3c3b48fe740846c429370d62489bfb8ecdfdff28
11
- branch: v12.13.37
10
+ revision: cfb054c7b78660659c47cb8c85f1cb3f9bf02544
11
+ branch: v12.14.89
12
12
  specs:
13
- chef (12.13.37)
13
+ chef (12.14.89)
14
+ addressable
14
15
  bundler (>= 1.10)
15
- chef-config (= 12.13.37)
16
- chef-zero (~> 4.8)
16
+ chef-config (= 12.14.89)
17
+ chef-zero (>= 4.8)
17
18
  diff-lcs (~> 1.2, >= 1.2.4)
18
19
  erubis (~> 2.7)
19
20
  ffi-yajl (~> 2.2)
@@ -38,10 +39,11 @@ GIT
38
39
  specinfra (~> 2.10)
39
40
  syslog-logger (~> 1.6)
40
41
  uuidtools (~> 2.1.5)
41
- chef (12.13.37-universal-mingw32)
42
+ chef (12.14.89-universal-mingw32)
43
+ addressable
42
44
  bundler (>= 1.10)
43
- chef-config (= 12.13.37)
44
- chef-zero (~> 4.8)
45
+ chef-config (= 12.14.89)
46
+ chef-zero (>= 4.8)
45
47
  diff-lcs (~> 1.2, >= 1.2.4)
46
48
  erubis (~> 2.7)
47
49
  ffi (~> 1.9)
@@ -77,17 +79,18 @@ GIT
77
79
  win32-service (~> 0.8.7)
78
80
  windows-api (~> 0.4.4)
79
81
  wmi-lite (~> 1.0)
80
- chef-config (12.13.37)
82
+ chef-config (12.14.89)
83
+ addressable
81
84
  fuzzyurl
82
85
  mixlib-config (~> 2.0)
83
86
  mixlib-shellout (~> 2.0)
84
87
 
85
88
  GIT
86
89
  remote: git://github.com/chef/opscode-pushy-client.git
87
- revision: ae7bd646eb0390b3c1c6f7ae06de5dae7fc92336
88
- branch: 2.1.1
90
+ revision: 960147934b353e73f7cb7601fb2ac9143fa93f4d
91
+ branch: 2.1.2
89
92
  specs:
90
- opscode-pushy-client (2.1.1)
93
+ opscode-pushy-client (2.1.2)
91
94
  chef (>= 12.5)
92
95
  ffi-rzmq
93
96
  ohai
@@ -96,9 +99,9 @@ GIT
96
99
  PATH
97
100
  remote: .
98
101
  specs:
99
- chef-dk (0.17.17)
102
+ chef-dk (0.18.26)
100
103
  chef (~> 12.5)
101
- chef-provisioning (~> 1.2)
104
+ chef-provisioning (~> 2.0)
102
105
  cookbook-omnifetch (~> 0.2, >= 0.2.2)
103
106
  diff-lcs (~> 1.0)
104
107
  ffi-yajl (>= 1.0, < 3.0)
@@ -106,12 +109,12 @@ PATH
106
109
  mixlib-cli (~> 1.7)
107
110
  mixlib-shellout (~> 2.0)
108
111
  paint (~> 1.0)
109
- solve (~> 2.0, >= 2.0.1)
112
+ solve (>= 2.0.1)
110
113
 
111
114
  GEM
112
115
  remote: https://rubygems.org/
113
116
  specs:
114
- CFPropertyList (2.3.2)
117
+ CFPropertyList (2.3.3)
115
118
  activesupport (4.2.7.1)
116
119
  i18n (~> 0.7)
117
120
  json (~> 1.7, >= 1.7.7)
@@ -120,29 +123,28 @@ GEM
120
123
  tzinfo (~> 1.1)
121
124
  addressable (2.4.0)
122
125
  app_conf (0.4.2)
123
- artifactory (2.3.3)
126
+ artifactory (2.5.0)
124
127
  ast (2.3.0)
125
128
  autoparse (0.3.3)
126
129
  addressable (>= 2.3.1)
127
130
  extlib (>= 0.9.15)
128
131
  multi_json (>= 1.0.0)
129
- aws-sdk (2.5.3)
130
- aws-sdk-resources (= 2.5.3)
131
- aws-sdk-core (2.5.3)
132
+ aws-sdk (2.6.2)
133
+ aws-sdk-resources (= 2.6.2)
134
+ aws-sdk-core (2.6.2)
132
135
  jmespath (~> 1.0)
133
- aws-sdk-resources (2.5.3)
134
- aws-sdk-core (= 2.5.3)
136
+ aws-sdk-resources (2.6.2)
137
+ aws-sdk-core (= 2.6.2)
135
138
  aws-sdk-v1 (1.66.0)
136
139
  json (~> 1.4)
137
140
  nokogiri (>= 1.4.4)
138
- berkshelf (4.3.5)
141
+ backports (3.6.8)
142
+ berkshelf (5.1.0)
139
143
  addressable (~> 2.3, >= 2.3.4)
140
- berkshelf-api-client (~> 2.0, >= 2.0.2)
141
- buff-config (~> 1.0)
142
- buff-extensions (~> 1.0)
143
- buff-shell_out (~> 0.1)
144
- celluloid (= 0.16.0)
145
- celluloid-io (~> 0.16.1)
144
+ berkshelf-api-client (>= 2.0.2, < 4.0)
145
+ buff-config (~> 2.0)
146
+ buff-extensions (~> 2.0)
147
+ buff-shell_out (~> 1.0)
146
148
  cleanroom (~> 1.0)
147
149
  faraday (~> 0.9)
148
150
  httpclient (~> 2.7)
@@ -150,23 +152,23 @@ GEM
150
152
  mixlib-archive (~> 0.1)
151
153
  octokit (~> 4.0)
152
154
  retryable (~> 2.0)
153
- ridley (~> 4.5)
154
- solve (~> 2.0)
155
+ ridley (~> 5.0)
156
+ solve (> 2.0, < 4.0)
155
157
  thor (~> 0.19)
156
- berkshelf-api-client (2.0.2)
157
- faraday (~> 0.9.1)
158
- httpclient (~> 2.7.0)
159
- ridley (~> 4.5)
158
+ berkshelf-api-client (3.0.0)
159
+ faraday (~> 0.9)
160
+ httpclient (~> 2.7)
161
+ ridley (>= 4.5, < 6.0)
160
162
  binding_of_caller (0.7.2)
161
163
  debug_inspector (>= 0.0.1)
162
- buff-config (1.0.1)
163
- buff-extensions (~> 1.0)
164
- varia_model (~> 0.4)
165
- buff-extensions (1.0.0)
166
- buff-ignore (1.1.1)
167
- buff-ruby_engine (0.1.0)
168
- buff-shell_out (0.2.0)
169
- buff-ruby_engine (~> 0.1.0)
164
+ buff-config (2.0.0)
165
+ buff-extensions (~> 2.0)
166
+ varia_model (~> 0.6)
167
+ buff-extensions (2.0.0)
168
+ buff-ignore (1.2.0)
169
+ buff-ruby_engine (1.0.0)
170
+ buff-shell_out (1.1.0)
171
+ buff-ruby_engine (~> 1.0)
170
172
  builder (3.2.2)
171
173
  byebug (9.0.5)
172
174
  celluloid (0.16.0)
@@ -174,26 +176,27 @@ GEM
174
176
  celluloid-io (0.16.2)
175
177
  celluloid (>= 0.16.0)
176
178
  nio4r (>= 1.1.0)
177
- chef-provisioning (1.9.1)
178
- cheffish (>= 1.3.1, < 4.0)
179
+ chef-provisioning (2.0.1)
180
+ cheffish (~> 4.0)
179
181
  inifile (>= 2.0.2)
180
182
  mixlib-install (~> 1.0)
181
183
  net-scp (~> 1.0)
182
184
  net-ssh (>= 2.9, < 4.0)
183
185
  net-ssh-gateway (~> 1.2.0)
184
- winrm (~> 1.3)
185
- chef-provisioning-aws (1.11.0)
186
+ winrm-fs (~> 1.0)
187
+ chef-provisioning-aws (2.0.0)
186
188
  aws-sdk (>= 2.1.26, < 3.0)
187
189
  aws-sdk-v1 (>= 1.59.0)
188
- chef-provisioning (~> 1.4)
190
+ chef-provisioning (~> 2.0)
189
191
  retryable (~> 2.0, >= 2.0.1)
190
192
  ubuntu_ami (~> 0.4, >= 0.4.1)
191
- chef-provisioning-azure (0.5.0)
192
- chef-provisioning (~> 1.0)
193
+ chef-provisioning-azure (0.6.0)
194
+ chef-provisioning (>= 1.0, < 3.0)
193
195
  stuartpreston-azure-sdk-for-ruby (~> 0.7)
194
- chef-provisioning-fog (0.19.1)
195
- chef-provisioning (~> 1.0)
196
+ chef-provisioning-fog (0.20.0)
197
+ chef-provisioning (>= 1.0, < 3.0)
196
198
  fog (>= 1.37.0)
199
+ fog-digitalocean
197
200
  fog-softlayer (~> 1.1.0)
198
201
  google-api-client (~> 0.8.0)
199
202
  retryable
@@ -201,28 +204,36 @@ GEM
201
204
  chef-provisioning
202
205
  chef-sugar (3.4.0)
203
206
  chef-vault (2.9.0)
204
- chef-zero (4.9.0)
207
+ chef-zero (5.1.0)
205
208
  ffi-yajl (~> 2.2)
206
209
  hashie (>= 2.0, < 4.0)
207
210
  mixlib-log (~> 1.3)
208
- rack (< 2)
211
+ rack (~> 2.0)
209
212
  uuidtools (~> 2.1)
210
- cheffish (3.0.0)
211
- chef-zero (~> 4.3)
213
+ cheffish (4.0.0)
214
+ chef-zero (~> 5.0)
212
215
  net-ssh
213
- chefspec (4.7.0)
214
- chef (>= 11.14)
215
- fauxhai (~> 3.2)
216
+ chefspec (5.2.0)
217
+ chef (>= 12.0)
218
+ fauxhai (~> 3.6)
216
219
  rspec (~> 3.0)
217
220
  cleanroom (1.0.0)
218
221
  coderay (1.1.1)
219
- concurrent-ruby (1.0.2)
220
222
  cookbook-omnifetch (0.2.3)
221
223
  minitar (~> 0.5.4)
222
224
  cookstyle (0.0.1)
223
225
  rubocop (= 0.39.0)
226
+ cucumber (2.4.0)
227
+ builder (>= 2.1.2)
228
+ cucumber-core (~> 1.5.0)
229
+ cucumber-wire (~> 0.0.1)
230
+ diff-lcs (>= 1.1.3)
231
+ gherkin (~> 4.0)
232
+ multi_json (>= 1.7.5, < 2.0)
233
+ multi_test (>= 0.1.2)
224
234
  cucumber-core (1.5.0)
225
235
  gherkin (~> 4.0)
236
+ cucumber-wire (0.0.1)
226
237
  debug_inspector (0.0.2)
227
238
  dep-selector-libgecode (1.3.1)
228
239
  dep_selector (1.0.4)
@@ -234,11 +245,11 @@ GEM
234
245
  excon (>= 0.38.0)
235
246
  json
236
247
  erubis (2.7.0)
237
- excon (0.51.0)
248
+ excon (0.52.0)
238
249
  extlib (0.9.16)
239
250
  faraday (0.9.2)
240
251
  multipart-post (>= 1.2, < 3)
241
- fauxhai (3.8.0)
252
+ fauxhai (3.9.0)
242
253
  net-ssh
243
254
  ffi (1.9.14)
244
255
  ffi (1.9.14-x86-mingw32)
@@ -246,7 +257,7 @@ GEM
246
257
  ffi-rzmq-core (>= 1.0.1)
247
258
  ffi-rzmq-core (1.0.5)
248
259
  ffi
249
- ffi-win32-extensions (1.0.2)
260
+ ffi-win32-extensions (1.0.3)
250
261
  ffi
251
262
  ffi-yajl (2.3.0)
252
263
  libyajl2 (~> 1.2)
@@ -307,6 +318,11 @@ GEM
307
318
  builder
308
319
  excon (~> 0.49)
309
320
  formatador (~> 0.2)
321
+ fog-digitalocean (0.1.0)
322
+ fog-core (~> 1.42)
323
+ fog-json (>= 1.0)
324
+ fog-xml (>= 0.1)
325
+ ipaddress (>= 0.5)
310
326
  fog-dynect (0.0.3)
311
327
  fog-core
312
328
  fog-json
@@ -323,7 +339,7 @@ GEM
323
339
  multi_json (~> 1.10)
324
340
  fog-local (0.3.0)
325
341
  fog-core (~> 1.27)
326
- fog-openstack (0.1.11)
342
+ fog-openstack (0.1.12)
327
343
  fog-core (>= 1.40)
328
344
  fog-json (>= 1.0)
329
345
  ipaddress (>= 0.8)
@@ -331,10 +347,9 @@ GEM
331
347
  fog-core (~> 1.27)
332
348
  fog-json (~> 1.0)
333
349
  fog-xml (~> 0.1)
334
- fog-profitbricks (0.0.5)
335
- fog-core
336
- fog-xml
337
- nokogiri
350
+ fog-profitbricks (2.0.1)
351
+ fog-core (~> 1.42)
352
+ fog-json (~> 1.0)
338
353
  fog-rackspace (0.1.1)
339
354
  fog-core (>= 1.35)
340
355
  fog-json (>= 1.0)
@@ -354,7 +369,7 @@ GEM
354
369
  fog-serverlove (0.1.2)
355
370
  fog-core
356
371
  fog-json
357
- fog-softlayer (1.1.3)
372
+ fog-softlayer (1.1.4)
358
373
  fog-core
359
374
  fog-json
360
375
  fog-storm_on_demand (0.1.1)
@@ -369,16 +384,16 @@ GEM
369
384
  fog-voxel (0.1.0)
370
385
  fog-core
371
386
  fog-xml
372
- fog-vsphere (1.0.0)
387
+ fog-vsphere (1.1.0)
373
388
  fog-core
374
- rbvmomi (~> 1.8)
389
+ rbvmomi (~> 1.8.0)
375
390
  fog-xenserver (0.2.3)
376
391
  fog-core
377
392
  fog-xml
378
393
  fog-xml (0.1.2)
379
394
  fog-core
380
395
  nokogiri (~> 1.5, >= 1.5.11)
381
- foodcritic (7.0.1)
396
+ foodcritic (7.1.0)
382
397
  cucumber-core (>= 1.3)
383
398
  erubis
384
399
  nokogiri (>= 1.5, < 2.0)
@@ -390,8 +405,8 @@ GEM
390
405
  fuzzyurl (0.9.0)
391
406
  gherkin (4.0.0)
392
407
  git (1.3.0)
393
- google-api-client (0.8.6)
394
- activesupport (>= 3.2)
408
+ google-api-client (0.8.7)
409
+ activesupport (>= 3.2, < 5.0)
395
410
  addressable (~> 2.3)
396
411
  autoparse (~> 0.3)
397
412
  extlib (~> 0.9)
@@ -422,40 +437,43 @@ GEM
422
437
  thor (>= 0.18.1)
423
438
  gyoku (1.3.1)
424
439
  builder (>= 2.1.2)
425
- hashie (3.4.4)
440
+ hashie (3.4.6)
426
441
  highline (1.7.8)
427
442
  hitimes (1.2.4)
428
443
  hitimes (1.2.4-x86-mingw32)
429
- httpclient (2.7.2)
444
+ httpclient (2.8.2.4)
430
445
  i18n (0.7.0)
431
446
  inflecto (0.0.2)
432
447
  inifile (3.0.0)
433
448
  iniparse (1.4.2)
434
- inspec (0.29.0)
449
+ inspec (0.35.0)
435
450
  hashie (~> 3.4)
436
- json (~> 1.8)
451
+ json (>= 1.8, < 3.0)
437
452
  method_source (~> 0.8)
453
+ mixlib-log
454
+ parallel (~> 1.9)
438
455
  pry (~> 0)
439
456
  rainbow (~> 2)
440
457
  rspec (~> 3)
441
458
  rspec-its (~> 1.2)
442
459
  rubyzip (~> 1.1)
460
+ sslshake (~> 1)
443
461
  thor (~> 0.19)
444
- train (>= 0.16.0, < 1.0)
462
+ train (>= 0.19.0, < 1.0)
445
463
  ipaddress (0.8.3)
446
464
  jmespath (1.3.1)
447
465
  json (1.8.3)
448
- jwt (1.5.4)
449
- kitchen-dokken (0.0.32)
466
+ jwt (1.5.6)
467
+ kitchen-dokken (1.0.0)
450
468
  docker-api (~> 1.29)
451
469
  test-kitchen (~> 1.5)
452
- kitchen-ec2 (1.1.0)
470
+ kitchen-ec2 (1.2.0)
453
471
  aws-sdk (~> 2)
454
472
  excon
455
473
  multi_json
456
474
  retryable (~> 2.0)
457
475
  test-kitchen (~> 1.4, >= 1.4.1)
458
- kitchen-inspec (0.15.0)
476
+ kitchen-inspec (0.15.1)
459
477
  inspec (>= 0.22.0, < 1.0.0)
460
478
  test-kitchen (~> 1.6)
461
479
  kitchen-vagrant (0.20.0)
@@ -467,14 +485,15 @@ GEM
467
485
  chef (>= 11.0.0)
468
486
  diffy (>= 3.0.1)
469
487
  git (>= 1.2.5)
470
- knife-windows (1.5.0)
471
- winrm (~> 1.7)
488
+ knife-windows (1.6.0)
489
+ winrm-elevated (~> 1.0)
472
490
  launchy (2.4.3)
473
491
  addressable (~> 2.3)
474
492
  libyajl2 (1.2.0)
475
- listen (3.0.8)
493
+ listen (3.1.5)
476
494
  rb-fsevent (~> 0.9, >= 0.9.4)
477
495
  rb-inotify (~> 0.9, >= 0.9.7)
496
+ ruby_dep (~> 1.2)
478
497
  little-plugger (1.1.4)
479
498
  logging (2.1.0)
480
499
  little-plugger (~> 1.1)
@@ -482,7 +501,7 @@ GEM
482
501
  lumberjack (1.0.10)
483
502
  macaddr (1.7.1)
484
503
  systemu (~> 2.6.2)
485
- memoist (0.14.0)
504
+ memoist (0.15.0)
486
505
  method_source (0.8.2)
487
506
  mime-types (3.1)
488
507
  mime-types-data (~> 3.2015)
@@ -495,19 +514,20 @@ GEM
495
514
  mixlib-authentication (1.4.1)
496
515
  mixlib-log
497
516
  mixlib-cli (1.7.0)
498
- mixlib-config (2.2.1)
499
- mixlib-install (1.1.0)
517
+ mixlib-config (2.2.4)
518
+ mixlib-install (1.2.2)
500
519
  artifactory
501
520
  mixlib-shellout
502
521
  mixlib-versioning
503
522
  mixlib-log (1.7.1)
504
- mixlib-shellout (2.2.6)
505
- mixlib-shellout (2.2.6-universal-mingw32)
523
+ mixlib-shellout (2.2.7)
524
+ mixlib-shellout (2.2.7-universal-mingw32)
506
525
  win32-process (~> 0.8.2)
507
526
  wmi-lite (~> 1.0)
508
527
  mixlib-versioning (1.1.0)
509
- molinillo (0.4.5)
528
+ molinillo (0.5.1)
510
529
  multi_json (1.12.1)
530
+ multi_test (0.1.2)
511
531
  multipart-post (2.0.0)
512
532
  nenv (0.3.0)
513
533
  net-scp (1.2.1)
@@ -534,21 +554,22 @@ GEM
534
554
  shellany (~> 0.0)
535
555
  octokit (4.3.0)
536
556
  sawyer (~> 0.7.0, >= 0.5.3)
537
- ohai (8.19.1)
557
+ ohai (8.20.0)
538
558
  chef-config (>= 12.5.0.alpha.1, < 13)
539
559
  ffi (~> 1.9)
540
560
  ffi-yajl (~> 2.2)
541
561
  ipaddress
542
562
  mixlib-cli
543
563
  mixlib-config (~> 2.0)
544
- mixlib-log
564
+ mixlib-log (>= 1.7.1, < 2.0)
545
565
  mixlib-shellout (~> 2.0)
546
566
  plist (~> 3.1)
547
567
  systemu (~> 2.6.4)
548
568
  wmi-lite (~> 1.0)
549
569
  os (0.9.6)
550
570
  paint (1.0.1)
551
- parser (2.3.1.2)
571
+ parallel (1.9.0)
572
+ parser (2.3.1.4)
552
573
  ast (~> 2.2)
553
574
  pkg-config (1.1.7)
554
575
  plist (3.2.0)
@@ -568,9 +589,9 @@ GEM
568
589
  pry-stack_explorer (0.4.9.2)
569
590
  binding_of_caller (>= 0.7)
570
591
  pry (>= 0.9.11)
571
- rack (1.6.4)
592
+ rack (2.0.1)
572
593
  rainbow (2.1.0)
573
- rake (11.2.2)
594
+ rake (11.3.0)
574
595
  rb-fsevent (0.9.7)
575
596
  rb-inotify (0.9.7)
576
597
  ffi (>= 0.5.0)
@@ -584,12 +605,12 @@ GEM
584
605
  rdp-ruby-wmi (0.3.1)
585
606
  retriable (1.4.1)
586
607
  retryable (2.0.4)
587
- ridley (4.6.1)
608
+ ridley (5.1.0)
588
609
  addressable
589
- buff-config (~> 1.0)
590
- buff-extensions (~> 1.0)
591
- buff-ignore (~> 1.1.1)
592
- buff-shell_out (~> 0.1)
610
+ buff-config (~> 2.0)
611
+ buff-extensions (~> 2.0)
612
+ buff-ignore (~> 1.2)
613
+ buff-shell_out (~> 1.0)
593
614
  celluloid (~> 0.16.0)
594
615
  celluloid-io (~> 0.16.1)
595
616
  chef-config (>= 12.5.0)
@@ -600,13 +621,13 @@ GEM
600
621
  json (>= 1.7.7)
601
622
  mixlib-authentication (>= 1.3.0)
602
623
  retryable (~> 2.0)
603
- semverse (~> 1.1)
604
- varia_model (~> 0.4.0)
624
+ semverse (~> 2.0)
625
+ varia_model (~> 0.6)
605
626
  rspec (3.5.0)
606
627
  rspec-core (~> 3.5.0)
607
628
  rspec-expectations (~> 3.5.0)
608
629
  rspec-mocks (~> 3.5.0)
609
- rspec-core (3.5.2)
630
+ rspec-core (3.5.3)
610
631
  rspec-support (~> 3.5.0)
611
632
  rspec-expectations (3.5.0)
612
633
  diff-lcs (>= 1.2.0, < 2.0)
@@ -627,19 +648,19 @@ GEM
627
648
  rainbow (>= 1.99.1, < 3.0)
628
649
  ruby-progressbar (~> 1.7)
629
650
  unicode-display_width (~> 1.0, >= 1.0.1)
630
- ruby-prof (0.15.9)
651
+ ruby-prof (0.16.2)
631
652
  ruby-progressbar (1.8.1)
632
653
  ruby-shadow (2.5.0)
633
654
  ruby_dep (1.4.0)
634
- rubyntlm (0.6.0)
655
+ rubyntlm (0.6.1)
635
656
  rubyzip (1.2.0)
636
657
  rufus-lru (1.1.0)
637
658
  safe_yaml (1.0.4)
638
659
  sawyer (0.7.0)
639
660
  addressable (>= 2.3.5, < 2.5)
640
661
  faraday (~> 0.8, < 0.10)
641
- semverse (1.2.1)
642
- serverspec (2.36.0)
662
+ semverse (2.0.0)
663
+ serverspec (2.36.1)
643
664
  multi_json
644
665
  rspec (~> 3.0)
645
666
  rspec-its
@@ -652,14 +673,15 @@ GEM
652
673
  jwt (~> 1.5)
653
674
  multi_json (~> 1.10)
654
675
  slop (3.6.0)
655
- solve (2.0.3)
656
- molinillo (~> 0.4.2)
657
- semverse (~> 1.1)
658
- specinfra (2.61.1)
676
+ solve (3.0.1)
677
+ molinillo (~> 0.4)
678
+ semverse (>= 1.1, < 3.0)
679
+ specinfra (2.63.1)
659
680
  net-scp
660
681
  net-ssh (>= 2.7, < 4.0)
661
682
  net-telnet
662
683
  sfl
684
+ sslshake (1.0.12)
663
685
  stuartpreston-azure-sdk-for-ruby (0.7.2)
664
686
  json (~> 1.8)
665
687
  mime-types (> 1, < 4)
@@ -668,8 +690,8 @@ GEM
668
690
  uuid (~> 2.0)
669
691
  syslog-logger (1.6.8)
670
692
  systemu (2.6.5)
671
- test-kitchen (1.11.1)
672
- mixlib-install (~> 1.0, >= 1.0.4)
693
+ test-kitchen (1.13.0)
694
+ mixlib-install (~> 1.2)
673
695
  mixlib-shellout (>= 1.2, < 3.0)
674
696
  net-scp (~> 1.1)
675
697
  net-ssh (>= 2.9, < 4.0)
@@ -680,26 +702,26 @@ GEM
680
702
  thread_safe (0.3.5)
681
703
  timers (4.0.4)
682
704
  hitimes
683
- train (0.16.0)
705
+ train (0.20.0)
684
706
  docker-api (~> 1.26)
685
- json (~> 1.8)
707
+ json (>= 1.8, < 3.0)
686
708
  mixlib-shellout (~> 2.0)
687
709
  net-scp (~> 1.2)
688
710
  net-ssh (>= 2.9, < 4.0)
689
- winrm (~> 1.6)
690
- winrm-fs (~> 0.3)
711
+ winrm (~> 2.0)
712
+ winrm-fs (~> 1.0)
691
713
  treetop (1.6.8)
692
714
  polyglot (~> 0.3)
693
715
  trollop (2.1.2)
694
716
  tzinfo (1.2.2)
695
717
  thread_safe (~> 0.1)
696
718
  ubuntu_ami (0.4.1)
697
- unicode-display_width (1.1.0)
719
+ unicode-display_width (1.1.1)
698
720
  uuid (2.3.8)
699
721
  macaddr (~> 1.0)
700
722
  uuidtools (2.1.5)
701
- varia_model (0.4.1)
702
- buff-extensions (~> 1.0)
723
+ varia_model (0.6.0)
724
+ buff-extensions (~> 2.0)
703
725
  hashie (>= 2.0.2, < 4.0.0)
704
726
  win32-api (1.5.3-universal-mingw32)
705
727
  win32-dir (0.5.1)
@@ -724,22 +746,23 @@ GEM
724
746
  windows-pr (1.2.5)
725
747
  win32-api (>= 1.4.5)
726
748
  windows-api (>= 0.4.0)
727
- winrm (1.8.1)
749
+ winrm (2.0.2)
728
750
  builder (>= 2.1.2)
751
+ erubis (~> 2.7)
729
752
  gssapi (~> 1.2)
730
753
  gyoku (~> 1.0)
731
754
  httpclient (~> 2.2, >= 2.2.0.2)
732
755
  logging (>= 1.6.1, < 3.0)
733
756
  nori (~> 2.0)
734
- rubyntlm (~> 0.6.0)
735
- winrm-elevated (0.4.0)
736
- winrm (~> 1.5)
737
- winrm-fs (~> 0.4.2)
738
- winrm-fs (0.4.3)
757
+ rubyntlm (~> 0.6.0, >= 0.6.1)
758
+ winrm-elevated (1.0.1)
759
+ winrm (~> 2.0)
760
+ winrm-fs (~> 1.0)
761
+ winrm-fs (1.0.0)
739
762
  erubis (~> 2.7)
740
763
  logging (>= 1.6.1, < 3.0)
741
764
  rubyzip (~> 1.1)
742
- winrm (~> 1.5)
765
+ winrm (~> 2.0)
743
766
  wmi-lite (1.0.0)
744
767
  xml-simple (1.1.5)
745
768
  yajl-ruby (1.2.1)
@@ -750,28 +773,28 @@ PLATFORMS
750
773
  x86-mingw32
751
774
 
752
775
  DEPENDENCIES
753
- activesupport (< 5.0)
754
776
  appbundler!
755
777
  artifactory
756
- berkshelf
778
+ berkshelf (>= 5.0)
757
779
  chef!
758
780
  chef-dk!
759
- chef-provisioning (>= 1.7.0)
760
- chef-provisioning-aws (>= 1.8.0)
761
- chef-provisioning-azure (>= 0.5.0)
762
- chef-provisioning-fog (>= 0.18.0)
781
+ chef-provisioning (>= 2.0)
782
+ chef-provisioning-aws (>= 2.0)
783
+ chef-provisioning-azure (>= 0.6.0)
784
+ chef-provisioning-fog (>= 0.20.0)
763
785
  chef-provisioning-vagrant (>= 0.11.0)
764
786
  chef-sugar
765
787
  chef-vault
766
- cheffish (>= 2.0.3)
788
+ cheffish (>= 4.0)
767
789
  chefspec
768
790
  cookstyle
791
+ cucumber
769
792
  dep-selector-libgecode
770
793
  dep_selector
771
794
  fauxhai
772
795
  ffi
773
796
  ffi-rzmq-core
774
- foodcritic (>= 6.1.1)
797
+ foodcritic (>= 7.1)
775
798
  guard
776
799
  inspec (>= 0.17.1)
777
800
  kitchen-dokken
@@ -781,7 +804,7 @@ DEPENDENCIES
781
804
  knife-push
782
805
  knife-spork
783
806
  knife-windows
784
- listen (< 3.1.0)
807
+ listen
785
808
  mixlib-install
786
809
  mixlib-versioning
787
810
  nokogiri