chef-dk 1.1.16 → 1.2.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +12 -4
- data/Gemfile.lock +84 -68
- data/Rakefile +9 -0
- data/acceptance/Gemfile +3 -0
- data/acceptance/Gemfile.lock +43 -27
- data/chef-dk.gemspec +3 -2
- data/lib/chef-dk/command/install.rb +1 -1
- data/lib/chef-dk/exceptions.rb +10 -0
- data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +52 -8
- data/lib/chef-dk/policyfile/community_cookbook_source.rb +0 -1
- data/lib/chef-dk/policyfile/cookbook_location_specification.rb +2 -2
- data/lib/chef-dk/policyfile/dsl.rb +4 -2
- data/lib/chef-dk/policyfile/source_uri.rb +57 -0
- data/lib/chef-dk/policyfile/storage_config.rb +3 -0
- data/lib/chef-dk/policyfile_compiler.rb +4 -4
- data/lib/chef-dk/policyfile_services/install.rb +4 -2
- data/lib/chef-dk/skeletons/code_generator/files/default/delivery-project.toml +14 -3
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/metadata.rb +3 -0
- data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +2 -0
- data/lib/chef-dk/skeletons/code_generator/templates/default/repo/gitignore.erb +121 -4
- data/lib/chef-dk/version.rb +1 -1
- data/omnibus_overrides.rb +2 -0
- data/spec/unit/command/generator_commands/cookbook_spec.rb +16 -5
- data/spec/unit/command/install_spec.rb +2 -2
- data/spec/unit/fixtures/cookbooks_api/chef_server_universe.json +56 -0
- data/spec/unit/fixtures/cookbooks_api/pruned_chef_server_universe.json +30 -0
- data/spec/unit/policyfile/chef_server_cookbook_source_spec.rb +29 -8
- data/spec/unit/policyfile/cookbook_location_specification_spec.rb +22 -0
- data/spec/unit/policyfile/source_uri_spec.rb +36 -0
- data/spec/unit/policyfile/storage_config_spec.rb +12 -0
- data/spec/unit/policyfile_services/push_spec.rb +16 -0
- data/version_policy.rb +9 -5
- metadata +40 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65b332fcc1fc7ab76cfda6cf2fd1bab829c36639
|
4
|
+
data.tar.gz: 7c8c4180d80d98c0fe197434fba9a1e73fc6ef1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04b909c53a40e3af958c478bd980a0df7b9f8dca714ec1320778de05347c4262d02e2339d9741ad81be6944a42e9d05bb40724233d82b1e0d61bf64d58d6b4df
|
7
|
+
data.tar.gz: fbc4101ae613d44121d12ffaa826d68efe4b23a584ce4b3f5bd82976d65fad7f6f07d69fcc2db16f5d5897c875ea9129af9344e4a14bd9dbbf0623ee410ca275
|
data/Gemfile
CHANGED
@@ -27,9 +27,12 @@ gem "chef-dk", path: "."
|
|
27
27
|
# EXPERIMENTAL: ALL gems specified here will be installed in chef-dk omnibus.
|
28
28
|
# This represents all gems that will be part of chef-dk.
|
29
29
|
|
30
|
+
# Ensure that we can always install rake, regardless of gem groups
|
31
|
+
# Including the travis group to address https://github.com/sickill/rainbow/issues/44
|
32
|
+
gem "rake", group: [ :omnibus_package, :development, :test, :travis ]
|
33
|
+
|
30
34
|
group(:omnibus_package, :development, :test) do
|
31
35
|
gem "pry"
|
32
|
-
gem "rake"
|
33
36
|
gem "rdoc"
|
34
37
|
gem "yard"
|
35
38
|
gem "dep_selector"
|
@@ -52,14 +55,14 @@ group(:omnibus_package) do
|
|
52
55
|
gem "chef-provisioning-vagrant", ">= 0.11.0"
|
53
56
|
gem "chef-vault"
|
54
57
|
# The chef version is pinned by "rake dependencies", which grabs the current version from omnibus.
|
55
|
-
gem "chef", github: "chef/chef", branch: "v12.
|
58
|
+
gem "chef", github: "chef/chef", branch: "v12.18.31"
|
56
59
|
gem "cheffish", ">= 4.0"
|
57
60
|
gem "chefspec"
|
58
61
|
gem "fauxhai"
|
59
62
|
gem "foodcritic", ">= 8.0"
|
60
63
|
gem "inspec", ">= 0.17.1"
|
61
64
|
gem "kitchen-ec2"
|
62
|
-
gem "kitchen-dokken"
|
65
|
+
gem "kitchen-dokken", "= 1.1.0"
|
63
66
|
gem "kitchen-inspec"
|
64
67
|
gem "kitchen-vagrant"
|
65
68
|
gem "knife-windows"
|
@@ -81,7 +84,7 @@ group(:omnibus_package) do
|
|
81
84
|
# All of the following used to be software definitions we included:
|
82
85
|
gem "knife-spork"
|
83
86
|
gem "dep-selector-libgecode"
|
84
|
-
gem "nokogiri"
|
87
|
+
# gem "nokogiri"
|
85
88
|
gem "pry-byebug"
|
86
89
|
gem "pry-remote"
|
87
90
|
gem "pry-stack_explorer"
|
@@ -91,6 +94,11 @@ group(:omnibus_package) do
|
|
91
94
|
gem "winrm-fs"
|
92
95
|
gem "winrm-elevated"
|
93
96
|
gem "cucumber"
|
97
|
+
|
98
|
+
# TODO Pinning these for now because github_changelog_generator has a bunch
|
99
|
+
# of different versions across our products
|
100
|
+
gem "nokogiri", "~> 1.6.3"
|
101
|
+
gem "addressable", "~> 2.4.0"
|
94
102
|
end
|
95
103
|
|
96
104
|
# Everything except AIX and Windows
|
data/Gemfile.lock
CHANGED
@@ -7,13 +7,13 @@ GIT
|
|
7
7
|
|
8
8
|
GIT
|
9
9
|
remote: git://github.com/chef/chef.git
|
10
|
-
revision:
|
11
|
-
branch: v12.
|
10
|
+
revision: 28da683d4820e7081aa94c9ff9d1b6791bd36793
|
11
|
+
branch: v12.18.31
|
12
12
|
specs:
|
13
|
-
chef (12.
|
13
|
+
chef (12.18.31)
|
14
14
|
addressable
|
15
15
|
bundler (>= 1.10)
|
16
|
-
chef-config (= 12.
|
16
|
+
chef-config (= 12.18.31)
|
17
17
|
chef-zero (>= 4.8)
|
18
18
|
diff-lcs (~> 1.2, >= 1.2.4)
|
19
19
|
erubis (~> 2.7)
|
@@ -39,10 +39,10 @@ GIT
|
|
39
39
|
specinfra (~> 2.10)
|
40
40
|
syslog-logger (~> 1.6)
|
41
41
|
uuidtools (~> 2.1.5)
|
42
|
-
chef (12.
|
42
|
+
chef (12.18.31-universal-mingw32)
|
43
43
|
addressable
|
44
44
|
bundler (>= 1.10)
|
45
|
-
chef-config (= 12.
|
45
|
+
chef-config (= 12.18.31)
|
46
46
|
chef-zero (>= 4.8)
|
47
47
|
diff-lcs (~> 1.2, >= 1.2.4)
|
48
48
|
erubis (~> 2.7)
|
@@ -79,7 +79,7 @@ GIT
|
|
79
79
|
win32-service (~> 0.8.7)
|
80
80
|
windows-api (~> 0.4.4)
|
81
81
|
wmi-lite (~> 1.0)
|
82
|
-
chef-config (12.
|
82
|
+
chef-config (12.18.31)
|
83
83
|
addressable
|
84
84
|
fuzzyurl
|
85
85
|
mixlib-config (~> 2.0)
|
@@ -98,7 +98,7 @@ GIT
|
|
98
98
|
|
99
99
|
GIT
|
100
100
|
remote: https://github.com/tduffield/github-changelog-generator
|
101
|
-
revision:
|
101
|
+
revision: c6245b58b91b863464ca88e02aa752a0658b5f30
|
102
102
|
branch: adjust-tag-section-mapping
|
103
103
|
specs:
|
104
104
|
github_changelog_generator (1.14.2)
|
@@ -113,17 +113,18 @@ GIT
|
|
113
113
|
PATH
|
114
114
|
remote: .
|
115
115
|
specs:
|
116
|
-
chef-dk (1.
|
116
|
+
chef-dk (1.2.20)
|
117
|
+
addressable (>= 2.3.5, < 2.6)
|
117
118
|
chef (~> 12.5)
|
118
119
|
chef-provisioning (~> 2.0)
|
119
|
-
cookbook-omnifetch (~> 0.
|
120
|
+
cookbook-omnifetch (~> 0.5)
|
120
121
|
diff-lcs (~> 1.0)
|
121
122
|
ffi-yajl (>= 1.0, < 3.0)
|
122
123
|
minitar (~> 0.5.4)
|
123
124
|
mixlib-cli (~> 1.7)
|
124
125
|
mixlib-shellout (~> 2.0)
|
125
126
|
paint (~> 1.0)
|
126
|
-
solve (
|
127
|
+
solve (> 2.0, < 4.0)
|
127
128
|
|
128
129
|
GEM
|
129
130
|
remote: https://rubygems.org/
|
@@ -135,8 +136,7 @@ GEM
|
|
135
136
|
minitest (~> 5.1)
|
136
137
|
thread_safe (~> 0.3, >= 0.3.4)
|
137
138
|
tzinfo (~> 1.1)
|
138
|
-
addressable (2.
|
139
|
-
public_suffix (~> 2.0, >= 2.0.2)
|
139
|
+
addressable (2.4.0)
|
140
140
|
app_conf (0.4.2)
|
141
141
|
artifactory (2.5.1)
|
142
142
|
ast (2.3.0)
|
@@ -144,19 +144,19 @@ GEM
|
|
144
144
|
addressable (>= 2.3.1)
|
145
145
|
extlib (>= 0.9.15)
|
146
146
|
multi_json (>= 1.0.0)
|
147
|
-
aws-sdk (2.
|
148
|
-
aws-sdk-resources (= 2.
|
149
|
-
aws-sdk-core (2.
|
147
|
+
aws-sdk (2.7.2)
|
148
|
+
aws-sdk-resources (= 2.7.2)
|
149
|
+
aws-sdk-core (2.7.2)
|
150
150
|
aws-sigv4 (~> 1.0)
|
151
151
|
jmespath (~> 1.0)
|
152
|
-
aws-sdk-resources (2.
|
153
|
-
aws-sdk-core (= 2.
|
152
|
+
aws-sdk-resources (2.7.2)
|
153
|
+
aws-sdk-core (= 2.7.2)
|
154
154
|
aws-sdk-v1 (1.66.0)
|
155
155
|
json (~> 1.4)
|
156
156
|
nokogiri (>= 1.4.4)
|
157
157
|
aws-sigv4 (1.0.0)
|
158
158
|
backports (3.6.8)
|
159
|
-
berkshelf (5.
|
159
|
+
berkshelf (5.5.0)
|
160
160
|
addressable (~> 2.3, >= 2.3.4)
|
161
161
|
berkshelf-api-client (>= 2.0.2, < 4.0)
|
162
162
|
buff-config (~> 2.0)
|
@@ -171,7 +171,7 @@ GEM
|
|
171
171
|
retryable (~> 2.0)
|
172
172
|
ridley (~> 5.0)
|
173
173
|
solve (> 2.0, < 4.0)
|
174
|
-
thor (~> 0.19)
|
174
|
+
thor (~> 0.19, < 0.19.2)
|
175
175
|
berkshelf-api-client (3.0.0)
|
176
176
|
faraday (~> 0.9)
|
177
177
|
httpclient (~> 2.7)
|
@@ -186,20 +186,20 @@ GEM
|
|
186
186
|
buff-ruby_engine (1.0.0)
|
187
187
|
buff-shell_out (1.1.0)
|
188
188
|
buff-ruby_engine (~> 1.0)
|
189
|
-
builder (3.2.
|
189
|
+
builder (3.2.3)
|
190
190
|
byebug (9.0.6)
|
191
191
|
celluloid (0.16.0)
|
192
192
|
timers (~> 4.0.0)
|
193
193
|
celluloid-io (0.16.2)
|
194
194
|
celluloid (>= 0.16.0)
|
195
195
|
nio4r (>= 1.1.0)
|
196
|
-
chef-provisioning (2.0
|
196
|
+
chef-provisioning (2.1.0)
|
197
197
|
cheffish (~> 4.0)
|
198
198
|
inifile (>= 2.0.2)
|
199
199
|
mixlib-install (>= 1.0, < 3.0)
|
200
200
|
net-scp (~> 1.0)
|
201
|
-
net-ssh (>= 2.9, <
|
202
|
-
net-ssh-gateway (~> 1.2
|
201
|
+
net-ssh (>= 2.9, < 5.0)
|
202
|
+
net-ssh-gateway (~> 1.2)
|
203
203
|
winrm-fs (~> 1.0)
|
204
204
|
chef-provisioning-aws (2.1.0)
|
205
205
|
aws-sdk (>= 2.1.26, < 3.0)
|
@@ -220,14 +220,14 @@ GEM
|
|
220
220
|
chef-provisioning-vagrant (0.11.0)
|
221
221
|
chef-provisioning
|
222
222
|
chef-sugar (3.4.0)
|
223
|
-
chef-vault (2.9.
|
224
|
-
chef-zero (5.
|
223
|
+
chef-vault (2.9.1)
|
224
|
+
chef-zero (5.2.0)
|
225
225
|
ffi-yajl (~> 2.2)
|
226
226
|
hashie (>= 2.0, < 4.0)
|
227
227
|
mixlib-log (~> 1.3)
|
228
228
|
rack (~> 2.0)
|
229
229
|
uuidtools (~> 2.1)
|
230
|
-
cheffish (4.
|
230
|
+
cheffish (4.1.0)
|
231
231
|
chef-zero (~> 5.0)
|
232
232
|
net-ssh
|
233
233
|
chefspec (5.3.0)
|
@@ -236,9 +236,9 @@ GEM
|
|
236
236
|
rspec (~> 3.0)
|
237
237
|
cleanroom (1.0.0)
|
238
238
|
coderay (1.1.1)
|
239
|
-
cookbook-omnifetch (0.
|
240
|
-
|
241
|
-
cookstyle (1.
|
239
|
+
cookbook-omnifetch (0.5.0)
|
240
|
+
mixlib-archive (~> 0.2)
|
241
|
+
cookstyle (1.2.0)
|
242
242
|
rubocop (= 0.46.0)
|
243
243
|
cucumber (2.4.0)
|
244
244
|
builder (>= 2.1.2)
|
@@ -259,11 +259,13 @@ GEM
|
|
259
259
|
dep_selector (1.0.4)
|
260
260
|
dep-selector-libgecode (~> 1.0)
|
261
261
|
ffi (~> 1.9)
|
262
|
-
diff-lcs (1.
|
262
|
+
diff-lcs (1.3)
|
263
263
|
diffy (3.1.0)
|
264
|
-
docker-api (1.33.
|
264
|
+
docker-api (1.33.2)
|
265
265
|
excon (>= 0.38.0)
|
266
266
|
json
|
267
|
+
domain_name (0.5.20161129)
|
268
|
+
unf (>= 0.0.5, < 1.0.0)
|
267
269
|
erubis (2.7.0)
|
268
270
|
excon (0.54.0)
|
269
271
|
extlib (0.9.16)
|
@@ -273,8 +275,8 @@ GEM
|
|
273
275
|
faraday (~> 0.8)
|
274
276
|
fauxhai (3.10.0)
|
275
277
|
net-ssh
|
276
|
-
ffi (1.9.
|
277
|
-
ffi (1.9.
|
278
|
+
ffi (1.9.17)
|
279
|
+
ffi (1.9.17-x86-mingw32)
|
278
280
|
ffi-rzmq (2.0.4)
|
279
281
|
ffi-rzmq-core (>= 1.0.1)
|
280
282
|
ffi-rzmq-core (1.0.5)
|
@@ -322,7 +324,7 @@ GEM
|
|
322
324
|
fog-atmos (0.1.0)
|
323
325
|
fog-core
|
324
326
|
fog-xml
|
325
|
-
fog-aws (1.
|
327
|
+
fog-aws (1.2.0)
|
326
328
|
fog-core (~> 1.38)
|
327
329
|
fog-json (~> 1.0)
|
328
330
|
fog-xml (~> 0.1)
|
@@ -361,7 +363,7 @@ GEM
|
|
361
363
|
multi_json (~> 1.10)
|
362
364
|
fog-local (0.3.1)
|
363
365
|
fog-core (~> 1.27)
|
364
|
-
fog-openstack (0.1.
|
366
|
+
fog-openstack (0.1.19)
|
365
367
|
fog-core (>= 1.40)
|
366
368
|
fog-json (>= 1.0)
|
367
369
|
ipaddress (>= 0.8)
|
@@ -372,7 +374,7 @@ GEM
|
|
372
374
|
fog-profitbricks (3.0.0)
|
373
375
|
fog-core (~> 1.42)
|
374
376
|
fog-json (~> 1.0)
|
375
|
-
fog-rackspace (0.1.
|
377
|
+
fog-rackspace (0.1.4)
|
376
378
|
fog-core (>= 1.35)
|
377
379
|
fog-json (>= 1.0)
|
378
380
|
fog-xml (>= 0.1)
|
@@ -406,7 +408,7 @@ GEM
|
|
406
408
|
fog-voxel (0.1.0)
|
407
409
|
fog-core
|
408
410
|
fog-xml
|
409
|
-
fog-vsphere (1.
|
411
|
+
fog-vsphere (1.7.0)
|
410
412
|
fog-core
|
411
413
|
rbvmomi (~> 1.9)
|
412
414
|
fog-xenserver (0.2.3)
|
@@ -415,7 +417,7 @@ GEM
|
|
415
417
|
fog-xml (0.1.2)
|
416
418
|
fog-core
|
417
419
|
nokogiri (~> 1.5, >= 1.5.11)
|
418
|
-
foodcritic (8.
|
420
|
+
foodcritic (8.2.0)
|
419
421
|
cucumber-core (>= 1.3)
|
420
422
|
erubis
|
421
423
|
nokogiri (>= 1.5, < 2.0)
|
@@ -463,13 +465,23 @@ GEM
|
|
463
465
|
highline (1.7.8)
|
464
466
|
hitimes (1.2.4)
|
465
467
|
hitimes (1.2.4-x86-mingw32)
|
468
|
+
http (2.1.0)
|
469
|
+
addressable (~> 2.3)
|
470
|
+
http-cookie (~> 1.0)
|
471
|
+
http-form_data (~> 1.0.1)
|
472
|
+
http_parser.rb (~> 0.6.0)
|
473
|
+
http-cookie (1.0.3)
|
474
|
+
domain_name (~> 0.5)
|
475
|
+
http-form_data (1.0.1)
|
476
|
+
http_parser.rb (0.6.0)
|
466
477
|
httpclient (2.8.3)
|
467
478
|
i18n (0.7.0)
|
468
479
|
inflecto (0.0.2)
|
469
480
|
inifile (3.0.0)
|
470
481
|
iniparse (1.4.2)
|
471
|
-
inspec (1.
|
482
|
+
inspec (1.10.0)
|
472
483
|
hashie (~> 3.4)
|
484
|
+
http (~> 2.1.0)
|
473
485
|
json (>= 1.8, < 3.0)
|
474
486
|
method_source (~> 0.8)
|
475
487
|
mixlib-log
|
@@ -485,10 +497,10 @@ GEM
|
|
485
497
|
train (>= 0.22.0, < 1.0)
|
486
498
|
ipaddress (0.8.3)
|
487
499
|
jmespath (1.3.1)
|
488
|
-
json (1.8.
|
500
|
+
json (1.8.6)
|
489
501
|
jwt (1.5.6)
|
490
|
-
kitchen-dokken (1.0
|
491
|
-
docker-api (~> 1.
|
502
|
+
kitchen-dokken (1.1.0)
|
503
|
+
docker-api (~> 1.33)
|
492
504
|
test-kitchen (~> 1.13)
|
493
505
|
kitchen-ec2 (1.2.0)
|
494
506
|
aws-sdk (~> 2)
|
@@ -500,7 +512,7 @@ GEM
|
|
500
512
|
hashie (~> 3.4)
|
501
513
|
inspec (>= 0.34.0, < 2.0.0)
|
502
514
|
test-kitchen (~> 1.6)
|
503
|
-
kitchen-vagrant (0.
|
515
|
+
kitchen-vagrant (1.0.0)
|
504
516
|
test-kitchen (~> 1.4)
|
505
517
|
knife-opc (0.3.2)
|
506
518
|
knife-push (1.0.2)
|
@@ -510,7 +522,7 @@ GEM
|
|
510
522
|
chef (>= 11.0.0)
|
511
523
|
diffy (>= 3.0.1)
|
512
524
|
git (>= 1.2.5)
|
513
|
-
knife-windows (1.
|
525
|
+
knife-windows (1.8.0)
|
514
526
|
winrm (~> 2.1)
|
515
527
|
winrm-elevated (~> 1.0)
|
516
528
|
launchy (2.4.3)
|
@@ -524,7 +536,7 @@ GEM
|
|
524
536
|
logging (2.1.0)
|
525
537
|
little-plugger (~> 1.1)
|
526
538
|
multi_json (~> 1.10)
|
527
|
-
lumberjack (1.0.
|
539
|
+
lumberjack (1.0.11)
|
528
540
|
macaddr (1.7.1)
|
529
541
|
systemu (~> 2.6.2)
|
530
542
|
memoist (0.15.0)
|
@@ -535,13 +547,13 @@ GEM
|
|
535
547
|
mini_portile2 (2.1.0)
|
536
548
|
minitar (0.5.4)
|
537
549
|
minitest (5.10.1)
|
538
|
-
mixlib-archive (0.
|
550
|
+
mixlib-archive (0.3.0)
|
539
551
|
mixlib-log
|
540
552
|
mixlib-authentication (1.4.1)
|
541
553
|
mixlib-log
|
542
554
|
mixlib-cli (1.7.0)
|
543
555
|
mixlib-config (2.2.4)
|
544
|
-
mixlib-install (2.1.
|
556
|
+
mixlib-install (2.1.10)
|
545
557
|
artifactory
|
546
558
|
mixlib-shellout
|
547
559
|
mixlib-versioning
|
@@ -552,7 +564,7 @@ GEM
|
|
552
564
|
win32-process (~> 0.8.2)
|
553
565
|
wmi-lite (~> 1.0)
|
554
566
|
mixlib-versioning (1.1.0)
|
555
|
-
molinillo (0.5.
|
567
|
+
molinillo (0.5.5)
|
556
568
|
multi_json (1.12.1)
|
557
569
|
multi_test (0.1.2)
|
558
570
|
multipart-post (2.0.0)
|
@@ -568,7 +580,7 @@ GEM
|
|
568
580
|
net-ssh (>= 2.6.5)
|
569
581
|
net-ssh-gateway (>= 1.2.0)
|
570
582
|
net-telnet (0.1.1)
|
571
|
-
nio4r (
|
583
|
+
nio4r (2.0.0)
|
572
584
|
nokogiri (1.6.8.1)
|
573
585
|
mini_portile2 (~> 2.1.0)
|
574
586
|
nokogiri (1.6.8.1-x86-mingw32)
|
@@ -579,7 +591,7 @@ GEM
|
|
579
591
|
shellany (~> 0.0)
|
580
592
|
octokit (4.6.2)
|
581
593
|
sawyer (~> 0.8.0, >= 0.5.3)
|
582
|
-
ohai (8.
|
594
|
+
ohai (8.23.0)
|
583
595
|
chef-config (>= 12.5.0.alpha.1, < 13)
|
584
596
|
ffi (~> 1.9)
|
585
597
|
ffi-yajl (~> 2.2)
|
@@ -613,9 +625,8 @@ GEM
|
|
613
625
|
pry-stack_explorer (0.4.9.2)
|
614
626
|
binding_of_caller (>= 0.7)
|
615
627
|
pry (>= 0.9.11)
|
616
|
-
public_suffix (2.0.4)
|
617
628
|
rack (2.0.1)
|
618
|
-
rainbow (2.1
|
629
|
+
rainbow (2.2.1)
|
619
630
|
rake (12.0.0)
|
620
631
|
rb-fsevent (0.9.8)
|
621
632
|
rb-inotify (0.9.7)
|
@@ -685,7 +696,7 @@ GEM
|
|
685
696
|
addressable (>= 2.3.5, < 2.6)
|
686
697
|
faraday (~> 0.8, < 1.0)
|
687
698
|
semverse (2.0.0)
|
688
|
-
serverspec (2.
|
699
|
+
serverspec (2.38.0)
|
689
700
|
multi_json
|
690
701
|
rspec (~> 3.0)
|
691
702
|
rspec-its
|
@@ -701,9 +712,9 @@ GEM
|
|
701
712
|
solve (3.1.0)
|
702
713
|
molinillo (>= 0.5)
|
703
714
|
semverse (>= 1.1, < 3.0)
|
704
|
-
specinfra (2.66.
|
715
|
+
specinfra (2.66.6)
|
705
716
|
net-scp
|
706
|
-
net-ssh (>= 2.7, <
|
717
|
+
net-ssh (>= 2.7, < 5.0)
|
707
718
|
net-telnet
|
708
719
|
sfl
|
709
720
|
sslshake (1.0.13)
|
@@ -715,24 +726,24 @@ GEM
|
|
715
726
|
uuid (~> 2.0)
|
716
727
|
syslog-logger (1.6.8)
|
717
728
|
systemu (2.6.5)
|
718
|
-
test-kitchen (1.
|
729
|
+
test-kitchen (1.15.0)
|
719
730
|
mixlib-install (>= 1.2, < 3.0)
|
720
731
|
mixlib-shellout (>= 1.2, < 3.0)
|
721
732
|
net-scp (~> 1.1)
|
722
|
-
net-ssh (>= 2.9, <
|
723
|
-
net-ssh-gateway (~> 1.2
|
733
|
+
net-ssh (>= 2.9, < 5.0)
|
734
|
+
net-ssh-gateway (~> 1.2)
|
724
735
|
safe_yaml (~> 1.0)
|
725
736
|
thor (~> 0.18)
|
726
|
-
thor (0.19.
|
737
|
+
thor (0.19.1)
|
727
738
|
thread_safe (0.3.5)
|
728
739
|
timers (4.0.4)
|
729
740
|
hitimes
|
730
|
-
train (0.22.
|
741
|
+
train (0.22.1)
|
731
742
|
docker-api (~> 1.26)
|
732
743
|
json (>= 1.8, < 3.0)
|
733
744
|
mixlib-shellout (~> 2.0)
|
734
745
|
net-scp (~> 1.2)
|
735
|
-
net-ssh (>= 2.9, <
|
746
|
+
net-ssh (>= 2.9, < 5.0)
|
736
747
|
winrm (~> 2.0)
|
737
748
|
winrm-fs (~> 1.0)
|
738
749
|
treetop (1.6.8)
|
@@ -741,7 +752,11 @@ GEM
|
|
741
752
|
tzinfo (1.2.2)
|
742
753
|
thread_safe (~> 0.1)
|
743
754
|
ubuntu_ami (0.4.1)
|
744
|
-
|
755
|
+
unf (0.1.4)
|
756
|
+
unf_ext
|
757
|
+
unf_ext (0.0.7.2)
|
758
|
+
unf_ext (0.0.7.2-x86-mingw32)
|
759
|
+
unicode-display_width (1.1.3)
|
745
760
|
uuid (2.3.8)
|
746
761
|
macaddr (~> 1.0)
|
747
762
|
uuidtools (2.1.5)
|
@@ -768,10 +783,10 @@ GEM
|
|
768
783
|
ffi-win32-extensions
|
769
784
|
windows-api (0.4.4)
|
770
785
|
win32-api (>= 1.4.5)
|
771
|
-
windows-pr (1.2.
|
786
|
+
windows-pr (1.2.6)
|
772
787
|
win32-api (>= 1.4.5)
|
773
788
|
windows-api (>= 0.4.0)
|
774
|
-
winrm (2.1.
|
789
|
+
winrm (2.1.2)
|
775
790
|
builder (>= 2.1.2)
|
776
791
|
erubis (~> 2.7)
|
777
792
|
gssapi (~> 1.2)
|
@@ -791,13 +806,14 @@ GEM
|
|
791
806
|
wmi-lite (1.0.0)
|
792
807
|
xml-simple (1.1.5)
|
793
808
|
yajl-ruby (1.3.0)
|
794
|
-
yard (0.9.
|
809
|
+
yard (0.9.8)
|
795
810
|
|
796
811
|
PLATFORMS
|
797
812
|
ruby
|
798
813
|
x86-mingw32
|
799
814
|
|
800
815
|
DEPENDENCIES
|
816
|
+
addressable (~> 2.4.0)
|
801
817
|
appbundler!
|
802
818
|
artifactory
|
803
819
|
berkshelf (>= 5.0)
|
@@ -824,7 +840,7 @@ DEPENDENCIES
|
|
824
840
|
github_changelog_generator!
|
825
841
|
guard
|
826
842
|
inspec (>= 0.17.1)
|
827
|
-
kitchen-dokken
|
843
|
+
kitchen-dokken (= 1.1.0)
|
828
844
|
kitchen-ec2
|
829
845
|
kitchen-inspec
|
830
846
|
kitchen-vagrant
|
@@ -835,7 +851,7 @@ DEPENDENCIES
|
|
835
851
|
listen
|
836
852
|
mixlib-install
|
837
853
|
mixlib-versioning
|
838
|
-
nokogiri
|
854
|
+
nokogiri (~> 1.6.3)
|
839
855
|
ohai (>= 8.13.0)
|
840
856
|
opscode-pushy-client!
|
841
857
|
pry
|