chef-dk 0.12.0 → 0.13.21

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1656a75b5842d79bf2e1b87fcb65f2605d96ce56
4
- data.tar.gz: b7a81ec45c99ed6a7aa28eeaab6322b403633996
3
+ metadata.gz: 722f7a9f5f65aa5ec8d60e293f8833f7c11ffe95
4
+ data.tar.gz: f8fd85790ea98e1af069db59e5642e4a29445000
5
5
  SHA512:
6
- metadata.gz: 81d0e5371a68de023d0d0fac49e6330b1654e2cb2f7a66c085d13d5108bd877fa02a10e76d809567af7a996b42f9338ca80c84fc7f17d47f294939f20c9f1ff0
7
- data.tar.gz: 2d25ad944bb6319bd8c1d4537c2b435fa55151836186f9382557c0a37d2cf557dfd6e8604d88198f12000ac49cadb366c79034e0978577c32e3d8486d2ab4301
6
+ metadata.gz: e034fb764e0325c9b4428b6404eb63ebc2a372d72c63b11b4554480a1259c76a4e8dccb81aa5f762808597f46fd9dc56fd068f2eee0ffc771dc5b8dffdffec21
7
+ data.tar.gz: 002e7e0f1e9562ec3adc14ea22fad26f9215d97041ca371ee1a82731a1f2c12cfed81b64a1e71a8517e30199ad879767e3e861c0292ab89b36b645495e5b2064
data/Gemfile CHANGED
@@ -1,30 +1,87 @@
1
- #
2
- # Copyright:: Copyright (c) 2014 Chef Software Inc.
3
- # License:: Apache License, Version 2.0
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License");
6
- # you may not use this file except in compliance with the License.
7
- # You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
- #
17
-
18
- source 'https://rubygems.org'
19
-
20
- gemspec :name => "chef-dk"
21
-
22
- # Chef 12.8.1 Gem includes some extra files which can break gem installation on
23
- # windows. For now we are pulling chef from github at the tag as a workaround.
24
- gem "chef", github: "chef", tag: "12.8.1"
25
-
26
- group(:dev) do
27
- gem 'guard'
28
- gem 'guard-rspec'
29
- gem 'ruby_gntp'
30
- end
1
+ #
2
+ # Copyright:: Copyright (c) 2014 Chef Software Inc.
3
+ # License:: Apache License, Version 2.0
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ #
17
+
18
+ source 'https://rubygems.org'
19
+
20
+ # path is needed because when we attempt to load this gemspec to look at it from
21
+ # another bundle, it will expand the path relative to the other bundle rather than
22
+ # this file.
23
+ gemspec path: File.dirname(__FILE__), name: "chef-dk"
24
+
25
+ # EXPERIMENTAL: ALL gems specified here will be installed in chef-dk omnibus.
26
+ # This represents all gems that will be part of chef-dk.
27
+
28
+ group(:omnibus_package, :development) do
29
+ gem "pry"
30
+ end
31
+
32
+ # All software we recognize needs to stay at the latest possible version. But
33
+ # since that's not expressible here, we make it >= the last *known* version to
34
+ # at least prevent downgrades beyond that:
35
+ group(:omnibus_package) do
36
+ gem "appbundler", github: "chef/appbundler" # until next release with multiple-gem support
37
+ gem "berkshelf"
38
+ # Chef 12.8.1 Gem includes some extra files which can break gem installation on
39
+ # windows. For now we are pulling chef from github at the tag as a workaround.
40
+ gem "chef-provisioning", ">= 1.7.0"
41
+ gem "chef-provisioning-aws", ">= 1.8.0"
42
+ gem "chef-provisioning-azure", ">= 0.5.0"
43
+ gem "chef-provisioning-fog", ">= 0.18.0"
44
+ gem "chef-provisioning-vagrant", ">= 0.11.0"
45
+ gem "chef-vault"
46
+ # The chef version is pinned by "rake dependencies", which grabs the current version from omnibus.
47
+ gem "chef", github: "chef/chef", branch: "v12.9.41"
48
+ gem "cheffish", ">= 2.0.3"
49
+ gem "chefspec"
50
+ gem "fauxhai"
51
+ gem "foodcritic", ">= 6.1.1"
52
+ gem "inspec", ">= 0.17.1"
53
+ gem "kitchen-ec2"
54
+ gem "kitchen-inspec"
55
+ gem "kitchen-vagrant"
56
+ gem "knife-windows"
57
+ gem "ohai", ">= 8.13.0"
58
+ gem "test-kitchen"
59
+
60
+ # All of the following used to be software definitions we included:
61
+ gem "knife-spork"
62
+ gem "dep-selector-libgecode"
63
+ gem "nokogiri"
64
+ gem "pry-byebug"
65
+ gem "pry-remote"
66
+ gem "pry-stack_explorer"
67
+ gem "rb-readline"
68
+ gem "rubocop", "~> 0.37.2"
69
+ gem "winrm-fs"
70
+
71
+ # bundled or development dependencies we want to ship
72
+ gem "dep_selector"
73
+ gem "guard"
74
+ gem "ruby-prof"
75
+ gem "rake"
76
+ gem "rdoc"
77
+ gem "yard"
78
+ end
79
+
80
+ # NOTE this needs to be excluded from AIX too, but we don't support that on
81
+ # ChefDK and putting a thing in multiple groups :no_windows, :no_aix won't work
82
+ # because it --without no_aix will still install things in group :no_windows.
83
+ # Need to specify groups positively; investigate.
84
+ # http://stackoverflow.com/questions/8420414/how-to-add-mac-specific-gems-to-bundle-on-mac-but-not-on-linux
85
+ group(:no_windows) do
86
+ gem "ruby-shadow"
87
+ end
@@ -0,0 +1,721 @@
1
+ GIT
2
+ remote: git://github.com/chef/appbundler.git
3
+ revision: a8376ff735ec63d6f4e3cffe971223516890239c
4
+ specs:
5
+ appbundler (0.9.0)
6
+ mixlib-cli (~> 1.4)
7
+
8
+ GIT
9
+ remote: git://github.com/chef/chef.git
10
+ revision: a0d98d2cfe6a3f1485fc562a0b5589ba4443e592
11
+ branch: v12.9.41
12
+ specs:
13
+ chef (12.9.41)
14
+ bundler (>= 1.10)
15
+ chef-config (= 12.9.41)
16
+ chef-zero (~> 4.5)
17
+ diff-lcs (~> 1.2, >= 1.2.4)
18
+ erubis (~> 2.7)
19
+ ffi-yajl (~> 2.2)
20
+ highline (~> 1.6, >= 1.6.9)
21
+ mixlib-authentication (~> 1.4)
22
+ mixlib-cli (~> 1.4)
23
+ mixlib-log (~> 1.3)
24
+ mixlib-shellout (~> 2.0)
25
+ net-sftp (~> 2.1, >= 2.1.2)
26
+ net-ssh (>= 2.9, < 4.0)
27
+ net-ssh-multi (~> 1.1)
28
+ ohai (>= 8.6.0.alpha.1, < 9)
29
+ plist (~> 3.2)
30
+ proxifier (~> 1.0)
31
+ rspec-core (~> 3.4)
32
+ rspec-expectations (~> 3.4)
33
+ rspec-mocks (~> 3.4)
34
+ rspec_junit_formatter (~> 0.2.0)
35
+ serverspec (~> 2.7)
36
+ specinfra (~> 2.10)
37
+ syslog-logger (~> 1.6)
38
+ uuidtools (~> 2.1.5)
39
+ chef-config (12.9.41)
40
+ fuzzyurl (~> 0.8.0)
41
+ mixlib-config (~> 2.0)
42
+ mixlib-shellout (~> 2.0)
43
+
44
+ PATH
45
+ remote: .
46
+ specs:
47
+ chef-dk (0.13.21)
48
+ chef (~> 12.5)
49
+ chef-provisioning (~> 1.2)
50
+ cookbook-omnifetch (~> 0.2, >= 0.2.2)
51
+ diff-lcs (~> 1.0)
52
+ ffi-yajl (>= 1.0, < 3.0)
53
+ minitar (~> 0.5.4)
54
+ mixlib-cli (~> 1.5)
55
+ mixlib-shellout (~> 2.0)
56
+ paint (~> 1.0)
57
+ solve (~> 2.0, >= 2.0.1)
58
+
59
+ GEM
60
+ remote: https://rubygems.org/
61
+ specs:
62
+ CFPropertyList (2.3.2)
63
+ activesupport (4.2.6)
64
+ i18n (~> 0.7)
65
+ json (~> 1.7, >= 1.7.7)
66
+ minitest (~> 5.1)
67
+ thread_safe (~> 0.3, >= 0.3.4)
68
+ tzinfo (~> 1.1)
69
+ addressable (2.4.0)
70
+ app_conf (0.4.2)
71
+ artifactory (2.3.2)
72
+ ast (2.2.0)
73
+ autoparse (0.3.3)
74
+ addressable (>= 2.3.1)
75
+ extlib (>= 0.9.15)
76
+ multi_json (>= 1.0.0)
77
+ aws-sdk (2.2.34)
78
+ aws-sdk-resources (= 2.2.34)
79
+ aws-sdk-core (2.2.34)
80
+ jmespath (~> 1.0)
81
+ aws-sdk-resources (2.2.34)
82
+ aws-sdk-core (= 2.2.34)
83
+ aws-sdk-v1 (1.66.0)
84
+ json (~> 1.4)
85
+ nokogiri (>= 1.4.4)
86
+ berkshelf (4.3.2)
87
+ addressable (~> 2.3, >= 2.3.4)
88
+ berkshelf-api-client (~> 2.0, >= 2.0.2)
89
+ buff-config (~> 1.0)
90
+ buff-extensions (~> 1.0)
91
+ buff-shell_out (~> 0.1)
92
+ celluloid (= 0.16.0)
93
+ celluloid-io (~> 0.16.1)
94
+ cleanroom (~> 1.0)
95
+ faraday (~> 0.9)
96
+ httpclient (~> 2.7)
97
+ minitar (~> 0.5, >= 0.5.4)
98
+ octokit (~> 4.0)
99
+ retryable (~> 2.0)
100
+ ridley (~> 4.5)
101
+ solve (~> 2.0)
102
+ thor (~> 0.19)
103
+ berkshelf-api-client (2.0.2)
104
+ faraday (~> 0.9.1)
105
+ httpclient (~> 2.7.0)
106
+ ridley (~> 4.5)
107
+ binding_of_caller (0.7.2)
108
+ debug_inspector (>= 0.0.1)
109
+ buff-config (1.0.1)
110
+ buff-extensions (~> 1.0)
111
+ varia_model (~> 0.4)
112
+ buff-extensions (1.0.0)
113
+ buff-ignore (1.1.1)
114
+ buff-ruby_engine (0.1.0)
115
+ buff-shell_out (0.2.0)
116
+ buff-ruby_engine (~> 0.1.0)
117
+ builder (3.2.2)
118
+ byebug (8.2.4)
119
+ celluloid (0.16.0)
120
+ timers (~> 4.0.0)
121
+ celluloid-io (0.16.2)
122
+ celluloid (>= 0.16.0)
123
+ nio4r (>= 1.1.0)
124
+ chef-provisioning (1.7.0)
125
+ cheffish (>= 1.3.1, < 3.0)
126
+ inifile (>= 2.0.2)
127
+ mixlib-install (~> 1.0)
128
+ net-scp (~> 1.0)
129
+ net-ssh (>= 2.9, < 4.0)
130
+ net-ssh-gateway (~> 1.2.0)
131
+ winrm (~> 1.3)
132
+ chef-provisioning-aws (1.8.0)
133
+ aws-sdk (>= 2.1.26, < 3.0)
134
+ aws-sdk-v1 (>= 1.59.0)
135
+ chef-provisioning (~> 1.4)
136
+ retryable (~> 2.0, >= 2.0.1)
137
+ ubuntu_ami (~> 0.4, >= 0.4.1)
138
+ chef-provisioning-azure (0.5.0)
139
+ chef-provisioning (~> 1.0)
140
+ stuartpreston-azure-sdk-for-ruby (~> 0.7)
141
+ chef-provisioning-fog (0.18.0)
142
+ chef-provisioning (~> 1.0)
143
+ fog (>= 1.38.0)
144
+ fog-softlayer (~> 1.1.0)
145
+ google-api-client (~> 0.8.0)
146
+ retryable
147
+ chef-provisioning-vagrant (0.11.0)
148
+ chef-provisioning
149
+ chef-vault (2.9.0)
150
+ chef-zero (4.5.0)
151
+ ffi-yajl (~> 2.2)
152
+ hashie (>= 2.0, < 4.0)
153
+ mixlib-log (~> 1.3)
154
+ rack
155
+ uuidtools (~> 2.1)
156
+ cheffish (2.0.3)
157
+ chef-zero (~> 4.3)
158
+ compat_resource
159
+ chefspec (4.6.1)
160
+ chef (>= 11.14)
161
+ fauxhai (~> 3.2)
162
+ rspec (~> 3.0)
163
+ childprocess (0.5.9)
164
+ ffi (~> 1.0, >= 1.0.11)
165
+ cleanroom (1.0.0)
166
+ coderay (1.1.1)
167
+ colorize (0.7.7)
168
+ compat_resource (12.9.1)
169
+ cookbook-omnifetch (0.2.2)
170
+ minitar (~> 0.5.4)
171
+ cucumber-core (1.4.0)
172
+ gherkin (~> 3.2.0)
173
+ debug_inspector (0.0.2)
174
+ dep-selector-libgecode (1.2.0)
175
+ dep_selector (1.0.3)
176
+ dep-selector-libgecode (~> 1.0)
177
+ ffi (~> 1.9)
178
+ descendants_tracker (0.0.4)
179
+ thread_safe (~> 0.3, >= 0.3.1)
180
+ diff-lcs (1.2.5)
181
+ diffy (3.1.0)
182
+ docker-api (1.26.2)
183
+ excon (>= 0.38.0)
184
+ json
185
+ erubis (2.7.0)
186
+ excon (0.49.0)
187
+ extlib (0.9.16)
188
+ faraday (0.9.2)
189
+ multipart-post (>= 1.2, < 3)
190
+ fauxhai (3.2.0)
191
+ net-ssh
192
+ ffi (1.9.10)
193
+ ffi-yajl (2.2.3)
194
+ libyajl2 (~> 1.2)
195
+ fission (0.5.0)
196
+ CFPropertyList (~> 2.2)
197
+ fog (1.38.0)
198
+ fog-aliyun (>= 0.1.0)
199
+ fog-atmos
200
+ fog-aws (>= 0.6.0)
201
+ fog-brightbox (~> 0.4)
202
+ fog-cloudatcost (~> 0.1.0)
203
+ fog-core (~> 1.32)
204
+ fog-dynect (~> 0.0.2)
205
+ fog-ecloud (~> 0.1)
206
+ fog-google (<= 0.1.0)
207
+ fog-json
208
+ fog-local
209
+ fog-openstack
210
+ fog-powerdns (>= 0.1.1)
211
+ fog-profitbricks
212
+ fog-rackspace
213
+ fog-radosgw (>= 0.0.2)
214
+ fog-riakcs
215
+ fog-sakuracloud (>= 0.0.4)
216
+ fog-serverlove
217
+ fog-softlayer
218
+ fog-storm_on_demand
219
+ fog-terremark
220
+ fog-vmfusion
221
+ fog-voxel
222
+ fog-vsphere (>= 0.4.0)
223
+ fog-xenserver
224
+ fog-xml (~> 0.1.1)
225
+ ipaddress (~> 0.5)
226
+ fog-aliyun (0.1.0)
227
+ fog-core (~> 1.27)
228
+ fog-json (~> 1.0)
229
+ ipaddress (~> 0.8)
230
+ xml-simple (~> 1.1)
231
+ fog-atmos (0.1.0)
232
+ fog-core
233
+ fog-xml
234
+ fog-aws (0.9.2)
235
+ fog-core (~> 1.27)
236
+ fog-json (~> 1.0)
237
+ fog-xml (~> 0.1)
238
+ ipaddress (~> 0.8)
239
+ fog-brightbox (0.10.1)
240
+ fog-core (~> 1.22)
241
+ fog-json
242
+ inflecto (~> 0.0.2)
243
+ fog-cloudatcost (0.1.2)
244
+ fog-core (~> 1.36)
245
+ fog-json (~> 1.0)
246
+ fog-xml (~> 0.1)
247
+ ipaddress (~> 0.8)
248
+ fog-core (1.37.0)
249
+ builder
250
+ excon (~> 0.45)
251
+ formatador (~> 0.2)
252
+ fog-dynect (0.0.3)
253
+ fog-core
254
+ fog-json
255
+ fog-xml
256
+ fog-ecloud (0.3.0)
257
+ fog-core
258
+ fog-xml
259
+ fog-google (0.1.0)
260
+ fog-core
261
+ fog-json
262
+ fog-xml
263
+ fog-json (1.0.2)
264
+ fog-core (~> 1.0)
265
+ multi_json (~> 1.10)
266
+ fog-local (0.3.0)
267
+ fog-core (~> 1.27)
268
+ fog-openstack (0.1.2)
269
+ fog-core (>= 1.35)
270
+ fog-json (>= 1.0)
271
+ fog-xml (>= 0.1)
272
+ ipaddress (>= 0.8)
273
+ fog-powerdns (0.1.1)
274
+ fog-core (~> 1.27)
275
+ fog-json (~> 1.0)
276
+ fog-xml (~> 0.1)
277
+ fog-profitbricks (0.0.5)
278
+ fog-core
279
+ fog-xml
280
+ nokogiri
281
+ fog-rackspace (0.1.1)
282
+ fog-core (>= 1.35)
283
+ fog-json (>= 1.0)
284
+ fog-xml (>= 0.1)
285
+ ipaddress (>= 0.8)
286
+ fog-radosgw (0.0.5)
287
+ fog-core (>= 1.21.0)
288
+ fog-json
289
+ fog-xml (>= 0.0.1)
290
+ fog-riakcs (0.1.0)
291
+ fog-core
292
+ fog-json
293
+ fog-xml
294
+ fog-sakuracloud (1.7.5)
295
+ fog-core
296
+ fog-json
297
+ fog-serverlove (0.1.2)
298
+ fog-core
299
+ fog-json
300
+ fog-softlayer (1.1.0)
301
+ fog-core
302
+ fog-json
303
+ fog-storm_on_demand (0.1.1)
304
+ fog-core
305
+ fog-json
306
+ fog-terremark (0.1.0)
307
+ fog-core
308
+ fog-xml
309
+ fog-vmfusion (0.1.0)
310
+ fission
311
+ fog-core
312
+ fog-voxel (0.1.0)
313
+ fog-core
314
+ fog-xml
315
+ fog-vsphere (0.6.3)
316
+ fog-core
317
+ rbvmomi (~> 1.8)
318
+ fog-xenserver (0.2.3)
319
+ fog-core
320
+ fog-xml
321
+ fog-xml (0.1.2)
322
+ fog-core
323
+ nokogiri (~> 1.5, >= 1.5.11)
324
+ foodcritic (6.1.1)
325
+ cucumber-core (>= 1.3)
326
+ erubis
327
+ nokogiri (>= 1.5, < 2.0)
328
+ rake
329
+ rufus-lru (~> 1.0)
330
+ treetop (~> 1.4)
331
+ yajl-ruby (~> 1.1)
332
+ formatador (0.2.5)
333
+ fuzzyurl (0.8.0)
334
+ gherkin (3.2.0)
335
+ git (1.3.0)
336
+ github_api (0.13.1)
337
+ addressable (~> 2.4.0)
338
+ descendants_tracker (~> 0.0.4)
339
+ faraday (~> 0.8, < 0.10)
340
+ hashie (>= 3.4)
341
+ multi_json (>= 1.7.5, < 2.0)
342
+ oauth2
343
+ github_changelog_generator (1.12.0)
344
+ bundler (>= 1.7)
345
+ colorize (~> 0.7)
346
+ github_api (~> 0.12)
347
+ overcommit (>= 0.31)
348
+ rake (>= 10.0)
349
+ rspec (>= 3.2)
350
+ rubocop (>= 0.31)
351
+ google-api-client (0.8.6)
352
+ activesupport (>= 3.2)
353
+ addressable (~> 2.3)
354
+ autoparse (~> 0.3)
355
+ extlib (~> 0.9)
356
+ faraday (~> 0.9)
357
+ googleauth (~> 0.3)
358
+ launchy (~> 2.4)
359
+ multi_json (~> 1.10)
360
+ retriable (~> 1.4)
361
+ signet (~> 0.6)
362
+ googleauth (0.5.1)
363
+ faraday (~> 0.9)
364
+ jwt (~> 1.4)
365
+ logging (~> 2.0)
366
+ memoist (~> 0.12)
367
+ multi_json (~> 1.11)
368
+ os (~> 0.9)
369
+ signet (~> 0.7)
370
+ gssapi (1.2.0)
371
+ ffi (>= 1.0.1)
372
+ guard (2.13.0)
373
+ formatador (>= 0.2.4)
374
+ listen (>= 2.7, <= 4.0)
375
+ lumberjack (~> 1.0)
376
+ nenv (~> 0.1)
377
+ notiffany (~> 0.0)
378
+ pry (>= 0.9.12)
379
+ shellany (~> 0.0)
380
+ thor (>= 0.18.1)
381
+ gyoku (1.3.1)
382
+ builder (>= 2.1.2)
383
+ hashie (3.4.3)
384
+ highline (1.7.8)
385
+ hitimes (1.2.3)
386
+ httpclient (2.7.1)
387
+ i18n (0.7.0)
388
+ inflecto (0.0.2)
389
+ inifile (3.0.0)
390
+ iniparse (1.4.2)
391
+ inspec (0.18.0)
392
+ json (~> 1.8)
393
+ method_source (~> 0.8)
394
+ pry (~> 0)
395
+ r-train (~> 0.10.4)
396
+ rainbow (~> 2)
397
+ rspec (~> 3.3)
398
+ rspec-its (~> 1.2)
399
+ rubyzip (~> 1.1)
400
+ thor (~> 0.19)
401
+ ipaddress (0.8.3)
402
+ jmespath (1.2.4)
403
+ json_pure (>= 1.8.1)
404
+ json (1.8.3)
405
+ json_pure (1.8.3)
406
+ jwt (1.5.1)
407
+ kitchen-ec2 (1.0.0)
408
+ aws-sdk (~> 2)
409
+ excon
410
+ multi_json
411
+ retryable (~> 2.0)
412
+ test-kitchen (~> 1.4, >= 1.4.1)
413
+ kitchen-inspec (0.12.5)
414
+ inspec (>= 0.14.1, < 1.0.0)
415
+ test-kitchen (~> 1.6)
416
+ kitchen-vagrant (0.20.0)
417
+ test-kitchen (~> 1.4)
418
+ knife-spork (1.6.1)
419
+ app_conf (>= 0.4.0)
420
+ chef (>= 11.0.0)
421
+ diffy (>= 3.0.1)
422
+ git (>= 1.2.5)
423
+ knife-windows (1.4.0)
424
+ winrm (~> 1.7)
425
+ launchy (2.4.3)
426
+ addressable (~> 2.3)
427
+ libyajl2 (1.2.0)
428
+ listen (3.0.6)
429
+ rb-fsevent (>= 0.9.3)
430
+ rb-inotify (>= 0.9.7)
431
+ little-plugger (1.1.4)
432
+ logging (2.1.0)
433
+ little-plugger (~> 1.1)
434
+ multi_json (~> 1.10)
435
+ lumberjack (1.0.10)
436
+ macaddr (1.7.1)
437
+ systemu (~> 2.6.2)
438
+ memoist (0.14.0)
439
+ method_source (0.8.2)
440
+ mime-types (2.99.1)
441
+ mini_portile2 (2.0.0)
442
+ minitar (0.5.4)
443
+ minitest (5.8.4)
444
+ mixlib-authentication (1.4.0)
445
+ mixlib-log
446
+ rspec-core (~> 3.2)
447
+ rspec-expectations (~> 3.2)
448
+ rspec-mocks (~> 3.2)
449
+ mixlib-cli (1.5.0)
450
+ mixlib-config (2.2.1)
451
+ mixlib-install (1.0.6)
452
+ artifactory (>= 2.3.0)
453
+ mixlib-shellout (>= 2.2.6)
454
+ mixlib-versioning (>= 1.1.0)
455
+ mixlib-log (1.6.0)
456
+ mixlib-shellout (2.2.6)
457
+ mixlib-versioning (1.1.0)
458
+ molinillo (0.4.4)
459
+ multi_json (1.11.2)
460
+ multi_xml (0.5.5)
461
+ multipart-post (2.0.0)
462
+ nenv (0.3.0)
463
+ net-scp (1.2.1)
464
+ net-ssh (>= 2.6.5)
465
+ net-sftp (2.1.2)
466
+ net-ssh (>= 2.6.5)
467
+ net-ssh (3.1.1)
468
+ net-ssh-gateway (1.2.0)
469
+ net-ssh (>= 2.6.5)
470
+ net-ssh-multi (1.2.1)
471
+ net-ssh (>= 2.6.5)
472
+ net-ssh-gateway (>= 1.2.0)
473
+ net-telnet (0.1.1)
474
+ nio4r (1.2.1)
475
+ nokogiri (1.6.7.2)
476
+ mini_portile2 (~> 2.0.0.rc2)
477
+ nori (2.6.0)
478
+ notiffany (0.0.8)
479
+ nenv (~> 0.1)
480
+ shellany (~> 0.0)
481
+ oauth2 (1.1.0)
482
+ faraday (>= 0.8, < 0.10)
483
+ jwt (~> 1.0, < 1.5.2)
484
+ multi_json (~> 1.3)
485
+ multi_xml (~> 0.5)
486
+ rack (>= 1.2, < 3)
487
+ octokit (4.3.0)
488
+ sawyer (~> 0.7.0, >= 0.5.3)
489
+ ohai (8.14.0)
490
+ chef-config (>= 12.5.0.alpha.1, < 13)
491
+ ffi (~> 1.9)
492
+ ffi-yajl (~> 2.2)
493
+ ipaddress
494
+ mixlib-cli
495
+ mixlib-config (~> 2.0)
496
+ mixlib-log
497
+ mixlib-shellout (~> 2.0)
498
+ plist (~> 3.1)
499
+ systemu (~> 2.6.4)
500
+ wmi-lite (~> 1.0)
501
+ os (0.9.6)
502
+ overcommit (0.33.0)
503
+ childprocess (~> 0.5.8)
504
+ iniparse (~> 1.4)
505
+ paint (1.0.1)
506
+ parser (2.3.0.7)
507
+ ast (~> 2.2)
508
+ plist (3.2.0)
509
+ polyglot (0.3.5)
510
+ powerpack (0.1.1)
511
+ proxifier (1.0.3)
512
+ pry (0.10.3)
513
+ coderay (~> 1.1.0)
514
+ method_source (~> 0.8.1)
515
+ slop (~> 3.4)
516
+ pry-byebug (3.3.0)
517
+ byebug (~> 8.0)
518
+ pry (~> 0.10)
519
+ pry-remote (0.1.8)
520
+ pry (~> 0.9)
521
+ slop (~> 3.0)
522
+ pry-stack_explorer (0.4.9.2)
523
+ binding_of_caller (>= 0.7)
524
+ pry (>= 0.9.11)
525
+ r-train (0.10.4)
526
+ docker-api (~> 1.26.2)
527
+ json (~> 1.8)
528
+ mixlib-shellout (~> 2.1)
529
+ net-scp (~> 1.2)
530
+ net-ssh (>= 2.9, < 4.0)
531
+ winrm (~> 1.6)
532
+ winrm-fs (~> 0.3)
533
+ rack (1.6.4)
534
+ rainbow (2.1.0)
535
+ rake (11.1.2)
536
+ rb-fsevent (0.9.7)
537
+ rb-inotify (0.9.7)
538
+ ffi (>= 0.5.0)
539
+ rb-readline (0.5.3)
540
+ rbvmomi (1.8.2)
541
+ builder
542
+ nokogiri (>= 1.4.1)
543
+ trollop
544
+ rdoc (4.2.2)
545
+ json (~> 1.4)
546
+ retriable (1.4.1)
547
+ retryable (2.0.3)
548
+ ridley (4.5.0)
549
+ addressable
550
+ buff-config (~> 1.0)
551
+ buff-extensions (~> 1.0)
552
+ buff-ignore (~> 1.1)
553
+ buff-shell_out (~> 0.1)
554
+ celluloid (~> 0.16.0)
555
+ celluloid-io (~> 0.16.1)
556
+ chef-config (>= 12.5.0)
557
+ erubis
558
+ faraday (~> 0.9.0)
559
+ hashie (>= 2.0.2, < 4.0.0)
560
+ httpclient (~> 2.7)
561
+ json (>= 1.7.7)
562
+ mixlib-authentication (>= 1.3.0)
563
+ retryable (~> 2.0)
564
+ semverse (~> 1.1)
565
+ varia_model (~> 0.4.0)
566
+ rspec (3.4.0)
567
+ rspec-core (~> 3.4.0)
568
+ rspec-expectations (~> 3.4.0)
569
+ rspec-mocks (~> 3.4.0)
570
+ rspec-core (3.4.4)
571
+ rspec-support (~> 3.4.0)
572
+ rspec-expectations (3.4.0)
573
+ diff-lcs (>= 1.2.0, < 2.0)
574
+ rspec-support (~> 3.4.0)
575
+ rspec-its (1.2.0)
576
+ rspec-core (>= 3.0.0)
577
+ rspec-expectations (>= 3.0.0)
578
+ rspec-mocks (3.4.1)
579
+ diff-lcs (>= 1.2.0, < 2.0)
580
+ rspec-support (~> 3.4.0)
581
+ rspec-support (3.4.1)
582
+ rspec_junit_formatter (0.2.3)
583
+ builder (< 4)
584
+ rspec-core (>= 2, < 4, != 2.12.0)
585
+ rubocop (0.37.2)
586
+ parser (>= 2.3.0.4, < 3.0)
587
+ powerpack (~> 0.1)
588
+ rainbow (>= 1.99.1, < 3.0)
589
+ ruby-progressbar (~> 1.7)
590
+ unicode-display_width (~> 0.3)
591
+ ruby-prof (0.15.9)
592
+ ruby-progressbar (1.7.5)
593
+ ruby-shadow (2.5.0)
594
+ rubyntlm (0.6.0)
595
+ rubyzip (1.2.0)
596
+ rufus-lru (1.0.5)
597
+ safe_yaml (1.0.4)
598
+ sawyer (0.7.0)
599
+ addressable (>= 2.3.5, < 2.5)
600
+ faraday (~> 0.8, < 0.10)
601
+ semverse (1.2.1)
602
+ serverspec (2.31.1)
603
+ multi_json
604
+ rspec (~> 3.0)
605
+ rspec-its
606
+ specinfra (~> 2.53)
607
+ sfl (2.2)
608
+ shellany (0.0.1)
609
+ signet (0.7.2)
610
+ addressable (~> 2.3)
611
+ faraday (~> 0.9)
612
+ jwt (~> 1.5)
613
+ multi_json (~> 1.10)
614
+ slop (3.6.0)
615
+ solve (2.0.3)
616
+ molinillo (~> 0.4.2)
617
+ semverse (~> 1.1)
618
+ specinfra (2.56.1)
619
+ net-scp
620
+ net-ssh (>= 2.7, < 4.0)
621
+ net-telnet
622
+ sfl
623
+ stuartpreston-azure-sdk-for-ruby (0.7.1)
624
+ json (~> 1.8)
625
+ mime-types (~> 2.0)
626
+ nokogiri (~> 1.5)
627
+ systemu (~> 2.6)
628
+ uuid (~> 2.0)
629
+ syslog-logger (1.6.8)
630
+ systemu (2.6.5)
631
+ test-kitchen (1.7.3)
632
+ mixlib-install (~> 1.0, >= 1.0.4)
633
+ mixlib-shellout (>= 1.2, < 3.0)
634
+ net-scp (~> 1.1)
635
+ net-ssh (>= 2.9, < 4.0)
636
+ safe_yaml (~> 1.0)
637
+ thor (~> 0.18)
638
+ thor (0.19.1)
639
+ thread_safe (0.3.5)
640
+ timers (4.0.4)
641
+ hitimes
642
+ treetop (1.6.5)
643
+ polyglot (~> 0.3)
644
+ trollop (2.1.2)
645
+ tzinfo (1.2.2)
646
+ thread_safe (~> 0.1)
647
+ ubuntu_ami (0.4.1)
648
+ unicode-display_width (0.3.1)
649
+ uuid (2.3.8)
650
+ macaddr (~> 1.0)
651
+ uuidtools (2.1.5)
652
+ varia_model (0.4.1)
653
+ buff-extensions (~> 1.0)
654
+ hashie (>= 2.0.2, < 4.0.0)
655
+ winrm (1.7.3)
656
+ builder (>= 2.1.2)
657
+ gssapi (~> 1.2)
658
+ gyoku (~> 1.0)
659
+ httpclient (~> 2.2, >= 2.2.0.2)
660
+ logging (>= 1.6.1, < 3.0)
661
+ nori (~> 2.0)
662
+ rubyntlm (~> 0.6.0)
663
+ winrm-fs (0.4.2)
664
+ erubis (~> 2.7)
665
+ logging (>= 1.6.1, < 3.0)
666
+ rubyzip (~> 1.1)
667
+ winrm (~> 1.5)
668
+ wmi-lite (1.0.0)
669
+ xml-simple (1.1.5)
670
+ yajl-ruby (1.2.1)
671
+ yard (0.8.7.6)
672
+
673
+ PLATFORMS
674
+ ruby
675
+
676
+ DEPENDENCIES
677
+ appbundler!
678
+ berkshelf
679
+ chef!
680
+ chef-dk!
681
+ chef-provisioning (>= 1.7.0)
682
+ chef-provisioning-aws (>= 1.8.0)
683
+ chef-provisioning-azure (>= 0.5.0)
684
+ chef-provisioning-fog (>= 0.18.0)
685
+ chef-provisioning-vagrant (>= 0.11.0)
686
+ chef-vault
687
+ cheffish (>= 2.0.3)
688
+ chefspec
689
+ dep-selector-libgecode
690
+ dep_selector
691
+ fauxhai
692
+ foodcritic (>= 6.1.1)
693
+ github_changelog_generator
694
+ guard
695
+ inspec (>= 0.17.1)
696
+ kitchen-ec2
697
+ kitchen-inspec
698
+ kitchen-vagrant
699
+ knife-spork
700
+ knife-windows
701
+ nokogiri
702
+ ohai (>= 8.13.0)
703
+ pry
704
+ pry-byebug
705
+ pry-remote
706
+ pry-stack_explorer
707
+ rake
708
+ rb-readline
709
+ rdoc
710
+ rspec-core (~> 3.0)
711
+ rspec-expectations (~> 3.0)
712
+ rspec-mocks (~> 3.0)
713
+ rubocop (~> 0.37.2)
714
+ ruby-prof
715
+ ruby-shadow
716
+ test-kitchen
717
+ winrm-fs
718
+ yard
719
+
720
+ BUNDLED WITH
721
+ 1.11.2