chef-dk 3.1.0 → 3.2.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +30 -17
- data/Gemfile.lock +188 -132
- data/README.md +2 -0
- data/acceptance/Gemfile.lock +33 -32
- data/chef-dk.gemspec +1 -0
- data/lib/chef-dk/builtin_commands.rb +3 -0
- data/lib/chef-dk/command/describe_cookbook.rb +95 -0
- data/lib/chef-dk/command/generator_commands/policyfile.rb +1 -1
- data/lib/chef-dk/command/verify.rb +9 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/{policies → policyfiles}/README.md +4 -4
- data/lib/chef-dk/skeletons/code_generator/recipes/repo.rb +1 -1
- data/lib/chef-dk/version.rb +1 -1
- data/omnibus_overrides.rb +1 -1
- data/spec/unit/command/generator_commands/policyfile_spec.rb +1 -1
- data/spec/unit/command/generator_commands/repo_spec.rb +4 -4
- data/spec/unit/command/verify_spec.rb +1 -0
- data/spec/unit/policyfile/included_policies_cookbook_source_spec.rb +4 -4
- data/tasks/announce.rb +1 -1
- data/tasks/dependencies.rb +5 -38
- data/tasks/templates/prerelease.md.erb +0 -9
- data/tasks/templates/release.md.erb +0 -8
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3efb2de5668d591c97a8249d151858ac0b5c4a99f3416d3a77ccf34c947ccad7
|
4
|
+
data.tar.gz: cbcd78e999d46bbd4b6ceee5dd582fb4aacac6bebd8ee02232cc20a3877193e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d17348847d440181aa411815919dc746e98e12e9a5bbaa5583aba34fd87ebee84eb6056d8e7682ccd5a0b25b9eb8be7319951c9350f83ca5ca737f50f51bd3c3
|
7
|
+
data.tar.gz: ddbed79aa03dd2916abd115cf8fb4ff8f2397eb9a0499685b262f84709c468e32192e1fb44b02ceeb7a0dbae369d5f2bd8aa2137c10f2bf68edf95dd4cd962b8
|
data/Gemfile
CHANGED
@@ -43,37 +43,47 @@ end
|
|
43
43
|
# We equality pin the chef gem itself to assert which version we're shipping.
|
44
44
|
group(:omnibus_package) do
|
45
45
|
gem "appbundler"
|
46
|
-
gem "berkshelf", ">= 7.0"
|
46
|
+
gem "berkshelf", ">= 7.0.5"
|
47
47
|
gem "chef-provisioning", ">= 2.7.1", group: :provisioning
|
48
48
|
gem "chef-provisioning-aws", ">= 3.0.2", group: :provisioning
|
49
49
|
gem "chef-provisioning-fog", ">= 0.26.1", group: :provisioning
|
50
50
|
gem "chef-vault", ">= 3.3.0"
|
51
|
-
|
51
|
+
# Expeditor manages the version of chef released to Rubygems. We only release 'stable' chef
|
52
|
+
# gems to Rubygems now, so letting this float on latest should always give us the latest
|
53
|
+
# stable release. May have to re-pin around major version bumping time, or during patch
|
54
|
+
# fixes.
|
55
|
+
gem "chef", ">= 14.0"
|
52
56
|
gem "cheffish", ">= 14.0.1"
|
53
|
-
gem "chefspec", ">= 7.2.
|
54
|
-
gem "fauxhai", ">= 5.
|
55
|
-
gem "inspec", ">= 2.
|
56
|
-
gem "kitchen-
|
57
|
-
gem "kitchen-
|
57
|
+
gem "chefspec", ">= 7.2.1"
|
58
|
+
gem "fauxhai", ">= 6.5.0"
|
59
|
+
gem "inspec", ">= 2.2.55"
|
60
|
+
gem "kitchen-azurerm", ">= 0.14"
|
61
|
+
gem "kitchen-ec2", ">= 2.2.2"
|
62
|
+
gem "kitchen-digitalocean", ">= 0.10.0"
|
58
63
|
gem "kitchen-dokken", ">= 2.6.7"
|
59
|
-
gem "kitchen-google", ">= 1.
|
64
|
+
gem "kitchen-google", ">= 1.5.0"
|
60
65
|
gem "kitchen-hyperv", ">= 0.5.1"
|
61
|
-
gem "kitchen-inspec", ">= 0.
|
66
|
+
gem "kitchen-inspec", ">= 0.23.1"
|
62
67
|
gem "kitchen-vagrant", ">= 1.3.2"
|
63
68
|
gem "knife-acl", ">= 1.0.3"
|
64
|
-
gem "knife-ec2", ">= 0.
|
65
|
-
gem "knife-google", ">= 3.
|
66
|
-
gem "knife-tidy", ">=
|
67
|
-
gem "knife-windows", ">= 1.9.
|
68
|
-
gem "knife-opc", ">= 0.
|
69
|
-
gem "knife-vsphere", ">= 2.
|
70
|
-
gem "mixlib-archive", "
|
69
|
+
gem "knife-ec2", ">= 0.19.10"
|
70
|
+
gem "knife-google", ">= 3.3.0"
|
71
|
+
gem "knife-tidy", ">= 1.2.0"
|
72
|
+
gem "knife-windows", ">= 1.9.1"
|
73
|
+
gem "knife-opc", ">= 0.4.0"
|
74
|
+
gem "knife-vsphere", ">= 2.1.1"
|
75
|
+
gem "mixlib-archive", ">= 0.4.16"
|
71
76
|
gem "ohai", ">= 14.0.29"
|
72
77
|
gem "net-ssh", ">= 4.2.0"
|
73
|
-
gem "test-kitchen", ">= 1.
|
78
|
+
gem "test-kitchen", ">= 1.23.0"
|
74
79
|
gem "listen"
|
75
80
|
gem "dco"
|
76
81
|
|
82
|
+
# Right now we must import chef-apply as a gem into the ChefDK because this is where all the gem
|
83
|
+
# dependency resolution occurs. Putting it elsewhere endangers older ChefDK issues of gem version
|
84
|
+
# conflicts post-build.
|
85
|
+
gem "chef-apply"
|
86
|
+
|
77
87
|
# For Delivery build node
|
78
88
|
gem "chef-sugar"
|
79
89
|
gem "mixlib-versioning"
|
@@ -95,6 +105,9 @@ group(:omnibus_package) do
|
|
95
105
|
gem "winrm-elevated"
|
96
106
|
gem "cucumber"
|
97
107
|
gem "stove"
|
108
|
+
|
109
|
+
# TODO Remove this after https://github.com/fog/fog-openstack/issues/420 is fixed
|
110
|
+
gem "fog-openstack", "< 0.2.0"
|
98
111
|
end
|
99
112
|
|
100
113
|
# Everything except AIX
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
chef-dk (3.
|
4
|
+
chef-dk (3.2.30)
|
5
5
|
addressable (>= 2.3.5, < 2.6)
|
6
6
|
chef (~> 14.0)
|
7
7
|
chef-provisioning (~> 2.0)
|
@@ -17,7 +17,7 @@ PATH
|
|
17
17
|
GEM
|
18
18
|
remote: https://rubygems.org/
|
19
19
|
specs:
|
20
|
-
activesupport (5.2.
|
20
|
+
activesupport (5.2.1)
|
21
21
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
22
22
|
i18n (>= 0.7, < 2)
|
23
23
|
minitest (~> 5.1)
|
@@ -30,22 +30,26 @@ GEM
|
|
30
30
|
mixlib-shellout (~> 2.0)
|
31
31
|
artifactory (2.8.2)
|
32
32
|
ast (2.4.0)
|
33
|
-
aws-sdk (2.11.
|
34
|
-
aws-sdk-resources (= 2.11.
|
35
|
-
aws-sdk-core (2.11.
|
33
|
+
aws-sdk (2.11.120)
|
34
|
+
aws-sdk-resources (= 2.11.120)
|
35
|
+
aws-sdk-core (2.11.120)
|
36
36
|
aws-sigv4 (~> 1.0)
|
37
37
|
jmespath (~> 1.0)
|
38
|
-
aws-sdk-resources (2.11.
|
39
|
-
aws-sdk-core (= 2.11.
|
38
|
+
aws-sdk-resources (2.11.120)
|
39
|
+
aws-sdk-core (= 2.11.120)
|
40
40
|
aws-sigv4 (1.0.3)
|
41
41
|
axiom-types (0.1.1)
|
42
42
|
descendants_tracker (~> 0.0.4)
|
43
43
|
ice_nine (~> 0.11.0)
|
44
44
|
thread_safe (~> 0.3, >= 0.3.1)
|
45
|
-
|
46
|
-
ms_rest_azure (~> 0.
|
47
|
-
|
48
|
-
|
45
|
+
azure_graph_rbac (0.17.0)
|
46
|
+
ms_rest_azure (~> 0.11.0)
|
47
|
+
azure_mgmt_network (0.17.1)
|
48
|
+
ms_rest_azure (~> 0.11.0)
|
49
|
+
azure_mgmt_resources (0.17.0)
|
50
|
+
ms_rest_azure (~> 0.11.0)
|
51
|
+
backports (3.11.4)
|
52
|
+
berkshelf (7.0.6)
|
49
53
|
chef (>= 13.6.52)
|
50
54
|
chef-config
|
51
55
|
cleanroom (~> 1.0)
|
@@ -62,10 +66,10 @@ GEM
|
|
62
66
|
debug_inspector (>= 0.0.1)
|
63
67
|
builder (3.2.3)
|
64
68
|
byebug (10.0.2)
|
65
|
-
chef (14.
|
69
|
+
chef (14.4.56)
|
66
70
|
addressable
|
67
71
|
bundler (>= 1.10)
|
68
|
-
chef-config (= 14.
|
72
|
+
chef-config (= 14.4.56)
|
69
73
|
chef-zero (>= 13.0)
|
70
74
|
diff-lcs (~> 1.2, >= 1.2.4)
|
71
75
|
erubis (~> 2.7)
|
@@ -73,30 +77,30 @@ GEM
|
|
73
77
|
ffi-yajl (~> 2.2)
|
74
78
|
highline (~> 1.6, >= 1.6.9)
|
75
79
|
iniparse (~> 1.4)
|
76
|
-
iso8601 (~> 0.
|
80
|
+
iso8601 (~> 0.11.0)
|
77
81
|
mixlib-archive (~> 0.4)
|
78
82
|
mixlib-authentication (~> 2.1)
|
79
83
|
mixlib-cli (~> 1.7)
|
80
84
|
mixlib-log (~> 2.0, >= 2.0.3)
|
81
|
-
mixlib-shellout (~> 2.
|
85
|
+
mixlib-shellout (~> 2.4)
|
82
86
|
net-sftp (~> 2.1, >= 2.1.2)
|
83
87
|
net-ssh (~> 4.2)
|
84
88
|
net-ssh-multi (~> 1.2, >= 1.2.1)
|
85
89
|
ohai (~> 14.0)
|
86
90
|
plist (~> 3.2)
|
87
91
|
proxifier (~> 1.0)
|
88
|
-
rspec-core (~> 3.5)
|
89
|
-
rspec-expectations (~> 3.5)
|
90
|
-
rspec-mocks (~> 3.5)
|
92
|
+
rspec-core (~> 3.5, < 3.8)
|
93
|
+
rspec-expectations (~> 3.5, < 3.8)
|
94
|
+
rspec-mocks (~> 3.5, < 3.8)
|
91
95
|
rspec_junit_formatter (~> 0.2.0)
|
92
96
|
serverspec (~> 2.7)
|
93
97
|
specinfra (~> 2.10)
|
94
98
|
syslog-logger (~> 1.6)
|
95
99
|
uuidtools (~> 2.1.5)
|
96
|
-
chef (14.
|
100
|
+
chef (14.4.56-universal-mingw32)
|
97
101
|
addressable
|
98
102
|
bundler (>= 1.10)
|
99
|
-
chef-config (= 14.
|
103
|
+
chef-config (= 14.4.56)
|
100
104
|
chef-zero (>= 13.0)
|
101
105
|
diff-lcs (~> 1.2, >= 1.2.4)
|
102
106
|
erubis (~> 2.7)
|
@@ -104,21 +108,21 @@ GEM
|
|
104
108
|
ffi-yajl (~> 2.2)
|
105
109
|
highline (~> 1.6, >= 1.6.9)
|
106
110
|
iniparse (~> 1.4)
|
107
|
-
iso8601 (~> 0.
|
111
|
+
iso8601 (~> 0.11.0)
|
108
112
|
mixlib-archive (~> 0.4)
|
109
113
|
mixlib-authentication (~> 2.1)
|
110
114
|
mixlib-cli (~> 1.7)
|
111
115
|
mixlib-log (~> 2.0, >= 2.0.3)
|
112
|
-
mixlib-shellout (~> 2.
|
116
|
+
mixlib-shellout (~> 2.4)
|
113
117
|
net-sftp (~> 2.1, >= 2.1.2)
|
114
118
|
net-ssh (~> 4.2)
|
115
119
|
net-ssh-multi (~> 1.2, >= 1.2.1)
|
116
120
|
ohai (~> 14.0)
|
117
121
|
plist (~> 3.2)
|
118
122
|
proxifier (~> 1.0)
|
119
|
-
rspec-core (~> 3.5)
|
120
|
-
rspec-expectations (~> 3.5)
|
121
|
-
rspec-mocks (~> 3.5)
|
123
|
+
rspec-core (~> 3.5, < 3.8)
|
124
|
+
rspec-expectations (~> 3.5, < 3.8)
|
125
|
+
rspec-mocks (~> 3.5, < 3.8)
|
122
126
|
rspec_junit_formatter (~> 0.2.0)
|
123
127
|
serverspec (~> 2.7)
|
124
128
|
specinfra (~> 2.10)
|
@@ -131,20 +135,33 @@ GEM
|
|
131
135
|
win32-mmap (~> 0.4.1)
|
132
136
|
win32-mutex (~> 0.4.2)
|
133
137
|
win32-process (~> 0.8.2)
|
134
|
-
win32-service (~> 0
|
135
|
-
win32-taskscheduler (~> 0.
|
138
|
+
win32-service (~> 1.0)
|
139
|
+
win32-taskscheduler (~> 1.0.0)
|
136
140
|
windows-api (~> 0.4.4)
|
137
141
|
wmi-lite (~> 1.0)
|
138
142
|
chef-api (0.8.0)
|
139
143
|
logify (~> 0.1)
|
140
144
|
mime-types
|
141
|
-
chef-
|
145
|
+
chef-apply (0.1.21)
|
146
|
+
chef (>= 14.0)
|
147
|
+
chef-dk (>= 3.0)
|
148
|
+
chef-telemetry
|
149
|
+
mixlib-cli
|
150
|
+
mixlib-config
|
151
|
+
mixlib-install
|
152
|
+
mixlib-log
|
153
|
+
pastel
|
154
|
+
r18n-desktop
|
155
|
+
toml-rb
|
156
|
+
train
|
157
|
+
tty-spinner
|
158
|
+
chef-config (14.4.56)
|
142
159
|
addressable
|
143
160
|
fuzzyurl
|
144
|
-
mixlib-config (
|
161
|
+
mixlib-config (>= 2.2.12, < 3.0)
|
145
162
|
mixlib-shellout (~> 2.0)
|
146
163
|
tomlrb (~> 1.2)
|
147
|
-
chef-provisioning (2.7.
|
164
|
+
chef-provisioning (2.7.2)
|
148
165
|
cheffish (>= 4.0, < 15.0)
|
149
166
|
inifile (>= 2.0.2)
|
150
167
|
mixlib-install (>= 1.0)
|
@@ -154,7 +171,7 @@ GEM
|
|
154
171
|
winrm (~> 2.0)
|
155
172
|
winrm-elevated (~> 1.0)
|
156
173
|
winrm-fs (~> 1.0)
|
157
|
-
chef-provisioning-aws (3.0.
|
174
|
+
chef-provisioning-aws (3.0.4)
|
158
175
|
aws-sdk (>= 2.2.18, < 3.0)
|
159
176
|
chef-provisioning (>= 1.0, < 3.0)
|
160
177
|
retryable (~> 2.0, >= 2.0.1)
|
@@ -171,7 +188,12 @@ GEM
|
|
171
188
|
fog-xenserver
|
172
189
|
retryable
|
173
190
|
winrm-elevated
|
174
|
-
chef-sugar (4.
|
191
|
+
chef-sugar (4.1.0)
|
192
|
+
chef-telemetry (0.1.0)
|
193
|
+
chef-config
|
194
|
+
concurrent-ruby (~> 1.0)
|
195
|
+
ffi-yajl (~> 2.2)
|
196
|
+
http (~> 2.2)
|
175
197
|
chef-vault (3.3.0)
|
176
198
|
chef-zero (14.0.6)
|
177
199
|
ffi-yajl (~> 2.2)
|
@@ -188,6 +210,7 @@ GEM
|
|
188
210
|
rspec (~> 3.0)
|
189
211
|
chefstyle (0.10.0)
|
190
212
|
rubocop (= 0.55.0)
|
213
|
+
citrus (3.0.2)
|
191
214
|
cleanroom (1.0.0)
|
192
215
|
coderay (1.1.2)
|
193
216
|
coercible (1.0.0)
|
@@ -197,16 +220,16 @@ GEM
|
|
197
220
|
mixlib-archive (~> 0.4)
|
198
221
|
cookstyle (3.0.0)
|
199
222
|
rubocop (= 0.55.0)
|
200
|
-
cucumber (3.1.
|
223
|
+
cucumber (3.1.2)
|
201
224
|
builder (>= 2.1.2)
|
202
|
-
cucumber-core (~> 3.
|
203
|
-
cucumber-expressions (~> 6.0.
|
225
|
+
cucumber-core (~> 3.2.0)
|
226
|
+
cucumber-expressions (~> 6.0.1)
|
204
227
|
cucumber-wire (~> 0.0.1)
|
205
228
|
diff-lcs (~> 1.3)
|
206
229
|
gherkin (~> 5.1.0)
|
207
230
|
multi_json (>= 1.7.5, < 2.0)
|
208
231
|
multi_test (>= 0.1.2)
|
209
|
-
cucumber-core (3.
|
232
|
+
cucumber-core (3.2.0)
|
210
233
|
backports (>= 3.8.0)
|
211
234
|
cucumber-tag_expressions (~> 1.1.0)
|
212
235
|
gherkin (>= 5.0.0)
|
@@ -217,6 +240,8 @@ GEM
|
|
217
240
|
git (~> 1.3)
|
218
241
|
thor (~> 0.19)
|
219
242
|
debug_inspector (0.0.3)
|
243
|
+
declarative (0.0.10)
|
244
|
+
declarative-option (0.1.0)
|
220
245
|
dep-selector-libgecode (1.3.1)
|
221
246
|
dep_selector (1.0.6)
|
222
247
|
dep-selector-libgecode (~> 1.0)
|
@@ -230,13 +255,14 @@ GEM
|
|
230
255
|
multi_json
|
231
256
|
domain_name (0.5.20180417)
|
232
257
|
unf (>= 0.0.5, < 1.0.0)
|
233
|
-
droplet_kit (2.
|
258
|
+
droplet_kit (2.4.0)
|
234
259
|
activesupport (> 3.0, < 6)
|
235
260
|
faraday (~> 0.9)
|
236
261
|
kartograph (~> 0.2.3)
|
237
262
|
resource_kit (~> 0.1.5)
|
238
263
|
virtus (~> 1.0.3)
|
239
264
|
equalizer (0.0.11)
|
265
|
+
equatable (0.5.0)
|
240
266
|
erubis (2.7.0)
|
241
267
|
excon (0.62.0)
|
242
268
|
faraday (0.15.2)
|
@@ -244,12 +270,14 @@ GEM
|
|
244
270
|
faraday-cookie_jar (0.0.6)
|
245
271
|
faraday (>= 0.7.4)
|
246
272
|
http-cookie (~> 1.0.0)
|
247
|
-
|
273
|
+
faraday_middleware (0.12.2)
|
274
|
+
faraday (>= 0.7.4, < 1.0)
|
275
|
+
fauxhai (6.6.0)
|
248
276
|
net-ssh
|
249
277
|
ffi (1.9.25)
|
250
278
|
ffi (1.9.25-x64-mingw32)
|
251
279
|
ffi (1.9.25-x86-mingw32)
|
252
|
-
ffi-libarchive (0.4.
|
280
|
+
ffi-libarchive (0.4.2)
|
253
281
|
ffi (~> 1.0)
|
254
282
|
ffi-rzmq (2.0.6)
|
255
283
|
ffi-rzmq-core (>= 1.0.6)
|
@@ -260,7 +288,7 @@ GEM
|
|
260
288
|
ffi-yajl (2.3.1)
|
261
289
|
libyajl2 (~> 1.2)
|
262
290
|
filesize (0.1.1)
|
263
|
-
fog-aws (
|
291
|
+
fog-aws (2.0.1)
|
264
292
|
fog-core (~> 1.38)
|
265
293
|
fog-json (~> 1.0)
|
266
294
|
fog-xml (~> 0.1)
|
@@ -269,10 +297,10 @@ GEM
|
|
269
297
|
builder
|
270
298
|
excon (~> 0.58)
|
271
299
|
formatador (~> 0.2)
|
272
|
-
fog-digitalocean (0.
|
273
|
-
fog-core
|
274
|
-
fog-json
|
275
|
-
fog-xml
|
300
|
+
fog-digitalocean (0.4.0)
|
301
|
+
fog-core
|
302
|
+
fog-json
|
303
|
+
fog-xml
|
276
304
|
ipaddress (>= 0.5)
|
277
305
|
fog-joyent (0.0.1)
|
278
306
|
fog-core (~> 1.42)
|
@@ -280,11 +308,11 @@ GEM
|
|
280
308
|
fog-json (1.2.0)
|
281
309
|
fog-core
|
282
310
|
multi_json (~> 1.10)
|
283
|
-
fog-openstack (0.1.
|
311
|
+
fog-openstack (0.1.27)
|
284
312
|
fog-core (~> 1.45.0)
|
285
313
|
fog-json (>= 1.0)
|
286
314
|
ipaddress (>= 0.8)
|
287
|
-
fog-rackspace (0.1.
|
315
|
+
fog-rackspace (0.1.6)
|
288
316
|
fog-core (>= 1.35)
|
289
317
|
fog-json (>= 1.0)
|
290
318
|
fog-xml (>= 0.1)
|
@@ -311,26 +339,23 @@ GEM
|
|
311
339
|
treetop (~> 1.4)
|
312
340
|
formatador (0.2.5)
|
313
341
|
fuzzyurl (0.9.0)
|
314
|
-
gcewinpass (1.
|
315
|
-
google-api-client (~> 0.
|
342
|
+
gcewinpass (1.1.0)
|
343
|
+
google-api-client (~> 0.13)
|
316
344
|
gherkin (5.1.0)
|
317
|
-
git (1.
|
318
|
-
google-api-client (0.
|
319
|
-
addressable (~> 2.
|
320
|
-
googleauth (
|
321
|
-
httpclient (
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
retriable (~> 2.0)
|
327
|
-
googleauth (0.6.2)
|
345
|
+
git (1.5.0)
|
346
|
+
google-api-client (0.19.8)
|
347
|
+
addressable (~> 2.5, >= 2.5.1)
|
348
|
+
googleauth (>= 0.5, < 0.7.0)
|
349
|
+
httpclient (>= 2.8.1, < 3.0)
|
350
|
+
mime-types (~> 3.0)
|
351
|
+
representable (~> 3.0)
|
352
|
+
retriable (>= 2.0, < 4.0)
|
353
|
+
googleauth (0.6.6)
|
328
354
|
faraday (~> 0.12)
|
329
355
|
jwt (>= 1.4, < 3.0)
|
330
|
-
logging (~> 2.0)
|
331
356
|
memoist (~> 0.12)
|
332
357
|
multi_json (~> 1.11)
|
333
|
-
os (
|
358
|
+
os (>= 0.9, < 2.0)
|
334
359
|
signet (~> 0.7)
|
335
360
|
gssapi (1.2.0)
|
336
361
|
ffi (>= 1.0.1)
|
@@ -345,21 +370,28 @@ GEM
|
|
345
370
|
thor (>= 0.18.1)
|
346
371
|
gyoku (1.3.1)
|
347
372
|
builder (>= 2.1.2)
|
348
|
-
hashie (3.
|
373
|
+
hashie (3.6.0)
|
349
374
|
highline (1.7.10)
|
350
375
|
htmlentities (4.3.4)
|
376
|
+
http (2.2.2)
|
377
|
+
addressable (~> 2.3)
|
378
|
+
http-cookie (~> 1.0)
|
379
|
+
http-form_data (~> 1.0.1)
|
380
|
+
http_parser.rb (~> 0.6.0)
|
351
381
|
http-cookie (1.0.3)
|
352
382
|
domain_name (~> 0.5)
|
383
|
+
http-form_data (1.0.3)
|
384
|
+
http_parser.rb (0.6.0)
|
353
385
|
httpclient (2.8.3)
|
354
|
-
|
355
|
-
i18n (1.0.1)
|
386
|
+
i18n (1.1.0)
|
356
387
|
concurrent-ruby (~> 1.0)
|
357
388
|
ice_nine (0.11.2)
|
358
389
|
inifile (3.0.0)
|
359
390
|
iniparse (1.4.4)
|
360
|
-
inspec (2.
|
391
|
+
inspec (2.2.70)
|
361
392
|
addressable (~> 2.4)
|
362
393
|
faraday (>= 0.9.0)
|
394
|
+
faraday_middleware (~> 0.12.2)
|
363
395
|
hashie (~> 3.4)
|
364
396
|
htmlentities
|
365
397
|
json (>= 1.8, < 3.0)
|
@@ -375,13 +407,18 @@ GEM
|
|
375
407
|
sslshake (~> 1.2)
|
376
408
|
thor (~> 0.20)
|
377
409
|
tomlrb (~> 1.2)
|
378
|
-
train (~> 1.4)
|
410
|
+
train (~> 1.4, >= 1.4.15)
|
379
411
|
ipaddress (0.8.3)
|
380
|
-
iso8601 (0.
|
412
|
+
iso8601 (0.11.0)
|
381
413
|
jmespath (1.4.0)
|
382
414
|
json (2.1.0)
|
383
415
|
jwt (2.1.0)
|
384
416
|
kartograph (0.2.7)
|
417
|
+
kitchen-azurerm (0.14.4)
|
418
|
+
azure_mgmt_network (~> 0.15, >= 0.15.0)
|
419
|
+
azure_mgmt_resources (~> 0.15, >= 0.15.0)
|
420
|
+
inifile (~> 3.0, >= 3.0.0)
|
421
|
+
sshkey (~> 1, >= 1.0.0)
|
385
422
|
kitchen-digitalocean (0.10.0)
|
386
423
|
droplet_kit (~> 2.3)
|
387
424
|
test-kitchen (~> 1.17)
|
@@ -395,9 +432,9 @@ GEM
|
|
395
432
|
multi_json
|
396
433
|
retryable (~> 2.0)
|
397
434
|
test-kitchen (~> 1.4, >= 1.4.1)
|
398
|
-
kitchen-google (1.
|
399
|
-
gcewinpass (~> 1.
|
400
|
-
google-api-client (~> 0.
|
435
|
+
kitchen-google (1.5.0)
|
436
|
+
gcewinpass (~> 1.1)
|
437
|
+
google-api-client (~> 0.19)
|
401
438
|
test-kitchen
|
402
439
|
kitchen-hyperv (0.5.1)
|
403
440
|
test-kitchen (~> 1.4)
|
@@ -405,26 +442,24 @@ GEM
|
|
405
442
|
hashie (~> 3.4)
|
406
443
|
inspec (>= 0.34.0, < 3.0.0)
|
407
444
|
test-kitchen (~> 1.6)
|
408
|
-
kitchen-vagrant (1.3.
|
445
|
+
kitchen-vagrant (1.3.3)
|
409
446
|
test-kitchen (~> 1.4)
|
410
447
|
knife-acl (1.0.3)
|
411
448
|
knife-cloud (1.2.1)
|
412
449
|
chef (>= 0.10.10)
|
413
450
|
knife-windows (>= 0.5.14)
|
414
451
|
mixlib-shellout
|
415
|
-
knife-ec2 (0.
|
416
|
-
fog-aws (
|
452
|
+
knife-ec2 (0.19.10)
|
453
|
+
fog-aws (>= 1, < 4)
|
417
454
|
knife-windows (~> 1.0)
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
gcewinpass (~> 1.0)
|
422
|
-
google-api-client (~> 0.9.0)
|
455
|
+
knife-google (3.3.0)
|
456
|
+
gcewinpass (~> 1.1)
|
457
|
+
google-api-client (~> 0.19.8)
|
423
458
|
knife-cloud (~> 1.2.0)
|
424
459
|
knife-opc (0.4.0)
|
425
460
|
knife-push (1.0.3)
|
426
461
|
chef (>= 12.7.2)
|
427
|
-
knife-spork (1.7.
|
462
|
+
knife-spork (1.7.2)
|
428
463
|
app_conf (>= 0.4.0)
|
429
464
|
chef (>= 11.0.0)
|
430
465
|
diffy (>= 3.0.1)
|
@@ -453,34 +488,34 @@ GEM
|
|
453
488
|
lumberjack (1.0.13)
|
454
489
|
memoist (0.16.0)
|
455
490
|
method_source (0.9.0)
|
456
|
-
mime-types (3.
|
491
|
+
mime-types (3.2.2)
|
457
492
|
mime-types-data (~> 3.2015)
|
458
|
-
mime-types-data (3.
|
493
|
+
mime-types-data (3.2018.0812)
|
459
494
|
mini_portile2 (2.3.0)
|
460
495
|
minitar (0.6.1)
|
461
496
|
minitest (5.11.3)
|
462
|
-
mixlib-archive (0.4.
|
497
|
+
mixlib-archive (0.4.16)
|
463
498
|
mixlib-log
|
464
499
|
mixlib-authentication (2.1.1)
|
465
500
|
mixlib-cli (1.7.0)
|
466
|
-
mixlib-config (2.2.
|
501
|
+
mixlib-config (2.2.13)
|
467
502
|
tomlrb
|
468
|
-
mixlib-install (3.
|
503
|
+
mixlib-install (3.11.5)
|
469
504
|
mixlib-shellout
|
470
505
|
mixlib-versioning
|
471
506
|
thor
|
472
507
|
mixlib-log (2.0.4)
|
473
|
-
mixlib-shellout (2.
|
474
|
-
mixlib-shellout (2.
|
508
|
+
mixlib-shellout (2.4.0)
|
509
|
+
mixlib-shellout (2.4.0-universal-mingw32)
|
475
510
|
win32-process (~> 0.8.2)
|
476
511
|
wmi-lite (~> 1.0)
|
477
512
|
mixlib-versioning (1.2.2)
|
478
|
-
molinillo (0.6.
|
513
|
+
molinillo (0.6.6)
|
479
514
|
ms_rest (0.7.2)
|
480
515
|
concurrent-ruby (~> 1.0)
|
481
516
|
faraday (~> 0.9)
|
482
517
|
timeliness (~> 0.3)
|
483
|
-
ms_rest_azure (0.
|
518
|
+
ms_rest_azure (0.11.0)
|
484
519
|
concurrent-ruby (~> 1.0)
|
485
520
|
faraday (~> 0.9)
|
486
521
|
faraday-cookie_jar (~> 0.0.6)
|
@@ -499,26 +534,26 @@ GEM
|
|
499
534
|
net-ssh-multi (1.2.1)
|
500
535
|
net-ssh (>= 2.6.5)
|
501
536
|
net-ssh-gateway (>= 1.2.0)
|
502
|
-
net-telnet (0.
|
537
|
+
net-telnet (0.2.0)
|
503
538
|
netaddr (1.5.1)
|
504
|
-
nokogiri (1.8.
|
539
|
+
nokogiri (1.8.4)
|
505
540
|
mini_portile2 (~> 2.3.0)
|
506
|
-
nokogiri (1.8.
|
541
|
+
nokogiri (1.8.4-x64-mingw32)
|
507
542
|
mini_portile2 (~> 2.3.0)
|
508
|
-
nokogiri (1.8.
|
543
|
+
nokogiri (1.8.4-x86-mingw32)
|
509
544
|
mini_portile2 (~> 2.3.0)
|
510
545
|
nori (2.6.0)
|
511
546
|
notiffany (0.1.1)
|
512
547
|
nenv (~> 0.1)
|
513
548
|
shellany (~> 0.0)
|
514
|
-
octokit (4.
|
549
|
+
octokit (4.11.0)
|
515
550
|
sawyer (~> 0.8.0, >= 0.5.3)
|
516
|
-
ohai (14.2
|
551
|
+
ohai (14.4.2)
|
517
552
|
chef-config (>= 12.8, < 15)
|
518
553
|
ffi (~> 1.9)
|
519
554
|
ffi-yajl (~> 2.2)
|
520
555
|
ipaddress
|
521
|
-
mixlib-cli
|
556
|
+
mixlib-cli (>= 1.7.0)
|
522
557
|
mixlib-config (~> 2.0)
|
523
558
|
mixlib-log (~> 2.0, >= 2.0.1)
|
524
559
|
mixlib-shellout (~> 2.0)
|
@@ -530,12 +565,15 @@ GEM
|
|
530
565
|
ffi-rzmq
|
531
566
|
ohai (>= 8.23, < 15.0)
|
532
567
|
uuidtools
|
533
|
-
os (0.
|
568
|
+
os (1.0.0)
|
534
569
|
paint (1.0.1)
|
535
570
|
parallel (1.12.1)
|
536
|
-
parser (2.5.1.
|
571
|
+
parser (2.5.1.2)
|
537
572
|
ast (~> 2.4.0)
|
538
573
|
parslet (1.8.2)
|
574
|
+
pastel (0.7.2)
|
575
|
+
equatable (~> 0.5.0)
|
576
|
+
tty-color (~> 0.4.0)
|
539
577
|
plist (3.4.0)
|
540
578
|
polyglot (0.3.5)
|
541
579
|
powerpack (0.1.2)
|
@@ -552,7 +590,10 @@ GEM
|
|
552
590
|
pry-stack_explorer (0.4.9.2)
|
553
591
|
binding_of_caller (>= 0.7)
|
554
592
|
pry (>= 0.9.11)
|
555
|
-
public_suffix (3.0.
|
593
|
+
public_suffix (3.0.3)
|
594
|
+
r18n-core (3.1.1)
|
595
|
+
r18n-desktop (3.1.1)
|
596
|
+
r18n-core (= 3.1.1)
|
556
597
|
rack (2.0.5)
|
557
598
|
rainbow (3.0.0)
|
558
599
|
rake (12.3.1)
|
@@ -567,11 +608,13 @@ GEM
|
|
567
608
|
trollop (~> 2.1)
|
568
609
|
rdoc (6.0.4)
|
569
610
|
rdp-ruby-wmi (0.3.1)
|
570
|
-
representable (
|
571
|
-
|
611
|
+
representable (3.0.4)
|
612
|
+
declarative (< 0.1.0)
|
613
|
+
declarative-option (< 0.2.0)
|
614
|
+
uber (< 0.2.0)
|
572
615
|
resource_kit (0.1.7)
|
573
616
|
addressable (>= 2.3.6, < 3.0.0)
|
574
|
-
retriable (
|
617
|
+
retriable (3.1.2)
|
575
618
|
retryable (2.0.4)
|
576
619
|
rspec (3.7.0)
|
577
620
|
rspec-core (~> 3.7.0)
|
@@ -600,7 +643,7 @@ GEM
|
|
600
643
|
ruby-progressbar (~> 1.7)
|
601
644
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
602
645
|
ruby-prof (0.17.0)
|
603
|
-
ruby-progressbar (1.
|
646
|
+
ruby-progressbar (1.10.0)
|
604
647
|
ruby-shadow (2.5.0)
|
605
648
|
ruby_dep (1.5.0)
|
606
649
|
rubyntlm (0.6.2)
|
@@ -617,7 +660,7 @@ GEM
|
|
617
660
|
specinfra (~> 2.72)
|
618
661
|
sfl (2.3)
|
619
662
|
shellany (0.0.1)
|
620
|
-
signet (0.
|
663
|
+
signet (0.9.1)
|
621
664
|
addressable (~> 2.3)
|
622
665
|
faraday (~> 0.9)
|
623
666
|
jwt (>= 1.5, < 3.0)
|
@@ -626,11 +669,12 @@ GEM
|
|
626
669
|
solve (4.0.0)
|
627
670
|
molinillo (~> 0.6)
|
628
671
|
semverse (>= 1.1, < 3.0)
|
629
|
-
specinfra (2.
|
672
|
+
specinfra (2.76.1)
|
630
673
|
net-scp
|
631
|
-
net-ssh (>= 2.7
|
674
|
+
net-ssh (>= 2.7)
|
632
675
|
net-telnet
|
633
676
|
sfl
|
677
|
+
sshkey (1.9.0)
|
634
678
|
sslshake (1.2.0)
|
635
679
|
stove (6.0.0)
|
636
680
|
chef-api (~> 0.5)
|
@@ -638,7 +682,7 @@ GEM
|
|
638
682
|
structured_warnings (0.3.0)
|
639
683
|
syslog-logger (1.6.8)
|
640
684
|
systemu (2.6.5)
|
641
|
-
test-kitchen (1.
|
685
|
+
test-kitchen (1.23.2)
|
642
686
|
mixlib-install (~> 3.6)
|
643
687
|
mixlib-shellout (>= 1.2, < 3.0)
|
644
688
|
net-scp (~> 1.1)
|
@@ -651,24 +695,33 @@ GEM
|
|
651
695
|
thor (0.20.0)
|
652
696
|
thread_safe (0.3.6)
|
653
697
|
timeliness (0.3.8)
|
698
|
+
toml-rb (1.1.2)
|
699
|
+
citrus (~> 3.0, > 3.0)
|
654
700
|
tomlrb (1.2.7)
|
655
|
-
train (1.4.
|
701
|
+
train (1.4.35)
|
656
702
|
aws-sdk (~> 2)
|
703
|
+
azure_graph_rbac (~> 0.16)
|
657
704
|
azure_mgmt_resources (~> 0.15)
|
658
705
|
docker-api (~> 1.26)
|
706
|
+
google-api-client (~> 0.19.8)
|
707
|
+
googleauth (~> 0.6.2)
|
659
708
|
inifile
|
660
709
|
json (>= 1.8, < 3.0)
|
661
710
|
mixlib-shellout (~> 2.0)
|
662
711
|
net-scp (~> 1.2)
|
663
|
-
net-ssh (>= 2.9, <
|
712
|
+
net-ssh (>= 2.9, < 6.0)
|
664
713
|
winrm (~> 2.0)
|
665
714
|
winrm-fs (~> 1.0)
|
666
715
|
treetop (1.6.10)
|
667
716
|
polyglot (~> 0.3)
|
668
|
-
trollop (2.
|
717
|
+
trollop (2.9.9)
|
718
|
+
tty-color (0.4.3)
|
719
|
+
tty-cursor (0.6.0)
|
720
|
+
tty-spinner (0.8.0)
|
721
|
+
tty-cursor (>= 0.5.0)
|
669
722
|
tzinfo (1.2.5)
|
670
723
|
thread_safe (~> 0.1)
|
671
|
-
uber (0.0
|
724
|
+
uber (0.1.0)
|
672
725
|
ubuntu_ami (0.4.1)
|
673
726
|
unf (0.1.4)
|
674
727
|
unf_ext
|
@@ -697,10 +750,10 @@ GEM
|
|
697
750
|
win32-ipc (>= 0.6.0)
|
698
751
|
win32-process (0.8.3)
|
699
752
|
ffi (>= 1.0.0)
|
700
|
-
win32-service (0.
|
753
|
+
win32-service (1.0.1)
|
701
754
|
ffi
|
702
755
|
ffi-win32-extensions
|
703
|
-
win32-taskscheduler (0.
|
756
|
+
win32-taskscheduler (1.0.10)
|
704
757
|
ffi
|
705
758
|
structured_warnings
|
706
759
|
windows-api (0.4.4)
|
@@ -720,13 +773,13 @@ GEM
|
|
720
773
|
winrm-elevated (1.1.0)
|
721
774
|
winrm (~> 2.0)
|
722
775
|
winrm-fs (~> 1.0)
|
723
|
-
winrm-fs (1.2.
|
776
|
+
winrm-fs (1.2.1)
|
724
777
|
erubis (~> 2.7)
|
725
778
|
logging (>= 1.6.1, < 3.0)
|
726
779
|
rubyzip (~> 1.1)
|
727
780
|
winrm (~> 2.0)
|
728
781
|
wmi-lite (1.0.0)
|
729
|
-
yard (0.9.
|
782
|
+
yard (0.9.16)
|
730
783
|
|
731
784
|
PLATFORMS
|
732
785
|
ruby
|
@@ -736,9 +789,10 @@ PLATFORMS
|
|
736
789
|
DEPENDENCIES
|
737
790
|
appbundler
|
738
791
|
artifactory
|
739
|
-
berkshelf (>= 7.0)
|
792
|
+
berkshelf (>= 7.0.5)
|
740
793
|
bundler
|
741
|
-
chef (
|
794
|
+
chef (>= 14.0)
|
795
|
+
chef-apply
|
742
796
|
chef-dk!
|
743
797
|
chef-provisioning (>= 2.7.1)
|
744
798
|
chef-provisioning-aws (>= 3.0.2)
|
@@ -746,37 +800,39 @@ DEPENDENCIES
|
|
746
800
|
chef-sugar
|
747
801
|
chef-vault (>= 3.3.0)
|
748
802
|
cheffish (>= 14.0.1)
|
749
|
-
chefspec (>= 7.2.
|
803
|
+
chefspec (>= 7.2.1)
|
750
804
|
chefstyle
|
751
805
|
cookstyle (>= 2.0.0)
|
752
806
|
cucumber
|
753
807
|
dco
|
754
808
|
dep-selector-libgecode
|
755
809
|
dep_selector
|
756
|
-
fauxhai (>= 5.
|
810
|
+
fauxhai (>= 6.5.0)
|
757
811
|
ffi-libarchive
|
758
812
|
ffi-rzmq-core
|
813
|
+
fog-openstack (< 0.2.0)
|
759
814
|
foodcritic (>= 12.1)
|
760
815
|
guard
|
761
|
-
inspec (>= 2.
|
762
|
-
kitchen-
|
816
|
+
inspec (>= 2.2.55)
|
817
|
+
kitchen-azurerm (>= 0.14)
|
818
|
+
kitchen-digitalocean (>= 0.10.0)
|
763
819
|
kitchen-dokken (>= 2.6.7)
|
764
|
-
kitchen-ec2 (>= 2.2.
|
765
|
-
kitchen-google (>= 1.
|
820
|
+
kitchen-ec2 (>= 2.2.2)
|
821
|
+
kitchen-google (>= 1.5.0)
|
766
822
|
kitchen-hyperv (>= 0.5.1)
|
767
|
-
kitchen-inspec (>= 0.
|
823
|
+
kitchen-inspec (>= 0.23.1)
|
768
824
|
kitchen-vagrant (>= 1.3.2)
|
769
825
|
knife-acl (>= 1.0.3)
|
770
|
-
knife-ec2 (>= 0.
|
771
|
-
knife-google (>= 3.
|
772
|
-
knife-opc (>= 0.
|
826
|
+
knife-ec2 (>= 0.19.10)
|
827
|
+
knife-google (>= 3.3.0)
|
828
|
+
knife-opc (>= 0.4.0)
|
773
829
|
knife-push
|
774
830
|
knife-spork
|
775
|
-
knife-tidy (>=
|
776
|
-
knife-vsphere (>= 2.
|
777
|
-
knife-windows (>= 1.9.
|
831
|
+
knife-tidy (>= 1.2.0)
|
832
|
+
knife-vsphere (>= 2.1.1)
|
833
|
+
knife-windows (>= 1.9.1)
|
778
834
|
listen
|
779
|
-
mixlib-archive (
|
835
|
+
mixlib-archive (>= 0.4.16)
|
780
836
|
mixlib-install
|
781
837
|
mixlib-versioning
|
782
838
|
net-ssh (>= 4.2.0)
|
@@ -798,7 +854,7 @@ DEPENDENCIES
|
|
798
854
|
ruby-prof
|
799
855
|
ruby-shadow
|
800
856
|
stove
|
801
|
-
test-kitchen (>= 1.
|
857
|
+
test-kitchen (>= 1.23.0)
|
802
858
|
win32-api
|
803
859
|
win32-dir
|
804
860
|
win32-event
|
@@ -812,4 +868,4 @@ DEPENDENCIES
|
|
812
868
|
yard
|
813
869
|
|
814
870
|
BUNDLED WITH
|
815
|
-
1.16.
|
871
|
+
1.16.4
|