chef-dk 4.6.35 → 4.7.73
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +17 -16
- data/Gemfile.lock +175 -189
- data/Rakefile +1 -17
- data/lib/chef-dk/command/verify.rb +0 -9
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/README.md +1 -1
- data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +2 -2
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +1 -1
- data/lib/chef-dk/skeletons/code_generator/recipes/repo.rb +1 -1
- data/lib/chef-dk/version.rb +1 -1
- data/spec/unit/command/generator_commands/cookbook_spec.rb +1 -1
- data/spec/unit/command/verify_spec.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42956965a35664f8cd341414395dc0ca2b51bd3363894e0ea28c77caf4ce8f92
|
4
|
+
data.tar.gz: e58167beb05d383f860bdff2074707c1c1cf6a7e5db85be531b348fdb459d8d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40d0515558d6d24e9c076f03054fa61545b024829fedc9d33f7b8e5ffaf81856f8d233baef0b37fa3b2d7455f56ff97eed5210c24602c70ea1d72df06d5874ce
|
7
|
+
data.tar.gz: e1a85935fbee5b7c648aed1b829f59b5e281b6b6444ed0f04b0e40f3e81824863c94637aff596a31bf6d4ba1a149d7e482cac3445a05218cd6c701be37bfd984
|
data/Gemfile
CHANGED
@@ -21,6 +21,10 @@ gemspec
|
|
21
21
|
|
22
22
|
gem "bundler"
|
23
23
|
|
24
|
+
## Until we resolve https://github.com/inspec/train/issues/548
|
25
|
+
gem "train", "=3.2.0"
|
26
|
+
gem "train-core", "=3.2.0"
|
27
|
+
|
24
28
|
group(:omnibus_package, :development, :test) do
|
25
29
|
# we pin these gems as they are installed in the ruby source and if we let them
|
26
30
|
# float we'll end up with 2 copies shipped in DK. When we bump Ruby we need to
|
@@ -49,29 +53,33 @@ end
|
|
49
53
|
group(:omnibus_package) do
|
50
54
|
gem "appbundler"
|
51
55
|
|
56
|
+
## Until we resolve https://github.com/inspec/train/issues/548
|
57
|
+
gem "train", "=3.2.0"
|
58
|
+
gem "train-core", "=3.2.0"
|
59
|
+
|
52
60
|
# Expeditor manages the version of chef released to Rubygems. We only release 'stable' chef
|
53
61
|
# gems to Rubygems now, so letting this float on latest should always give us the latest
|
54
62
|
# stable release. May have to re-pin around major version bumping time, or during patch
|
55
63
|
# fixes.
|
56
|
-
gem "chef", "= 15.
|
57
|
-
gem "chef-bin", "= 15.
|
58
|
-
gem "ohai", ">=
|
64
|
+
gem "chef", "= 15.7.32"
|
65
|
+
gem "chef-bin", "= 15.7.32"
|
66
|
+
gem "ohai", ">= 15"
|
59
67
|
gem "cheffish", ">= 14.0.1"
|
60
68
|
|
61
69
|
# chefspec
|
62
70
|
gem "chefspec", ">= 7.3.0", "< 8"
|
63
|
-
gem "fauxhai", "~> 7.
|
71
|
+
gem "fauxhai", "~> 7.4"
|
64
72
|
|
65
73
|
# inspec
|
66
|
-
gem "inspec-bin", "~> 4.
|
67
|
-
gem "inspec", "~> 4.
|
74
|
+
gem "inspec-bin", "~> 4.18" # the actual inspec CLI binary
|
75
|
+
gem "inspec", "~> 4.18"
|
68
76
|
|
69
77
|
# test-kitchen and plugins
|
70
78
|
gem "test-kitchen", ">= 2.0"
|
71
79
|
gem "kitchen-azurerm", ">= 0.14"
|
72
80
|
gem "kitchen-ec2", ">= 3.0", "< 4"
|
73
81
|
gem "kitchen-digitalocean", ">= 0.10.0"
|
74
|
-
gem "kitchen-dokken", ">= 2.
|
82
|
+
gem "kitchen-dokken", ">= 2.8.1"
|
75
83
|
gem "kitchen-google", ">= 2.0.0"
|
76
84
|
gem "kitchen-hyperv", ">= 0.5.1"
|
77
85
|
gem "kitchen-inspec", ">= 1.0"
|
@@ -91,13 +99,6 @@ group(:omnibus_package) do
|
|
91
99
|
gem "ed25519"
|
92
100
|
gem "bcrypt_pbkdf"
|
93
101
|
|
94
|
-
# Right now we must import chef-apply as a gem into the ChefDK because this is where all the gem
|
95
|
-
# dependency resolution occurs. Putting it elsewhere endangers older ChefDK issues of gem version
|
96
|
-
# conflicts post-build.
|
97
|
-
# Version 3.3 switches to ChefCLI instead of ChefDK - we want to lock to
|
98
|
-
# the latest version before that so that we don't pull in ChefCLI.
|
99
|
-
gem "chef-apply", "= 0.3.0"
|
100
|
-
|
101
102
|
# For Delivery build node
|
102
103
|
gem "chef-sugar"
|
103
104
|
gem "mixlib-versioning"
|
@@ -107,7 +108,7 @@ group(:omnibus_package) do
|
|
107
108
|
gem "knife-push"
|
108
109
|
|
109
110
|
# All of the following used to be software definitions we included:
|
110
|
-
gem "mixlib-archive", ">= 0
|
111
|
+
gem "mixlib-archive", ">= 1.0"
|
111
112
|
gem "net-ssh", ">= 4.2.0"
|
112
113
|
gem "listen"
|
113
114
|
gem "dco"
|
@@ -122,7 +123,7 @@ group(:omnibus_package) do
|
|
122
123
|
gem "winrm-elevated"
|
123
124
|
gem "cucumber"
|
124
125
|
gem "stove", ">= 7.1.5"
|
125
|
-
gem "berkshelf", ">= 7.0.
|
126
|
+
gem "berkshelf", ">= 7.0.9"
|
126
127
|
gem "chef-vault", ">= 3.4.1"
|
127
128
|
end
|
128
129
|
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
chef-dk (4.
|
4
|
+
chef-dk (4.7.73)
|
5
5
|
addressable (>= 2.3.5, < 2.6)
|
6
6
|
chef (~> 15.0)
|
7
7
|
cookbook-omnifetch (~> 0.5)
|
@@ -17,7 +17,7 @@ PATH
|
|
17
17
|
GEM
|
18
18
|
remote: https://rubygems.org/
|
19
19
|
specs:
|
20
|
-
activesupport (5.2.4)
|
20
|
+
activesupport (5.2.4.1)
|
21
21
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
22
22
|
i18n (>= 0.7, < 2)
|
23
23
|
minitest (~> 5.1)
|
@@ -28,14 +28,14 @@ GEM
|
|
28
28
|
appbundler (0.13.1)
|
29
29
|
mixlib-cli (>= 1.4, < 3.0)
|
30
30
|
mixlib-shellout (>= 2.0, < 4.0)
|
31
|
-
artifactory (3.0.
|
31
|
+
artifactory (3.0.12)
|
32
32
|
ast (2.4.0)
|
33
33
|
aws-eventstream (1.0.3)
|
34
|
-
aws-partitions (1.
|
34
|
+
aws-partitions (1.269.0)
|
35
35
|
aws-sdk-apigateway (1.36.0)
|
36
36
|
aws-sdk-core (~> 3, >= 3.71.0)
|
37
37
|
aws-sigv4 (~> 1.1)
|
38
|
-
aws-sdk-apigatewayv2 (1.
|
38
|
+
aws-sdk-apigatewayv2 (1.15.0)
|
39
39
|
aws-sdk-core (~> 3, >= 3.71.0)
|
40
40
|
aws-sigv4 (~> 1.1)
|
41
41
|
aws-sdk-athena (1.22.0)
|
@@ -53,16 +53,16 @@ GEM
|
|
53
53
|
aws-sdk-cloudhsm (1.19.0)
|
54
54
|
aws-sdk-core (~> 3, >= 3.71.0)
|
55
55
|
aws-sigv4 (~> 1.1)
|
56
|
-
aws-sdk-cloudhsmv2 (1.
|
56
|
+
aws-sdk-cloudhsmv2 (1.20.0)
|
57
57
|
aws-sdk-core (~> 3, >= 3.71.0)
|
58
58
|
aws-sigv4 (~> 1.1)
|
59
59
|
aws-sdk-cloudtrail (1.20.0)
|
60
60
|
aws-sdk-core (~> 3, >= 3.71.0)
|
61
61
|
aws-sigv4 (~> 1.1)
|
62
|
-
aws-sdk-cloudwatch (1.
|
62
|
+
aws-sdk-cloudwatch (1.32.0)
|
63
63
|
aws-sdk-core (~> 3, >= 3.71.0)
|
64
64
|
aws-sigv4 (~> 1.1)
|
65
|
-
aws-sdk-cloudwatchlogs (1.
|
65
|
+
aws-sdk-cloudwatchlogs (1.28.0)
|
66
66
|
aws-sdk-core (~> 3, >= 3.71.0)
|
67
67
|
aws-sigv4 (~> 1.1)
|
68
68
|
aws-sdk-codecommit (1.30.0)
|
@@ -71,13 +71,13 @@ GEM
|
|
71
71
|
aws-sdk-codedeploy (1.27.0)
|
72
72
|
aws-sdk-core (~> 3, >= 3.71.0)
|
73
73
|
aws-sigv4 (~> 1.1)
|
74
|
-
aws-sdk-codepipeline (1.
|
74
|
+
aws-sdk-codepipeline (1.28.0)
|
75
75
|
aws-sdk-core (~> 3, >= 3.71.0)
|
76
76
|
aws-sigv4 (~> 1.1)
|
77
77
|
aws-sdk-configservice (1.40.0)
|
78
78
|
aws-sdk-core (~> 3, >= 3.71.0)
|
79
79
|
aws-sigv4 (~> 1.1)
|
80
|
-
aws-sdk-core (3.
|
80
|
+
aws-sdk-core (3.89.1)
|
81
81
|
aws-eventstream (~> 1.0, >= 1.0.2)
|
82
82
|
aws-partitions (~> 1, >= 1.239.0)
|
83
83
|
aws-sigv4 (~> 1.1)
|
@@ -85,19 +85,19 @@ GEM
|
|
85
85
|
aws-sdk-costandusagereportservice (1.18.0)
|
86
86
|
aws-sdk-core (~> 3, >= 3.71.0)
|
87
87
|
aws-sigv4 (~> 1.1)
|
88
|
-
aws-sdk-dynamodb (1.
|
88
|
+
aws-sdk-dynamodb (1.41.0)
|
89
89
|
aws-sdk-core (~> 3, >= 3.71.0)
|
90
90
|
aws-sigv4 (~> 1.1)
|
91
|
-
aws-sdk-ec2 (1.
|
91
|
+
aws-sdk-ec2 (1.137.0)
|
92
92
|
aws-sdk-core (~> 3, >= 3.71.0)
|
93
93
|
aws-sigv4 (~> 1.1)
|
94
|
-
aws-sdk-ecr (1.
|
94
|
+
aws-sdk-ecr (1.24.0)
|
95
95
|
aws-sdk-core (~> 3, >= 3.71.0)
|
96
96
|
aws-sigv4 (~> 1.1)
|
97
|
-
aws-sdk-ecs (1.
|
97
|
+
aws-sdk-ecs (1.57.0)
|
98
98
|
aws-sdk-core (~> 3, >= 3.71.0)
|
99
99
|
aws-sigv4 (~> 1.1)
|
100
|
-
aws-sdk-eks (1.
|
100
|
+
aws-sdk-eks (1.31.0)
|
101
101
|
aws-sdk-core (~> 3, >= 3.71.0)
|
102
102
|
aws-sigv4 (~> 1.1)
|
103
103
|
aws-sdk-elasticache (1.29.0)
|
@@ -112,34 +112,34 @@ GEM
|
|
112
112
|
aws-sdk-elasticloadbalancingv2 (1.39.0)
|
113
113
|
aws-sdk-core (~> 3, >= 3.71.0)
|
114
114
|
aws-sigv4 (~> 1.1)
|
115
|
-
aws-sdk-elasticsearchservice (1.
|
115
|
+
aws-sdk-elasticsearchservice (1.29.0)
|
116
116
|
aws-sdk-core (~> 3, >= 3.71.0)
|
117
117
|
aws-sigv4 (~> 1.1)
|
118
118
|
aws-sdk-firehose (1.24.0)
|
119
119
|
aws-sdk-core (~> 3, >= 3.71.0)
|
120
120
|
aws-sigv4 (~> 1.1)
|
121
|
-
aws-sdk-iam (1.
|
121
|
+
aws-sdk-iam (1.33.0)
|
122
122
|
aws-sdk-core (~> 3, >= 3.71.0)
|
123
123
|
aws-sigv4 (~> 1.1)
|
124
|
-
aws-sdk-kafka (1.
|
124
|
+
aws-sdk-kafka (1.16.0)
|
125
125
|
aws-sdk-core (~> 3, >= 3.71.0)
|
126
126
|
aws-sigv4 (~> 1.1)
|
127
127
|
aws-sdk-kinesis (1.20.0)
|
128
128
|
aws-sdk-core (~> 3, >= 3.71.0)
|
129
129
|
aws-sigv4 (~> 1.1)
|
130
|
-
aws-sdk-kms (1.
|
130
|
+
aws-sdk-kms (1.28.0)
|
131
131
|
aws-sdk-core (~> 3, >= 3.71.0)
|
132
132
|
aws-sigv4 (~> 1.1)
|
133
|
-
aws-sdk-lambda (1.
|
133
|
+
aws-sdk-lambda (1.35.0)
|
134
134
|
aws-sdk-core (~> 3, >= 3.71.0)
|
135
135
|
aws-sigv4 (~> 1.1)
|
136
136
|
aws-sdk-organizations (1.17.0)
|
137
137
|
aws-sdk-core (~> 3, >= 3.39.0)
|
138
138
|
aws-sigv4 (~> 1.0)
|
139
|
-
aws-sdk-rds (1.
|
139
|
+
aws-sdk-rds (1.76.0)
|
140
140
|
aws-sdk-core (~> 3, >= 3.71.0)
|
141
141
|
aws-sigv4 (~> 1.1)
|
142
|
-
aws-sdk-redshift (1.
|
142
|
+
aws-sdk-redshift (1.36.0)
|
143
143
|
aws-sdk-core (~> 3, >= 3.71.0)
|
144
144
|
aws-sigv4 (~> 1.1)
|
145
145
|
aws-sdk-route53 (1.30.0)
|
@@ -151,11 +151,11 @@ GEM
|
|
151
151
|
aws-sdk-route53resolver (1.11.0)
|
152
152
|
aws-sdk-core (~> 3, >= 3.71.0)
|
153
153
|
aws-sigv4 (~> 1.1)
|
154
|
-
aws-sdk-s3 (1.
|
155
|
-
aws-sdk-core (~> 3, >= 3.
|
154
|
+
aws-sdk-s3 (1.60.1)
|
155
|
+
aws-sdk-core (~> 3, >= 3.83.0)
|
156
156
|
aws-sdk-kms (~> 1)
|
157
157
|
aws-sigv4 (~> 1.1)
|
158
|
-
aws-sdk-securityhub (1.
|
158
|
+
aws-sdk-securityhub (1.16.0)
|
159
159
|
aws-sdk-core (~> 3, >= 3.71.0)
|
160
160
|
aws-sigv4 (~> 1.1)
|
161
161
|
aws-sdk-ses (1.27.0)
|
@@ -170,7 +170,7 @@ GEM
|
|
170
170
|
aws-sdk-sqs (1.23.1)
|
171
171
|
aws-sdk-core (~> 3, >= 3.71.0)
|
172
172
|
aws-sigv4 (~> 1.1)
|
173
|
-
aws-sdk-ssm (1.
|
173
|
+
aws-sdk-ssm (1.70.0)
|
174
174
|
aws-sdk-core (~> 3, >= 3.71.0)
|
175
175
|
aws-sigv4 (~> 1.1)
|
176
176
|
aws-sigv4 (1.1.0)
|
@@ -189,13 +189,15 @@ GEM
|
|
189
189
|
ms_rest_azure (~> 0.11.1)
|
190
190
|
azure_mgmt_resources (0.17.8)
|
191
191
|
ms_rest_azure (~> 0.11.1)
|
192
|
-
|
192
|
+
azure_mgmt_security (0.18.0)
|
193
|
+
ms_rest_azure (~> 0.11.1)
|
194
|
+
azure_mgmt_storage (0.19.1)
|
193
195
|
ms_rest_azure (~> 0.11.1)
|
194
196
|
backports (3.15.0)
|
195
197
|
bcrypt_pbkdf (1.0.1)
|
196
198
|
bcrypt_pbkdf (1.0.1-x64-mingw32)
|
197
199
|
bcrypt_pbkdf (1.0.1-x86-mingw32)
|
198
|
-
berkshelf (7.0.
|
200
|
+
berkshelf (7.0.9)
|
199
201
|
chef (>= 13.6.52)
|
200
202
|
chef-config
|
201
203
|
cleanroom (~> 1.0)
|
@@ -210,14 +212,14 @@ GEM
|
|
210
212
|
thor (>= 0.20)
|
211
213
|
binding_of_caller (0.8.0)
|
212
214
|
debug_inspector (>= 0.0.1)
|
213
|
-
builder (3.2.
|
214
|
-
byebug (11.
|
215
|
-
chef (15.
|
215
|
+
builder (3.2.4)
|
216
|
+
byebug (11.1.1)
|
217
|
+
chef (15.7.32)
|
216
218
|
addressable
|
217
219
|
bcrypt_pbkdf (~> 1.0)
|
218
220
|
bundler (>= 1.10)
|
219
|
-
chef-config (= 15.
|
220
|
-
chef-utils (= 15.
|
221
|
+
chef-config (= 15.7.32)
|
222
|
+
chef-utils (= 15.7.32)
|
221
223
|
chef-zero (>= 14.0.11)
|
222
224
|
diff-lcs (~> 1.2, >= 1.2.4)
|
223
225
|
ed25519 (~> 1.2)
|
@@ -244,12 +246,12 @@ GEM
|
|
244
246
|
train-winrm (>= 0.2.5)
|
245
247
|
tty-screen (~> 0.6)
|
246
248
|
uuidtools (~> 2.1.5)
|
247
|
-
chef (15.
|
249
|
+
chef (15.7.32-universal-mingw32)
|
248
250
|
addressable
|
249
251
|
bcrypt_pbkdf (~> 1.0)
|
250
252
|
bundler (>= 1.10)
|
251
|
-
chef-config (= 15.
|
252
|
-
chef-utils (= 15.
|
253
|
+
chef-config (= 15.7.32)
|
254
|
+
chef-utils (= 15.7.32)
|
253
255
|
chef-zero (>= 14.0.11)
|
254
256
|
diff-lcs (~> 1.2, >= 1.2.4)
|
255
257
|
ed25519 (~> 1.2)
|
@@ -288,47 +290,33 @@ GEM
|
|
288
290
|
win32-service (>= 2.1.2, < 3.0)
|
289
291
|
win32-taskscheduler (~> 2.0)
|
290
292
|
wmi-lite (~> 1.0)
|
291
|
-
chef-api (0.10.
|
293
|
+
chef-api (0.10.2)
|
292
294
|
logify (~> 0.1)
|
293
295
|
mime-types
|
294
|
-
chef-
|
295
|
-
chef (
|
296
|
-
|
297
|
-
chef-telemetry
|
298
|
-
license-acceptance (~> 1.0, >= 1.0.11)
|
299
|
-
mixlib-cli
|
300
|
-
mixlib-config
|
301
|
-
mixlib-install
|
302
|
-
mixlib-log
|
303
|
-
pastel
|
304
|
-
r18n-desktop
|
305
|
-
toml-rb
|
306
|
-
train
|
307
|
-
tty-spinner
|
308
|
-
chef-bin (15.5.17)
|
309
|
-
chef (= 15.5.17)
|
310
|
-
chef-config (15.5.17)
|
296
|
+
chef-bin (15.7.32)
|
297
|
+
chef (= 15.7.32)
|
298
|
+
chef-config (15.7.32)
|
311
299
|
addressable
|
312
|
-
chef-utils (= 15.
|
300
|
+
chef-utils (= 15.7.32)
|
313
301
|
fuzzyurl
|
314
302
|
mixlib-config (>= 2.2.12, < 4.0)
|
315
303
|
mixlib-shellout (>= 2.0, < 4.0)
|
316
304
|
tomlrb (~> 1.2)
|
317
305
|
chef-sugar (5.1.9)
|
318
|
-
chef-telemetry (0.
|
306
|
+
chef-telemetry (1.0.2)
|
319
307
|
chef-config
|
320
308
|
concurrent-ruby (~> 1.0)
|
321
309
|
ffi-yajl (~> 2.2)
|
322
310
|
http (~> 2.2)
|
323
|
-
chef-utils (15.
|
324
|
-
chef-vault (
|
325
|
-
chef-zero (14.0.
|
311
|
+
chef-utils (15.7.32)
|
312
|
+
chef-vault (4.0.1)
|
313
|
+
chef-zero (14.0.17)
|
326
314
|
ffi-yajl (~> 2.2)
|
327
315
|
hashie (>= 2.0, < 4.0)
|
328
316
|
mixlib-log (>= 2.0, < 4.0)
|
329
317
|
rack (~> 2.0, >= 2.0.6)
|
330
318
|
uuidtools (~> 2.1)
|
331
|
-
cheffish (14.0.
|
319
|
+
cheffish (14.0.13)
|
332
320
|
chef-zero (~> 14.0)
|
333
321
|
net-ssh
|
334
322
|
chefspec (7.4.0)
|
@@ -337,7 +325,6 @@ GEM
|
|
337
325
|
rspec (~> 3.0)
|
338
326
|
chefstyle (0.14.0)
|
339
327
|
rubocop (= 0.75.1)
|
340
|
-
citrus (3.0.2)
|
341
328
|
cleanroom (1.0.0)
|
342
329
|
coderay (1.1.2)
|
343
330
|
coercible (1.0.0)
|
@@ -345,7 +332,7 @@ GEM
|
|
345
332
|
concurrent-ruby (1.1.5)
|
346
333
|
cookbook-omnifetch (0.9.0)
|
347
334
|
mixlib-archive (>= 0.4, < 2.0)
|
348
|
-
cookstyle (5.
|
335
|
+
cookstyle (5.20.0)
|
349
336
|
rubocop (= 0.75.1)
|
350
337
|
cucumber (3.1.2)
|
351
338
|
builder (>= 2.1.2)
|
@@ -382,7 +369,7 @@ GEM
|
|
382
369
|
multi_json
|
383
370
|
domain_name (0.5.20190701)
|
384
371
|
unf (>= 0.0.5, < 1.0.0)
|
385
|
-
droplet_kit (3.
|
372
|
+
droplet_kit (3.5.1)
|
386
373
|
faraday (~> 0.15)
|
387
374
|
kartograph (~> 0.2.3)
|
388
375
|
resource_kit (~> 0.1.5)
|
@@ -392,20 +379,20 @@ GEM
|
|
392
379
|
equatable (0.6.1)
|
393
380
|
erubi (1.9.0)
|
394
381
|
erubis (2.7.0)
|
395
|
-
excon (0.
|
396
|
-
faraday (0.17.
|
382
|
+
excon (0.72.0)
|
383
|
+
faraday (0.17.3)
|
397
384
|
multipart-post (>= 1.2, < 3)
|
398
385
|
faraday-cookie_jar (0.0.6)
|
399
386
|
faraday (>= 0.7.4)
|
400
387
|
http-cookie (~> 1.0.0)
|
401
|
-
faraday_middleware (0.
|
388
|
+
faraday_middleware (0.14.0)
|
402
389
|
faraday (>= 0.7.4, < 1.0)
|
403
390
|
fauxhai (7.4.0)
|
404
391
|
net-ssh
|
405
|
-
ffi (1.
|
406
|
-
ffi (1.
|
407
|
-
ffi (1.
|
408
|
-
ffi-libarchive (0.
|
392
|
+
ffi (1.12.1)
|
393
|
+
ffi (1.12.1-x64-mingw32)
|
394
|
+
ffi (1.12.1-x86-mingw32)
|
395
|
+
ffi-libarchive (1.0.0)
|
409
396
|
ffi (~> 1.0)
|
410
397
|
ffi-rzmq (2.0.7)
|
411
398
|
ffi-rzmq-core (>= 1.0.7)
|
@@ -413,7 +400,7 @@ GEM
|
|
413
400
|
ffi
|
414
401
|
ffi-win32-extensions (1.0.3)
|
415
402
|
ffi
|
416
|
-
ffi-yajl (2.3.
|
403
|
+
ffi-yajl (2.3.3)
|
417
404
|
libyajl2 (~> 1.2)
|
418
405
|
filesize (0.2.0)
|
419
406
|
foodcritic (16.2.0)
|
@@ -471,15 +458,16 @@ GEM
|
|
471
458
|
http-form_data (1.0.3)
|
472
459
|
http_parser.rb (0.6.0)
|
473
460
|
httpclient (2.8.3)
|
474
|
-
i18n (1.
|
461
|
+
i18n (1.8.2)
|
475
462
|
concurrent-ruby (~> 1.0)
|
476
463
|
ice_nine (0.11.2)
|
477
464
|
inifile (3.0.0)
|
478
465
|
iniparse (1.4.4)
|
479
|
-
inspec (4.18.
|
466
|
+
inspec (4.18.51)
|
480
467
|
addressable (~> 2.4)
|
468
|
+
chef-telemetry (~> 1.0)
|
481
469
|
faraday (>= 0.9.0)
|
482
|
-
faraday_middleware (~> 0.12
|
470
|
+
faraday_middleware (~> 0.12)
|
483
471
|
hashie (~> 3.4)
|
484
472
|
htmlentities
|
485
473
|
json-schema (~> 2.8)
|
@@ -490,7 +478,7 @@ GEM
|
|
490
478
|
parallel (~> 1.9)
|
491
479
|
parslet (~> 1.5)
|
492
480
|
pry (~> 0)
|
493
|
-
rspec (~> 3.
|
481
|
+
rspec (~> 3.9)
|
494
482
|
rspec-its (~> 1.2)
|
495
483
|
rubyzip (~> 1.2, >= 1.2.2)
|
496
484
|
semverse
|
@@ -504,38 +492,38 @@ GEM
|
|
504
492
|
train-winrm (~> 0.2)
|
505
493
|
tty-prompt (~> 0.17)
|
506
494
|
tty-table (~> 0.10)
|
507
|
-
inspec-bin (4.18.
|
508
|
-
inspec (= 4.18.
|
495
|
+
inspec-bin (4.18.51)
|
496
|
+
inspec (= 4.18.51)
|
509
497
|
ipaddress (0.8.3)
|
510
498
|
iso8601 (0.12.1)
|
511
499
|
jaro_winkler (1.5.4)
|
512
500
|
jmespath (1.4.0)
|
513
|
-
json (2.
|
501
|
+
json (2.3.0)
|
514
502
|
json-schema (2.8.1)
|
515
503
|
addressable (>= 2.4)
|
516
504
|
jwt (2.2.1)
|
517
505
|
kartograph (0.2.7)
|
518
|
-
kitchen-azurerm (0.
|
506
|
+
kitchen-azurerm (0.15.1)
|
519
507
|
azure_mgmt_network (~> 0.18, >= 0.18.2)
|
520
508
|
azure_mgmt_resources (~> 0.17, >= 0.17.2)
|
521
509
|
inifile (~> 3.0, >= 3.0.0)
|
522
|
-
sshkey (
|
510
|
+
sshkey (>= 1.0.0, < 3)
|
523
511
|
kitchen-digitalocean (0.10.5)
|
524
512
|
droplet_kit (>= 2.8, < 4.0)
|
525
513
|
test-kitchen (>= 1.17, < 3)
|
526
|
-
kitchen-dokken (2.8.
|
514
|
+
kitchen-dokken (2.8.1)
|
527
515
|
docker-api (~> 1.33)
|
528
516
|
lockfile (~> 2.1)
|
529
517
|
test-kitchen (>= 1.15, < 3)
|
530
|
-
kitchen-ec2 (3.
|
518
|
+
kitchen-ec2 (3.3.0)
|
531
519
|
aws-sdk-ec2 (~> 1.0)
|
532
520
|
excon
|
533
521
|
multi_json
|
534
522
|
retryable (>= 2.0, < 4.0)
|
535
523
|
test-kitchen (>= 1.4.1, < 3)
|
536
|
-
kitchen-google (2.0.
|
524
|
+
kitchen-google (2.0.3)
|
537
525
|
gcewinpass (~> 1.1)
|
538
|
-
google-api-client (>= 0.23.9, < 0.
|
526
|
+
google-api-client (>= 0.23.9, < 0.36.0)
|
539
527
|
test-kitchen
|
540
528
|
kitchen-hyperv (0.5.3)
|
541
529
|
test-kitchen (>= 1.4, < 3)
|
@@ -543,10 +531,10 @@ GEM
|
|
543
531
|
hashie (~> 3.4)
|
544
532
|
inspec (>= 1.47, < 5.0)
|
545
533
|
test-kitchen (>= 1.6, < 3)
|
546
|
-
kitchen-vagrant (1.6.
|
534
|
+
kitchen-vagrant (1.6.1)
|
547
535
|
test-kitchen (>= 1.4, < 3)
|
548
|
-
knife-acl (1.0.
|
549
|
-
knife-azure (2.0.
|
536
|
+
knife-acl (1.0.6)
|
537
|
+
knife-azure (2.0.6)
|
550
538
|
azure_mgmt_compute (~> 0.18, >= 0.18.3)
|
551
539
|
azure_mgmt_network (~> 0.18, >= 0.18.2)
|
552
540
|
azure_mgmt_resources (~> 0.17, >= 0.17.2)
|
@@ -557,35 +545,35 @@ GEM
|
|
557
545
|
ipaddress
|
558
546
|
listen (~> 3.1)
|
559
547
|
nokogiri (>= 1.5.5)
|
560
|
-
knife-cloud (2.0.
|
548
|
+
knife-cloud (2.0.5)
|
561
549
|
chef (>= 15.0)
|
562
550
|
excon (>= 0.50)
|
563
551
|
mixlib-shellout
|
564
|
-
knife-ec2 (1.0.
|
552
|
+
knife-ec2 (1.0.28)
|
565
553
|
aws-sdk-ec2 (~> 1.95)
|
566
554
|
aws-sdk-s3 (~> 1.43)
|
567
555
|
chef (>= 15.1)
|
568
|
-
knife-google (4.2.
|
556
|
+
knife-google (4.2.4)
|
569
557
|
gcewinpass (~> 1.1)
|
570
558
|
google-api-client (>= 0.23.9, < 0.35.0)
|
571
559
|
knife-cloud (>= 2.0.0)
|
572
560
|
knife-opc (0.4.1)
|
573
|
-
knife-push (1.1.
|
561
|
+
knife-push (1.1.5)
|
574
562
|
chef (>= 13.0)
|
575
563
|
knife-spork (1.7.2)
|
576
564
|
app_conf (>= 0.4.0)
|
577
565
|
chef (>= 11.0.0)
|
578
566
|
diffy (>= 3.0.1)
|
579
567
|
git (>= 1.2.5)
|
580
|
-
knife-tidy (2.0.
|
581
|
-
knife-vsphere (4.0.
|
568
|
+
knife-tidy (2.0.9)
|
569
|
+
knife-vsphere (4.0.8)
|
582
570
|
chef (>= 15.1)
|
583
571
|
chef-bin (>= 15.1)
|
584
572
|
chef-vault (>= 2.6.0)
|
585
573
|
filesize (>= 0.1.1, < 0.3.0)
|
586
574
|
netaddr (~> 1.5)
|
587
575
|
rbvmomi (>= 1.8, < 3.0)
|
588
|
-
knife-windows (3.0.
|
576
|
+
knife-windows (3.0.6)
|
589
577
|
chef (>= 15.0)
|
590
578
|
winrm (~> 2.1)
|
591
579
|
winrm-elevated (~> 1.0)
|
@@ -595,7 +583,7 @@ GEM
|
|
595
583
|
tomlrb (~> 1.2)
|
596
584
|
tty-box (~> 0.3)
|
597
585
|
tty-prompt (~> 0.18)
|
598
|
-
listen (3.2.
|
586
|
+
listen (3.2.1)
|
599
587
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
600
588
|
rb-inotify (~> 0.9, >= 0.9.10)
|
601
589
|
little-plugger (1.1.4)
|
@@ -604,36 +592,36 @@ GEM
|
|
604
592
|
little-plugger (~> 1.1)
|
605
593
|
multi_json (~> 1.10)
|
606
594
|
logify (0.2.0)
|
607
|
-
lumberjack (1.
|
608
|
-
memoist (0.16.
|
595
|
+
lumberjack (1.2.1)
|
596
|
+
memoist (0.16.2)
|
609
597
|
method_source (0.9.2)
|
610
|
-
mime-types (3.3)
|
598
|
+
mime-types (3.3.1)
|
611
599
|
mime-types-data (~> 3.2015)
|
612
600
|
mime-types-data (3.2019.1009)
|
613
601
|
mini_mime (1.0.2)
|
614
602
|
mini_portile2 (2.4.0)
|
615
603
|
minitar (0.9)
|
616
604
|
minitest (5.10.3)
|
617
|
-
mixlib-archive (1.0.
|
605
|
+
mixlib-archive (1.0.5)
|
618
606
|
mixlib-log
|
619
|
-
mixlib-archive (1.0.
|
607
|
+
mixlib-archive (1.0.5-universal-mingw32)
|
620
608
|
mixlib-log
|
621
|
-
mixlib-authentication (3.0.
|
622
|
-
mixlib-cli (2.1.
|
623
|
-
mixlib-config (3.0.
|
609
|
+
mixlib-authentication (3.0.6)
|
610
|
+
mixlib-cli (2.1.5)
|
611
|
+
mixlib-config (3.0.6)
|
624
612
|
tomlrb
|
625
|
-
mixlib-install (3.11.
|
613
|
+
mixlib-install (3.11.26)
|
626
614
|
mixlib-shellout
|
627
615
|
mixlib-versioning
|
628
616
|
thor
|
629
|
-
mixlib-log (3.0.
|
630
|
-
mixlib-shellout (3.0.
|
631
|
-
mixlib-shellout (3.0.
|
617
|
+
mixlib-log (3.0.8)
|
618
|
+
mixlib-shellout (3.0.9)
|
619
|
+
mixlib-shellout (3.0.9-universal-mingw32)
|
632
620
|
win32-process (~> 0.8.2)
|
633
621
|
wmi-lite (~> 1.0)
|
634
|
-
mixlib-versioning (1.2.
|
622
|
+
mixlib-versioning (1.2.12)
|
635
623
|
molinillo (0.6.6)
|
636
|
-
ms_rest (0.7.
|
624
|
+
ms_rest (0.7.5)
|
637
625
|
concurrent-ruby (~> 1.0)
|
638
626
|
faraday (~> 0.9)
|
639
627
|
timeliness (~> 0.3.10)
|
@@ -659,19 +647,20 @@ GEM
|
|
659
647
|
net-ssh (>= 2.6.5)
|
660
648
|
net-ssh-gateway (>= 1.2.0)
|
661
649
|
netaddr (1.5.1)
|
662
|
-
nokogiri (1.10.
|
650
|
+
nokogiri (1.10.7)
|
663
651
|
mini_portile2 (~> 2.4.0)
|
664
|
-
nokogiri (1.10.
|
652
|
+
nokogiri (1.10.7-x64-mingw32)
|
665
653
|
mini_portile2 (~> 2.4.0)
|
666
|
-
nokogiri (1.10.
|
654
|
+
nokogiri (1.10.7-x86-mingw32)
|
667
655
|
mini_portile2 (~> 2.4.0)
|
668
656
|
nori (2.6.0)
|
669
657
|
notiffany (0.1.3)
|
670
658
|
nenv (~> 0.1)
|
671
659
|
shellany (~> 0.0)
|
672
|
-
octokit (4.
|
660
|
+
octokit (4.15.0)
|
661
|
+
faraday (>= 0.9)
|
673
662
|
sawyer (~> 0.8.0, >= 0.5.3)
|
674
|
-
ohai (15.
|
663
|
+
ohai (15.7.4)
|
675
664
|
chef-config (>= 12.8, < 16)
|
676
665
|
ffi (~> 1.9)
|
677
666
|
ffi-yajl (~> 2.2)
|
@@ -692,7 +681,7 @@ GEM
|
|
692
681
|
os (1.0.1)
|
693
682
|
paint (1.0.1)
|
694
683
|
parallel (1.19.1)
|
695
|
-
parser (2.
|
684
|
+
parser (2.7.0.2)
|
696
685
|
ast (~> 2.4.0)
|
697
686
|
parslet (1.8.2)
|
698
687
|
pastel (0.7.3)
|
@@ -704,7 +693,7 @@ GEM
|
|
704
693
|
pry (0.12.2)
|
705
694
|
coderay (~> 1.1.0)
|
706
695
|
method_source (~> 0.9.0)
|
707
|
-
pry-byebug (3.
|
696
|
+
pry-byebug (3.8.0)
|
708
697
|
byebug (~> 11.0)
|
709
698
|
pry (~> 0.10)
|
710
699
|
pry-remote (0.1.8)
|
@@ -714,17 +703,14 @@ GEM
|
|
714
703
|
binding_of_caller (>= 0.7)
|
715
704
|
pry (>= 0.9.11)
|
716
705
|
public_suffix (3.1.1)
|
717
|
-
|
718
|
-
r18n-desktop (3.2.0)
|
719
|
-
r18n-core (= 3.2.0)
|
720
|
-
rack (2.0.7)
|
706
|
+
rack (2.1.2)
|
721
707
|
rainbow (3.0.0)
|
722
708
|
rake (12.3.2)
|
723
709
|
rb-fsevent (0.10.3)
|
724
|
-
rb-inotify (0.10.
|
710
|
+
rb-inotify (0.10.1)
|
725
711
|
ffi (~> 1.0)
|
726
712
|
rb-readline (0.5.5)
|
727
|
-
rbvmomi (2.
|
713
|
+
rbvmomi (2.3.0)
|
728
714
|
builder (~> 3.0)
|
729
715
|
json (>= 1.8)
|
730
716
|
nokogiri (~> 1.5)
|
@@ -739,22 +725,22 @@ GEM
|
|
739
725
|
addressable (>= 2.3.6, < 3.0.0)
|
740
726
|
retriable (3.1.2)
|
741
727
|
retryable (3.0.5)
|
742
|
-
rspec (3.
|
743
|
-
rspec-core (~> 3.
|
744
|
-
rspec-expectations (~> 3.
|
745
|
-
rspec-mocks (~> 3.
|
746
|
-
rspec-core (3.
|
747
|
-
rspec-support (~> 3.
|
748
|
-
rspec-expectations (3.
|
728
|
+
rspec (3.9.0)
|
729
|
+
rspec-core (~> 3.9.0)
|
730
|
+
rspec-expectations (~> 3.9.0)
|
731
|
+
rspec-mocks (~> 3.9.0)
|
732
|
+
rspec-core (3.9.1)
|
733
|
+
rspec-support (~> 3.9.1)
|
734
|
+
rspec-expectations (3.9.0)
|
749
735
|
diff-lcs (>= 1.2.0, < 2.0)
|
750
|
-
rspec-support (~> 3.
|
736
|
+
rspec-support (~> 3.9.0)
|
751
737
|
rspec-its (1.3.0)
|
752
738
|
rspec-core (>= 3.0.0)
|
753
739
|
rspec-expectations (>= 3.0.0)
|
754
|
-
rspec-mocks (3.
|
740
|
+
rspec-mocks (3.9.1)
|
755
741
|
diff-lcs (>= 1.2.0, < 2.0)
|
756
|
-
rspec-support (~> 3.
|
757
|
-
rspec-support (3.
|
742
|
+
rspec-support (~> 3.9.0)
|
743
|
+
rspec-support (3.9.2)
|
758
744
|
rubocop (0.75.1)
|
759
745
|
jaro_winkler (~> 1.5.1)
|
760
746
|
parallel (~> 1.10)
|
@@ -762,7 +748,7 @@ GEM
|
|
762
748
|
rainbow (>= 2.2.2, < 4.0)
|
763
749
|
ruby-progressbar (~> 1.7)
|
764
750
|
unicode-display_width (>= 1.4.0, < 1.7)
|
765
|
-
ruby-prof (1.
|
751
|
+
ruby-prof (1.2.0)
|
766
752
|
ruby-progressbar (1.10.1)
|
767
753
|
ruby-shadow (2.5.0)
|
768
754
|
rubyntlm (0.6.2)
|
@@ -779,10 +765,10 @@ GEM
|
|
779
765
|
jwt (>= 1.5, < 3.0)
|
780
766
|
multi_json (~> 1.10)
|
781
767
|
slop (3.6.0)
|
782
|
-
solve (4.0.
|
768
|
+
solve (4.0.3)
|
783
769
|
molinillo (~> 0.6)
|
784
770
|
semverse (>= 1.1, < 4.0)
|
785
|
-
sshkey (
|
771
|
+
sshkey (2.0.0)
|
786
772
|
sslshake (1.3.0)
|
787
773
|
stove (7.1.5)
|
788
774
|
chef-api (~> 0.5)
|
@@ -793,6 +779,7 @@ GEM
|
|
793
779
|
unicode_utils (~> 1.4)
|
794
780
|
strings-ansi (0.2.0)
|
795
781
|
structured_warnings (0.4.0)
|
782
|
+
sync (0.5.0)
|
796
783
|
syslog-logger (1.6.8)
|
797
784
|
systemu (2.6.5)
|
798
785
|
term-ansicolor (1.7.1)
|
@@ -813,15 +800,15 @@ GEM
|
|
813
800
|
thor (0.20.3)
|
814
801
|
thread_safe (0.3.6)
|
815
802
|
timeliness (0.3.10)
|
816
|
-
tins (1.
|
817
|
-
|
818
|
-
citrus (~> 3.0, > 3.0)
|
803
|
+
tins (1.24.0)
|
804
|
+
sync
|
819
805
|
tomlrb (1.2.9)
|
820
|
-
train (3.
|
806
|
+
train (3.2.0)
|
821
807
|
activesupport (~> 5.2.3)
|
822
808
|
azure_graph_rbac (~> 0.16)
|
823
809
|
azure_mgmt_key_vault (~> 0.17)
|
824
810
|
azure_mgmt_resources (~> 0.15)
|
811
|
+
azure_mgmt_security (~> 0.18)
|
825
812
|
docker-api (~> 1.26)
|
826
813
|
google-api-client (>= 0.23.9, < 0.35.0)
|
827
814
|
googleauth (>= 0.6.6, < 0.11.0)
|
@@ -830,21 +817,21 @@ GEM
|
|
830
817
|
mixlib-shellout (>= 2.0, < 4.0)
|
831
818
|
net-scp (>= 1.2, < 3.0)
|
832
819
|
net-ssh (>= 2.9, < 6.0)
|
833
|
-
train-aws (0.1.
|
834
|
-
aws-sdk-apigateway (~> 1)
|
835
|
-
aws-sdk-apigatewayv2 (~> 1)
|
836
|
-
aws-sdk-athena (~> 1)
|
820
|
+
train-aws (0.1.15)
|
821
|
+
aws-sdk-apigateway (~> 1.0)
|
822
|
+
aws-sdk-apigatewayv2 (~> 1.0)
|
823
|
+
aws-sdk-athena (~> 1.0)
|
837
824
|
aws-sdk-autoscaling (~> 1.22.0)
|
838
|
-
aws-sdk-budgets (~> 1)
|
839
|
-
aws-sdk-cloudformation (~> 1)
|
840
|
-
aws-sdk-cloudhsm (~> 1)
|
841
|
-
aws-sdk-cloudhsmv2 (~> 1)
|
825
|
+
aws-sdk-budgets (~> 1.0)
|
826
|
+
aws-sdk-cloudformation (~> 1.0)
|
827
|
+
aws-sdk-cloudhsm (~> 1.0)
|
828
|
+
aws-sdk-cloudhsmv2 (~> 1.0)
|
842
829
|
aws-sdk-cloudtrail (~> 1.8)
|
843
830
|
aws-sdk-cloudwatch (~> 1.13)
|
844
831
|
aws-sdk-cloudwatchlogs (~> 1.13)
|
845
|
-
aws-sdk-codecommit (~> 1)
|
846
|
-
aws-sdk-codedeploy (~> 1)
|
847
|
-
aws-sdk-codepipeline (~> 1)
|
832
|
+
aws-sdk-codecommit (~> 1.0)
|
833
|
+
aws-sdk-codedeploy (~> 1.0)
|
834
|
+
aws-sdk-codepipeline (~> 1.0)
|
848
835
|
aws-sdk-configservice (~> 1.21)
|
849
836
|
aws-sdk-core (~> 3.0)
|
850
837
|
aws-sdk-costandusagereportservice (~> 1.6)
|
@@ -853,37 +840,37 @@ GEM
|
|
853
840
|
aws-sdk-ecr (~> 1.18)
|
854
841
|
aws-sdk-ecs (~> 1.30)
|
855
842
|
aws-sdk-eks (~> 1.9)
|
856
|
-
aws-sdk-elasticache (~> 1)
|
857
|
-
aws-sdk-elasticbeanstalk (~> 1)
|
843
|
+
aws-sdk-elasticache (~> 1.0)
|
844
|
+
aws-sdk-elasticbeanstalk (~> 1.0)
|
858
845
|
aws-sdk-elasticloadbalancing (~> 1.8)
|
859
|
-
aws-sdk-elasticloadbalancingv2 (~> 1)
|
860
|
-
aws-sdk-elasticsearchservice (~> 1)
|
861
|
-
aws-sdk-firehose (~> 1)
|
846
|
+
aws-sdk-elasticloadbalancingv2 (~> 1.0)
|
847
|
+
aws-sdk-elasticsearchservice (~> 1.0)
|
848
|
+
aws-sdk-firehose (~> 1.0)
|
862
849
|
aws-sdk-iam (~> 1.13)
|
863
|
-
aws-sdk-kafka (~> 1)
|
864
|
-
aws-sdk-kinesis (~> 1)
|
850
|
+
aws-sdk-kafka (~> 1.0)
|
851
|
+
aws-sdk-kinesis (~> 1.0)
|
865
852
|
aws-sdk-kms (~> 1.13)
|
866
|
-
aws-sdk-lambda (~> 1)
|
853
|
+
aws-sdk-lambda (~> 1.0)
|
867
854
|
aws-sdk-organizations (~> 1.17.0)
|
868
855
|
aws-sdk-rds (~> 1.43)
|
869
|
-
aws-sdk-redshift (~> 1)
|
870
|
-
aws-sdk-route53 (~> 1)
|
871
|
-
aws-sdk-route53domains (~> 1)
|
872
|
-
aws-sdk-route53resolver (~> 1)
|
856
|
+
aws-sdk-redshift (~> 1.0)
|
857
|
+
aws-sdk-route53 (~> 1.0)
|
858
|
+
aws-sdk-route53domains (~> 1.0)
|
859
|
+
aws-sdk-route53resolver (~> 1.0)
|
873
860
|
aws-sdk-s3 (~> 1.30)
|
874
|
-
aws-sdk-securityhub (~> 1)
|
875
|
-
aws-sdk-ses (~> 1)
|
876
|
-
aws-sdk-sms (~> 1)
|
861
|
+
aws-sdk-securityhub (~> 1.0)
|
862
|
+
aws-sdk-ses (~> 1.0)
|
863
|
+
aws-sdk-sms (~> 1.0)
|
877
864
|
aws-sdk-sns (~> 1.9)
|
878
865
|
aws-sdk-sqs (~> 1.10)
|
879
|
-
aws-sdk-ssm (~> 1)
|
880
|
-
train-core (3.
|
866
|
+
aws-sdk-ssm (~> 1.0)
|
867
|
+
train-core (3.2.0)
|
881
868
|
json (>= 1.8, < 3.0)
|
882
869
|
mixlib-shellout (>= 2.0, < 4.0)
|
883
870
|
net-scp (>= 1.2, < 3.0)
|
884
871
|
net-ssh (>= 2.9, < 6.0)
|
885
872
|
train-habitat (0.2.13)
|
886
|
-
train-winrm (0.2.
|
873
|
+
train-winrm (0.2.6)
|
887
874
|
winrm (~> 2.0)
|
888
875
|
winrm-fs (~> 1.0)
|
889
876
|
treetop (1.6.10)
|
@@ -892,8 +879,8 @@ GEM
|
|
892
879
|
pastel (~> 0.7.2)
|
893
880
|
strings (~> 0.1.6)
|
894
881
|
tty-cursor (~> 0.7)
|
895
|
-
tty-color (0.5.
|
896
|
-
tty-cursor (0.7.
|
882
|
+
tty-color (0.5.1)
|
883
|
+
tty-cursor (0.7.1)
|
897
884
|
tty-prompt (0.20.0)
|
898
885
|
necromancer (~> 0.5.0)
|
899
886
|
pastel (~> 0.7.0)
|
@@ -903,15 +890,13 @@ GEM
|
|
903
890
|
tty-screen (~> 0.7)
|
904
891
|
wisper (~> 2.0.0)
|
905
892
|
tty-screen (0.7.0)
|
906
|
-
tty-spinner (0.9.1)
|
907
|
-
tty-cursor (~> 0.7)
|
908
893
|
tty-table (0.11.0)
|
909
894
|
equatable (~> 0.6)
|
910
895
|
necromancer (~> 0.5)
|
911
896
|
pastel (~> 0.7.2)
|
912
897
|
strings (~> 0.1.5)
|
913
898
|
tty-screen (~> 0.7)
|
914
|
-
tzinfo (1.2.
|
899
|
+
tzinfo (1.2.6)
|
915
900
|
thread_safe (~> 0.1)
|
916
901
|
uber (0.1.0)
|
917
902
|
unf (0.1.4)
|
@@ -919,7 +904,7 @@ GEM
|
|
919
904
|
unf_ext (0.0.7.2)
|
920
905
|
unf_ext (0.0.7.2-x64-mingw32)
|
921
906
|
unf_ext (0.0.7.2-x86-mingw32)
|
922
|
-
unicode-display_width (1.6.
|
907
|
+
unicode-display_width (1.6.1)
|
923
908
|
unicode_utils (1.4.0)
|
924
909
|
uuidtools (2.1.5)
|
925
910
|
virtus (1.0.5)
|
@@ -928,7 +913,7 @@ GEM
|
|
928
913
|
descendants_tracker (~> 0.0, >= 0.0.3)
|
929
914
|
equalizer (~> 0.0, >= 0.0.9)
|
930
915
|
win32-api (1.5.3-universal-mingw32)
|
931
|
-
win32-certstore (0.
|
916
|
+
win32-certstore (0.4.0)
|
932
917
|
ffi
|
933
918
|
mixlib-shellout
|
934
919
|
win32-dir (0.5.1)
|
@@ -956,7 +941,7 @@ GEM
|
|
956
941
|
windows-pr (1.2.6)
|
957
942
|
win32-api (>= 1.4.5)
|
958
943
|
windows-api (>= 0.4.0)
|
959
|
-
winrm (2.3.
|
944
|
+
winrm (2.3.4)
|
960
945
|
builder (>= 2.1.2)
|
961
946
|
erubi (~> 1.8)
|
962
947
|
gssapi (~> 1.2)
|
@@ -975,8 +960,8 @@ GEM
|
|
975
960
|
rubyzip (~> 1.1)
|
976
961
|
winrm (~> 2.0)
|
977
962
|
wisper (2.0.1)
|
978
|
-
wmi-lite (1.0.
|
979
|
-
yard (0.9.
|
963
|
+
wmi-lite (1.0.5)
|
964
|
+
yard (0.9.24)
|
980
965
|
|
981
966
|
PLATFORMS
|
982
967
|
ruby
|
@@ -987,11 +972,10 @@ DEPENDENCIES
|
|
987
972
|
appbundler
|
988
973
|
artifactory
|
989
974
|
bcrypt_pbkdf
|
990
|
-
berkshelf (>= 7.0.
|
975
|
+
berkshelf (>= 7.0.9)
|
991
976
|
bundler
|
992
|
-
chef (= 15.
|
993
|
-
chef-
|
994
|
-
chef-bin (= 15.5.17)
|
977
|
+
chef (= 15.7.32)
|
978
|
+
chef-bin (= 15.7.32)
|
995
979
|
chef-dk!
|
996
980
|
chef-sugar
|
997
981
|
chef-vault (>= 3.4.1)
|
@@ -1004,16 +988,16 @@ DEPENDENCIES
|
|
1004
988
|
dep-selector-libgecode
|
1005
989
|
dep_selector
|
1006
990
|
ed25519
|
1007
|
-
fauxhai (~> 7.
|
991
|
+
fauxhai (~> 7.4)
|
1008
992
|
ffi-libarchive
|
1009
993
|
ffi-rzmq-core
|
1010
994
|
foodcritic (>= 16.0)
|
1011
995
|
guard
|
1012
|
-
inspec (~> 4.
|
1013
|
-
inspec-bin (~> 4.
|
996
|
+
inspec (~> 4.18)
|
997
|
+
inspec-bin (~> 4.18)
|
1014
998
|
kitchen-azurerm (>= 0.14)
|
1015
999
|
kitchen-digitalocean (>= 0.10.0)
|
1016
|
-
kitchen-dokken (>= 2.
|
1000
|
+
kitchen-dokken (>= 2.8.1)
|
1017
1001
|
kitchen-ec2 (>= 3.0, < 4)
|
1018
1002
|
kitchen-google (>= 2.0.0)
|
1019
1003
|
kitchen-hyperv (>= 0.5.1)
|
@@ -1031,12 +1015,12 @@ DEPENDENCIES
|
|
1031
1015
|
knife-windows (>= 3.0)
|
1032
1016
|
listen
|
1033
1017
|
minitest (<= 5.10.3)
|
1034
|
-
mixlib-archive (>= 0
|
1018
|
+
mixlib-archive (>= 1.0)
|
1035
1019
|
mixlib-install
|
1036
1020
|
mixlib-versioning
|
1037
1021
|
net-ssh (>= 4.2.0)
|
1038
1022
|
nokogiri
|
1039
|
-
ohai (>=
|
1023
|
+
ohai (>= 15)
|
1040
1024
|
opscode-pushy-client (>= 2.99)
|
1041
1025
|
pry
|
1042
1026
|
pry-byebug
|
@@ -1053,6 +1037,8 @@ DEPENDENCIES
|
|
1053
1037
|
ruby-shadow
|
1054
1038
|
stove (>= 7.1.5)
|
1055
1039
|
test-kitchen (>= 2.0)
|
1040
|
+
train (= 3.2.0)
|
1041
|
+
train-core (= 3.2.0)
|
1056
1042
|
win32-api
|
1057
1043
|
win32-dir
|
1058
1044
|
win32-event
|
data/Rakefile
CHANGED
@@ -49,7 +49,7 @@ namespace :style do
|
|
49
49
|
spec/unit/fixtures/local_path_cookbooks
|
50
50
|
})
|
51
51
|
|
52
|
-
desc "Run
|
52
|
+
desc "Run Cookstyle style checks"
|
53
53
|
RuboCop::RakeTask.new(:chefstyle) do |t|
|
54
54
|
t.requires = ["chefstyle"]
|
55
55
|
t.patterns = `rubocop --list-target-files`.split("\n").reject { |f| f =~ ignore_dirs }
|
@@ -58,20 +58,4 @@ namespace :style do
|
|
58
58
|
rescue LoadError => e
|
59
59
|
puts ">>> Gem load error: #{e}, omitting #{task.name}" unless ENV["CI"]
|
60
60
|
end
|
61
|
-
|
62
|
-
begin
|
63
|
-
require "foodcritic"
|
64
|
-
|
65
|
-
desc "Run Chef Cookbook (Foodcritic) style checks"
|
66
|
-
FoodCritic::Rake::LintTask.new(:foodcritic) do |t|
|
67
|
-
t.options = {
|
68
|
-
fail_tags: ["any"],
|
69
|
-
tags: ["~FC071", "~supermarket", "~FC031"],
|
70
|
-
cookbook_paths: ["lib/chef-dk/skeletons/code_generator"],
|
71
|
-
progress: true,
|
72
|
-
}
|
73
|
-
end
|
74
|
-
rescue LoadError => e
|
75
|
-
puts ">>> Gem load error: #{e}, omitting #{task.name}" unless ENV["CI"]
|
76
|
-
end
|
77
61
|
end
|
@@ -185,15 +185,6 @@ module ChefDK
|
|
185
185
|
end
|
186
186
|
end
|
187
187
|
|
188
|
-
add_component "chef-apply" do |c|
|
189
|
-
c.gem_base_dir = "chef-apply"
|
190
|
-
# c.unit_test do
|
191
|
-
# bundle_install_mutex.synchronize { sh("#{embedded_bin("bundle")} install") }
|
192
|
-
# sh("#{embedded_bin("bundle")} exec rspec")
|
193
|
-
# end
|
194
|
-
c.smoke_test { sh("#{bin("chef-run")} -v") }
|
195
|
-
end
|
196
|
-
|
197
188
|
add_component "foodcritic" do |c|
|
198
189
|
c.gem_base_dir = "foodcritic"
|
199
190
|
c.smoke_test { sh("#{embedded_bin("foodcritic --list")}") } # foodcritic -v exits with 2 so use --list which exits 0
|
@@ -129,7 +129,7 @@ delivery review
|
|
129
129
|
|
130
130
|
## FAQ
|
131
131
|
|
132
|
-
### Why don't I just run rspec and
|
132
|
+
### Why don't I just run rspec and cookstyle/chefspec on my local system?
|
133
133
|
|
134
134
|
An objection to the Test Kitchen approach is that it is much faster to run the unit, lint, and syntax commands for the project on the local system. That is totally true, and also totally valid. Do that for the really fast feedback loop. However, the dance we do with Test Kitchen brings a much higher degree of confidence in the changes we're making, that everything will run on the build nodes in Chef Workflow. We strongly encourage this approach before actually pushing the changes to Workflow.
|
135
135
|
|
@@ -11,13 +11,13 @@ directory dot_delivery_dir
|
|
11
11
|
|
12
12
|
cookbook_file config_json do
|
13
13
|
source 'delivery-config.json'
|
14
|
-
not_if { File.exist?(config_json) }
|
14
|
+
not_if { ::File.exist?(config_json) }
|
15
15
|
end
|
16
16
|
|
17
17
|
# Adding the delivery local-mode config
|
18
18
|
cookbook_file project_toml do
|
19
19
|
source 'delivery-project.toml'
|
20
|
-
not_if { File.exist?(project_toml) }
|
20
|
+
not_if { ::File.exist?(project_toml) }
|
21
21
|
end
|
22
22
|
|
23
23
|
generator_desc('Ensuring correct Workflow (Delivery) build cookbook content')
|
@@ -129,7 +129,7 @@ unless context.enable_workflow
|
|
129
129
|
# Adding the delivery local-mode config
|
130
130
|
cookbook_file "#{cookbook_dir}/.delivery/project.toml" do
|
131
131
|
source 'delivery-project.toml'
|
132
|
-
not_if { File.exist?("#{cookbook_dir}/.delivery/project.toml") }
|
132
|
+
not_if { ::File.exist?("#{cookbook_dir}/.delivery/project.toml") }
|
133
133
|
end
|
134
134
|
end
|
135
135
|
|
data/lib/chef-dk/version.rb
CHANGED
@@ -271,7 +271,7 @@ describe ChefDK::Command::GeneratorCommands::Cookbook do
|
|
271
271
|
# Cookbook:: build_cookbook
|
272
272
|
# Recipe:: publish
|
273
273
|
#
|
274
|
-
# Copyright::
|
274
|
+
# Copyright:: 2020, The Authors, All Rights Reserved.
|
275
275
|
|
276
276
|
include_recipe 'delivery-truck::publish'
|
277
277
|
CONFIG_DOT_JSON
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-dk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.7.73
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel DeLeo
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2020-01-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mixlib-cli
|