chef 11.18.6 → 11.18.12

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: aeac145f4a88a15b16443783a9664df18c57b049
4
+ data.tar.gz: da545474bde4606c850bc9222144d06550cae758
5
+ SHA512:
6
+ metadata.gz: 90cb5693062d94013f7f84e0f8469947e431d0289e1c27de0dec5a92fa1909abf694d2359c33477c1f3441af95d135314f6edd8bd94e169dcac04bf7e5558b6c
7
+ data.tar.gz: f01e3dfb49549d0feaecd456ba7c2f502c71667a2a32b1172d8097f59da61a677285cb4db4b6fee20cc0e30f209cdf8363925d4c598cc167595de2e767d90993
@@ -16,7 +16,7 @@
16
16
 
17
17
  class Chef
18
18
  CHEF_ROOT = File.dirname(File.expand_path(File.dirname(__FILE__)))
19
- VERSION = '11.18.6'
19
+ VERSION = '11.18.12'
20
20
  end
21
21
 
22
22
  # NOTE: the Chef::Version class is defined in version_class.rb
@@ -30,11 +30,11 @@ describe Chef::DSL::RebootPending, :windows_only do
30
30
  ohai
31
31
  end
32
32
 
33
- def registry_safe?
34
- !registry.value_exists?('HKLM\SYSTEM\CurrentControlSet\Control\Session Manager', { :name => 'PendingFileRenameOperations' }) ||
35
- !registry.key_exists?('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired') ||
36
- !registry.key_exists?('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired') ||
37
- !registry.key_exists?('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile')
33
+ def registry_unsafe?
34
+ registry.value_exists?('HKLM\SYSTEM\CurrentControlSet\Control\Session Manager', { :name => 'PendingFileRenameOperations' }) ||
35
+ registry.key_exists?('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired')
36
+ registry.key_exists?('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired') ||
37
+ registry.key_exists?('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile')
38
38
  end
39
39
 
40
40
  let(:node) { Chef::Node.new }
@@ -44,76 +44,78 @@ describe Chef::DSL::RebootPending, :windows_only do
44
44
  let(:recipe) { Chef::Recipe.new("a windows cookbook", "the windows recipe", run_context) }
45
45
  let(:registry) { Chef::Win32::Registry.new(run_context) }
46
46
 
47
- describe "reboot_pending?" do
47
+ pending "Can't safely test Registry entries" do
48
+ describe "reboot_pending?" do
48
49
 
49
- describe "when there is nothing to indicate a reboot is pending" do
50
- it "should return false" do
51
- pending "Found existing registry keys" unless registry_safe?
52
- expect(recipe.reboot_pending?).to be_false
50
+ describe "when there is nothing to indicate a reboot is pending" do
51
+ it "should return false" do
52
+ pending "Found existing registry keys" if registry_unsafe?
53
+ expect(recipe.reboot_pending?).to be_false
54
+ end
53
55
  end
54
- end
55
56
 
56
- describe 'HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations' do
57
- it "returns true if the registry value exists" do
58
- pending "Found existing registry keys" unless registry_safe?
59
- registry.set_value('HKLM\SYSTEM\CurrentControlSet\Control\Session Manager',
60
- { :name => 'PendingFileRenameOperations', :type => :multi_string, :data => ['\??\C:\foo.txt|\??\C:\bar.txt'] })
57
+ describe 'HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\PendingFileRenameOperations' do
58
+ it "returns true if the registry value exists" do
59
+ pending "Found existing registry keys" if registry_unsafe?
60
+ registry.set_value('HKLM\SYSTEM\CurrentControlSet\Control\Session Manager',
61
+ { :name => 'PendingFileRenameOperations', :type => :multi_string, :data => ['\??\C:\foo.txt|\??\C:\bar.txt'] })
61
62
 
62
- expect(recipe.reboot_pending?).to be_true
63
- end
63
+ expect(recipe.reboot_pending?).to be_true
64
+ end
64
65
 
65
- after do
66
- if registry_safe?
67
- registry.delete_value('HKLM\SYSTEM\CurrentControlSet\Control\Session Manager', { :name => 'PendingFileRenameOperations' })
66
+ after do
67
+ unless registry_unsafe?
68
+ registry.delete_value('HKLM\SYSTEM\CurrentControlSet\Control\Session Manager', { :name => 'PendingFileRenameOperations' })
69
+ end
68
70
  end
69
71
  end
70
- end
71
72
 
72
- describe 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired' do
73
- it "returns true if the registry key exists" do
74
- pending "Found existing registry keys" unless registry_safe?
75
- registry.create_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired', false)
73
+ describe 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired' do
74
+ it "returns true if the registry key exists" do
75
+ pending "Found existing registry keys" if registry_unsafe?
76
+ registry.create_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired', false)
76
77
 
77
- expect(recipe.reboot_pending?).to be_true
78
- end
78
+ expect(recipe.reboot_pending?).to be_true
79
+ end
79
80
 
80
- after do
81
- if registry_safe?
82
- registry.delete_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired', false)
81
+ after do
82
+ unless registry_unsafe?
83
+ registry.delete_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired', false)
84
+ end
83
85
  end
84
86
  end
85
- end
86
87
 
87
- describe 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired' do
88
- it "returns true if the registry key exists" do
89
- pending "Permissions are limited to 'TrustedInstaller' by default"
90
- pending "Found existing registry keys" unless registry_safe?
91
- registry.create_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired', false)
88
+ describe 'HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired' do
89
+ it "returns true if the registry key exists" do
90
+ pending "Permissions are limited to 'TrustedInstaller' by default"
91
+ pending "Found existing registry keys" if registry_unsafe?
92
+ registry.create_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired', false)
92
93
 
93
- expect(recipe.reboot_pending?).to be_true
94
- end
94
+ expect(recipe.reboot_pending?).to be_true
95
+ end
95
96
 
96
- after do
97
- if registry_safe?
98
- registry.delete_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired', false)
97
+ after do
98
+ unless registry_unsafe?
99
+ registry.delete_key('HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootRequired', false)
100
+ end
99
101
  end
100
102
  end
101
- end
102
103
 
103
- describe 'HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile\Flags' do
104
- it "returns true if the registry key exists" do
105
- pending "Found existing registry keys" unless registry_safe?
106
- registry.create_key('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile', true)
107
- registry.set_value('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile',
108
- { :name => 'Flags', :type => :dword, :data => 3 })
104
+ describe 'HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile\Flags' do
105
+ it "returns true if the registry key exists" do
106
+ pending "Found existing registry keys" if registry_unsafe?
107
+ registry.create_key('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile', true)
108
+ registry.set_value('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile',
109
+ { :name => 'Flags', :type => :dword, :data => 3 })
109
110
 
110
- expect(recipe.reboot_pending?).to be_true
111
- end
111
+ expect(recipe.reboot_pending?).to be_true
112
+ end
112
113
 
113
- after do
114
- if registry_safe?
115
- registry.delete_value('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile', { :name => 'Flags' })
116
- registry.delete_key('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile', false)
114
+ after do
115
+ unless registry_unsafe?
116
+ registry.delete_value('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile', { :name => 'Flags' })
117
+ registry.delete_key('HKLM\SOFTWARE\Microsoft\Updates\UpdateExeVolatile', false)
118
+ end
117
119
  end
118
120
  end
119
121
  end
metadata CHANGED
@@ -1,406 +1,359 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.18.6
5
- prerelease:
4
+ version: 11.18.12
6
5
  platform: ruby
7
6
  authors:
8
7
  - Adam Jacob
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-02-05 00:00:00.000000000 Z
11
+ date: 2015-04-30 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: mixlib-config
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: '2.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - "~>"
28
25
  - !ruby/object:Gem::Version
29
26
  version: '2.0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: mixlib-cli
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: '1.4'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: '1.4'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: mixlib-log
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
47
  version: '1.3'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
54
  version: '1.3'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: mixlib-authentication
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
61
  version: '1.3'
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
68
  version: '1.3'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: mixlib-shellout
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ~>
73
+ - - "~>"
84
74
  - !ruby/object:Gem::Version
85
75
  version: '1.4'
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ~>
80
+ - - "~>"
92
81
  - !ruby/object:Gem::Version
93
82
  version: '1.4'
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: ohai
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ~>
87
+ - - "~>"
100
88
  - !ruby/object:Gem::Version
101
89
  version: '7.4'
102
90
  type: :runtime
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ~>
94
+ - - "~>"
108
95
  - !ruby/object:Gem::Version
109
96
  version: '7.4'
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: rest-client
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - ">="
116
102
  - !ruby/object:Gem::Version
117
103
  version: 1.0.4
118
- - - <=
104
+ - - "<="
119
105
  - !ruby/object:Gem::Version
120
106
  version: 1.6.7
121
107
  type: :runtime
122
108
  prerelease: false
123
109
  version_requirements: !ruby/object:Gem::Requirement
124
- none: false
125
110
  requirements:
126
- - - ! '>='
111
+ - - ">="
127
112
  - !ruby/object:Gem::Version
128
113
  version: 1.0.4
129
- - - <=
114
+ - - "<="
130
115
  - !ruby/object:Gem::Version
131
116
  version: 1.6.7
132
117
  - !ruby/object:Gem::Dependency
133
118
  name: mime-types
134
119
  requirement: !ruby/object:Gem::Requirement
135
- none: false
136
120
  requirements:
137
- - - ~>
121
+ - - "~>"
138
122
  - !ruby/object:Gem::Version
139
123
  version: '1.16'
140
124
  type: :runtime
141
125
  prerelease: false
142
126
  version_requirements: !ruby/object:Gem::Requirement
143
- none: false
144
127
  requirements:
145
- - - ~>
128
+ - - "~>"
146
129
  - !ruby/object:Gem::Version
147
130
  version: '1.16'
148
131
  - !ruby/object:Gem::Dependency
149
132
  name: ffi-yajl
150
133
  requirement: !ruby/object:Gem::Requirement
151
- none: false
152
134
  requirements:
153
- - - ~>
135
+ - - "~>"
154
136
  - !ruby/object:Gem::Version
155
137
  version: '1.2'
156
138
  type: :runtime
157
139
  prerelease: false
158
140
  version_requirements: !ruby/object:Gem::Requirement
159
- none: false
160
141
  requirements:
161
- - - ~>
142
+ - - "~>"
162
143
  - !ruby/object:Gem::Version
163
144
  version: '1.2'
164
145
  - !ruby/object:Gem::Dependency
165
146
  name: net-ssh
166
147
  requirement: !ruby/object:Gem::Requirement
167
- none: false
168
148
  requirements:
169
- - - ~>
149
+ - - "~>"
170
150
  - !ruby/object:Gem::Version
171
151
  version: '2.6'
172
152
  type: :runtime
173
153
  prerelease: false
174
154
  version_requirements: !ruby/object:Gem::Requirement
175
- none: false
176
155
  requirements:
177
- - - ~>
156
+ - - "~>"
178
157
  - !ruby/object:Gem::Version
179
158
  version: '2.6'
180
159
  - !ruby/object:Gem::Dependency
181
160
  name: net-ssh-multi
182
161
  requirement: !ruby/object:Gem::Requirement
183
- none: false
184
162
  requirements:
185
- - - ~>
163
+ - - "~>"
186
164
  - !ruby/object:Gem::Version
187
165
  version: '1.1'
188
166
  type: :runtime
189
167
  prerelease: false
190
168
  version_requirements: !ruby/object:Gem::Requirement
191
- none: false
192
169
  requirements:
193
- - - ~>
170
+ - - "~>"
194
171
  - !ruby/object:Gem::Version
195
172
  version: '1.1'
196
173
  - !ruby/object:Gem::Dependency
197
174
  name: highline
198
175
  requirement: !ruby/object:Gem::Requirement
199
- none: false
200
176
  requirements:
201
- - - ~>
177
+ - - "~>"
202
178
  - !ruby/object:Gem::Version
203
179
  version: '1.6'
204
- - - ! '>='
180
+ - - ">="
205
181
  - !ruby/object:Gem::Version
206
182
  version: 1.6.9
207
183
  type: :runtime
208
184
  prerelease: false
209
185
  version_requirements: !ruby/object:Gem::Requirement
210
- none: false
211
186
  requirements:
212
- - - ~>
187
+ - - "~>"
213
188
  - !ruby/object:Gem::Version
214
189
  version: '1.6'
215
- - - ! '>='
190
+ - - ">="
216
191
  - !ruby/object:Gem::Version
217
192
  version: 1.6.9
218
193
  - !ruby/object:Gem::Dependency
219
194
  name: erubis
220
195
  requirement: !ruby/object:Gem::Requirement
221
- none: false
222
196
  requirements:
223
- - - ~>
197
+ - - "~>"
224
198
  - !ruby/object:Gem::Version
225
199
  version: '2.7'
226
200
  type: :runtime
227
201
  prerelease: false
228
202
  version_requirements: !ruby/object:Gem::Requirement
229
- none: false
230
203
  requirements:
231
- - - ~>
204
+ - - "~>"
232
205
  - !ruby/object:Gem::Version
233
206
  version: '2.7'
234
207
  - !ruby/object:Gem::Dependency
235
208
  name: diff-lcs
236
209
  requirement: !ruby/object:Gem::Requirement
237
- none: false
238
210
  requirements:
239
- - - ~>
211
+ - - "~>"
240
212
  - !ruby/object:Gem::Version
241
213
  version: '1.2'
242
- - - ! '>='
214
+ - - ">="
243
215
  - !ruby/object:Gem::Version
244
216
  version: 1.2.4
245
217
  type: :runtime
246
218
  prerelease: false
247
219
  version_requirements: !ruby/object:Gem::Requirement
248
- none: false
249
220
  requirements:
250
- - - ~>
221
+ - - "~>"
251
222
  - !ruby/object:Gem::Version
252
223
  version: '1.2'
253
- - - ! '>='
224
+ - - ">="
254
225
  - !ruby/object:Gem::Version
255
226
  version: 1.2.4
256
227
  - !ruby/object:Gem::Dependency
257
228
  name: chef-zero
258
229
  requirement: !ruby/object:Gem::Requirement
259
- none: false
260
230
  requirements:
261
- - - ~>
231
+ - - "~>"
262
232
  - !ruby/object:Gem::Version
263
233
  version: '2.2'
264
- - - ! '>='
234
+ - - ">="
265
235
  - !ruby/object:Gem::Version
266
236
  version: 2.2.1
267
237
  type: :runtime
268
238
  prerelease: false
269
239
  version_requirements: !ruby/object:Gem::Requirement
270
- none: false
271
240
  requirements:
272
- - - ~>
241
+ - - "~>"
273
242
  - !ruby/object:Gem::Version
274
243
  version: '2.2'
275
- - - ! '>='
244
+ - - ">="
276
245
  - !ruby/object:Gem::Version
277
246
  version: 2.2.1
278
247
  - !ruby/object:Gem::Dependency
279
248
  name: pry
280
249
  requirement: !ruby/object:Gem::Requirement
281
- none: false
282
250
  requirements:
283
- - - ~>
251
+ - - "~>"
284
252
  - !ruby/object:Gem::Version
285
253
  version: '0.9'
286
254
  type: :runtime
287
255
  prerelease: false
288
256
  version_requirements: !ruby/object:Gem::Requirement
289
- none: false
290
257
  requirements:
291
- - - ~>
258
+ - - "~>"
292
259
  - !ruby/object:Gem::Version
293
260
  version: '0.9'
294
261
  - !ruby/object:Gem::Dependency
295
262
  name: plist
296
263
  requirement: !ruby/object:Gem::Requirement
297
- none: false
298
264
  requirements:
299
- - - ~>
265
+ - - "~>"
300
266
  - !ruby/object:Gem::Version
301
267
  version: 3.1.0
302
268
  type: :runtime
303
269
  prerelease: false
304
270
  version_requirements: !ruby/object:Gem::Requirement
305
- none: false
306
271
  requirements:
307
- - - ~>
272
+ - - "~>"
308
273
  - !ruby/object:Gem::Version
309
274
  version: 3.1.0
310
275
  - !ruby/object:Gem::Dependency
311
276
  name: rack
312
277
  requirement: !ruby/object:Gem::Requirement
313
- none: false
314
278
  requirements:
315
- - - ! '>='
279
+ - - ">="
316
280
  - !ruby/object:Gem::Version
317
281
  version: '0'
318
282
  type: :development
319
283
  prerelease: false
320
284
  version_requirements: !ruby/object:Gem::Requirement
321
- none: false
322
285
  requirements:
323
- - - ! '>='
286
+ - - ">="
324
287
  - !ruby/object:Gem::Version
325
288
  version: '0'
326
289
  - !ruby/object:Gem::Dependency
327
290
  name: rake
328
291
  requirement: !ruby/object:Gem::Requirement
329
- none: false
330
292
  requirements:
331
- - - ~>
293
+ - - "~>"
332
294
  - !ruby/object:Gem::Version
333
295
  version: 10.1.0
334
296
  type: :development
335
297
  prerelease: false
336
298
  version_requirements: !ruby/object:Gem::Requirement
337
- none: false
338
299
  requirements:
339
- - - ~>
300
+ - - "~>"
340
301
  - !ruby/object:Gem::Version
341
302
  version: 10.1.0
342
303
  - !ruby/object:Gem::Dependency
343
304
  name: rspec_junit_formatter
344
305
  requirement: !ruby/object:Gem::Requirement
345
- none: false
346
306
  requirements:
347
- - - ~>
307
+ - - "~>"
348
308
  - !ruby/object:Gem::Version
349
309
  version: 0.1.0
350
310
  type: :development
351
311
  prerelease: false
352
312
  version_requirements: !ruby/object:Gem::Requirement
353
- none: false
354
313
  requirements:
355
- - - ~>
314
+ - - "~>"
356
315
  - !ruby/object:Gem::Version
357
316
  version: 0.1.0
358
317
  - !ruby/object:Gem::Dependency
359
318
  name: rspec-core
360
319
  requirement: !ruby/object:Gem::Requirement
361
- none: false
362
320
  requirements:
363
- - - ~>
321
+ - - "~>"
364
322
  - !ruby/object:Gem::Version
365
323
  version: 2.14.0
366
324
  type: :development
367
325
  prerelease: false
368
326
  version_requirements: !ruby/object:Gem::Requirement
369
- none: false
370
327
  requirements:
371
- - - ~>
328
+ - - "~>"
372
329
  - !ruby/object:Gem::Version
373
330
  version: 2.14.0
374
331
  - !ruby/object:Gem::Dependency
375
332
  name: rspec-expectations
376
333
  requirement: !ruby/object:Gem::Requirement
377
- none: false
378
334
  requirements:
379
- - - ~>
335
+ - - "~>"
380
336
  - !ruby/object:Gem::Version
381
337
  version: 2.14.0
382
338
  type: :development
383
339
  prerelease: false
384
340
  version_requirements: !ruby/object:Gem::Requirement
385
- none: false
386
341
  requirements:
387
- - - ~>
342
+ - - "~>"
388
343
  - !ruby/object:Gem::Version
389
344
  version: 2.14.0
390
345
  - !ruby/object:Gem::Dependency
391
346
  name: rspec-mocks
392
347
  requirement: !ruby/object:Gem::Requirement
393
- none: false
394
348
  requirements:
395
- - - ~>
349
+ - - "~>"
396
350
  - !ruby/object:Gem::Version
397
351
  version: 2.14.0
398
352
  type: :development
399
353
  prerelease: false
400
354
  version_requirements: !ruby/object:Gem::Requirement
401
- none: false
402
355
  requirements:
403
- - - ~>
356
+ - - "~>"
404
357
  - !ruby/object:Gem::Version
405
358
  version: 2.14.0
406
359
  description: A systems integration framework, built to bring the benefits of configuration
@@ -420,10 +373,18 @@ extra_rdoc_files:
420
373
  - CONTRIBUTING.md
421
374
  - LICENSE
422
375
  files:
423
- - Rakefile
376
+ - CONTRIBUTING.md
424
377
  - LICENSE
425
378
  - README.md
426
- - CONTRIBUTING.md
379
+ - Rakefile
380
+ - bin/chef-apply
381
+ - bin/chef-client
382
+ - bin/chef-service-manager
383
+ - bin/chef-shell
384
+ - bin/chef-solo
385
+ - bin/knife
386
+ - bin/shef
387
+ - distro/README
427
388
  - distro/arch/etc/conf.d/chef-client.conf
428
389
  - distro/arch/etc/conf.d/chef-expander.conf
429
390
  - distro/arch/etc/conf.d/chef-server-webui.conf
@@ -534,6 +495,7 @@ files:
534
495
  - distro/common/html/objects.inv
535
496
  - distro/common/html/search.html
536
497
  - distro/common/html/searchindex.js
498
+ - distro/common/man/man1/README.md
537
499
  - distro/common/man/man1/chef-shell.1
538
500
  - distro/common/man/man1/knife-bootstrap.1
539
501
  - distro/common/man/man1/knife-client.1
@@ -566,9 +528,9 @@ files:
566
528
  - distro/common/man/man1/knife-user.1
567
529
  - distro/common/man/man1/knife-xargs.1
568
530
  - distro/common/man/man1/knife.1
569
- - distro/common/man/man1/README.md
570
531
  - distro/common/man/man8/chef-client.8
571
532
  - distro/common/man/man8/chef-solo.8
533
+ - distro/common/markdown/README
572
534
  - distro/common/markdown/man1/chef-shell.mkd
573
535
  - distro/common/markdown/man1/knife-bootstrap.mkd
574
536
  - distro/common/markdown/man1/knife-client.mkd
@@ -593,23 +555,21 @@ files:
593
555
  - distro/common/markdown/man8/chef-server.mkd
594
556
  - distro/common/markdown/man8/chef-solo.mkd
595
557
  - distro/common/markdown/man8/chef-solr.mkd
596
- - distro/common/markdown/README
597
558
  - distro/debian/etc/default/chef-client
598
559
  - distro/debian/etc/default/chef-expander
599
560
  - distro/debian/etc/default/chef-server
600
561
  - distro/debian/etc/default/chef-server-webui
601
562
  - distro/debian/etc/default/chef-solr
602
- - distro/debian/etc/init/chef-client.conf
603
- - distro/debian/etc/init/chef-expander.conf
604
- - distro/debian/etc/init/chef-server-webui.conf
605
- - distro/debian/etc/init/chef-server.conf
606
- - distro/debian/etc/init/chef-solr.conf
607
563
  - distro/debian/etc/init.d/chef-client
608
564
  - distro/debian/etc/init.d/chef-expander
609
565
  - distro/debian/etc/init.d/chef-server
610
566
  - distro/debian/etc/init.d/chef-server-webui
611
567
  - distro/debian/etc/init.d/chef-solr
612
- - distro/README
568
+ - distro/debian/etc/init/chef-client.conf
569
+ - distro/debian/etc/init/chef-expander.conf
570
+ - distro/debian/etc/init/chef-server-webui.conf
571
+ - distro/debian/etc/init/chef-server.conf
572
+ - distro/debian/etc/init/chef-solr.conf
613
573
  - distro/redhat/etc/init.d/chef-client
614
574
  - distro/redhat/etc/init.d/chef-expander
615
575
  - distro/redhat/etc/init.d/chef-server
@@ -626,8 +586,10 @@ files:
626
586
  - distro/redhat/etc/sysconfig/chef-server-webui
627
587
  - distro/redhat/etc/sysconfig/chef-solr
628
588
  - distro/windows/service_manager.rb
629
- - lib/chef/api_client/registration.rb
589
+ - lib/chef.rb
630
590
  - lib/chef/api_client.rb
591
+ - lib/chef/api_client/registration.rb
592
+ - lib/chef/application.rb
631
593
  - lib/chef/application/agent.rb
632
594
  - lib/chef/application/apply.rb
633
595
  - lib/chef/application/client.rb
@@ -635,8 +597,8 @@ files:
635
597
  - lib/chef/application/solo.rb
636
598
  - lib/chef/application/windows_service.rb
637
599
  - lib/chef/application/windows_service_manager.rb
638
- - lib/chef/application.rb
639
600
  - lib/chef/applications.rb
601
+ - lib/chef/chef_fs.rb
640
602
  - lib/chef/chef_fs/chef_fs_data_store.rb
641
603
  - lib/chef/chef_fs/command_line.rb
642
604
  - lib/chef/chef_fs/config.rb
@@ -652,6 +614,7 @@ files:
652
614
  - lib/chef/chef_fs/data_handler/role_data_handler.rb
653
615
  - lib/chef/chef_fs/data_handler/user_data_handler.rb
654
616
  - lib/chef/chef_fs/file_pattern.rb
617
+ - lib/chef/chef_fs/file_system.rb
655
618
  - lib/chef/chef_fs/file_system/acl_dir.rb
656
619
  - lib/chef/chef_fs/file_system/acl_entry.rb
657
620
  - lib/chef/chef_fs/file_system/acls_dir.rb
@@ -691,13 +654,11 @@ files:
691
654
  - lib/chef/chef_fs/file_system/operation_not_allowed_error.rb
692
655
  - lib/chef/chef_fs/file_system/rest_list_dir.rb
693
656
  - lib/chef/chef_fs/file_system/rest_list_entry.rb
694
- - lib/chef/chef_fs/file_system.rb
695
657
  - lib/chef/chef_fs/knife.rb
658
+ - lib/chef/chef_fs/parallelizer.rb
696
659
  - lib/chef/chef_fs/parallelizer/flatten_enumerable.rb
697
660
  - lib/chef/chef_fs/parallelizer/parallel_enumerable.rb
698
- - lib/chef/chef_fs/parallelizer.rb
699
661
  - lib/chef/chef_fs/path_utils.rb
700
- - lib/chef/chef_fs.rb
701
662
  - lib/chef/client.rb
702
663
  - lib/chef/config.rb
703
664
  - lib/chef/config_fetcher.rb
@@ -724,6 +685,7 @@ files:
724
685
  - lib/chef/deprecation/provider/template.rb
725
686
  - lib/chef/deprecation/warnings.rb
726
687
  - lib/chef/digester.rb
688
+ - lib/chef/dsl.rb
727
689
  - lib/chef/dsl/data_query.rb
728
690
  - lib/chef/dsl/include_attribute.rb
729
691
  - lib/chef/dsl/include_recipe.rb
@@ -731,32 +693,32 @@ files:
731
693
  - lib/chef/dsl/reboot_pending.rb
732
694
  - lib/chef/dsl/recipe.rb
733
695
  - lib/chef/dsl/registry_helper.rb
734
- - lib/chef/dsl.rb
696
+ - lib/chef/encrypted_data_bag_item.rb
735
697
  - lib/chef/encrypted_data_bag_item/decryption_failure.rb
736
698
  - lib/chef/encrypted_data_bag_item/decryptor.rb
737
699
  - lib/chef/encrypted_data_bag_item/encryptor.rb
738
700
  - lib/chef/encrypted_data_bag_item/unacceptable_encrypted_data_bag_item_format.rb
739
701
  - lib/chef/encrypted_data_bag_item/unsupported_cipher.rb
740
702
  - lib/chef/encrypted_data_bag_item/unsupported_encrypted_data_bag_item_format.rb
741
- - lib/chef/encrypted_data_bag_item.rb
742
703
  - lib/chef/environment.rb
743
704
  - lib/chef/event_dispatch/base.rb
744
705
  - lib/chef/event_dispatch/dispatcher.rb
745
706
  - lib/chef/event_dispatch/events_output_stream.rb
746
707
  - lib/chef/exceptions.rb
708
+ - lib/chef/file_access_control.rb
747
709
  - lib/chef/file_access_control/unix.rb
748
710
  - lib/chef/file_access_control/windows.rb
749
- - lib/chef/file_access_control.rb
750
711
  - lib/chef/file_cache.rb
751
712
  - lib/chef/file_content_management/content_base.rb
713
+ - lib/chef/file_content_management/deploy.rb
752
714
  - lib/chef/file_content_management/deploy/cp.rb
753
715
  - lib/chef/file_content_management/deploy/mv_unix.rb
754
716
  - lib/chef/file_content_management/deploy/mv_windows.rb
755
- - lib/chef/file_content_management/deploy.rb
756
717
  - lib/chef/file_content_management/tempfile.rb
757
718
  - lib/chef/formatters/base.rb
758
719
  - lib/chef/formatters/doc.rb
759
720
  - lib/chef/formatters/error_descriptor.rb
721
+ - lib/chef/formatters/error_inspectors.rb
760
722
  - lib/chef/formatters/error_inspectors/api_error_formatting.rb
761
723
  - lib/chef/formatters/error_inspectors/compile_error_inspector.rb
762
724
  - lib/chef/formatters/error_inspectors/cookbook_resolve_error_inspector.rb
@@ -765,15 +727,15 @@ files:
765
727
  - lib/chef/formatters/error_inspectors/registration_error_inspector.rb
766
728
  - lib/chef/formatters/error_inspectors/resource_failure_inspector.rb
767
729
  - lib/chef/formatters/error_inspectors/run_list_expansion_error_inspector.rb
768
- - lib/chef/formatters/error_inspectors.rb
769
730
  - lib/chef/formatters/error_mapper.rb
770
731
  - lib/chef/formatters/indentable_output_stream.rb
771
732
  - lib/chef/formatters/minimal.rb
772
733
  - lib/chef/guard_interpreter/default_guard_interpreter.rb
773
734
  - lib/chef/guard_interpreter/resource_guard_interpreter.rb
735
+ - lib/chef/handler.rb
774
736
  - lib/chef/handler/error_report.rb
775
737
  - lib/chef/handler/json_file.rb
776
- - lib/chef/handler.rb
738
+ - lib/chef/http.rb
777
739
  - lib/chef/http/auth_credentials.rb
778
740
  - lib/chef/http/authenticator.rb
779
741
  - lib/chef/http/basic_client.rb
@@ -788,18 +750,18 @@ files:
788
750
  - lib/chef/http/simple.rb
789
751
  - lib/chef/http/ssl_policies.rb
790
752
  - lib/chef/http/validate_content_length.rb
791
- - lib/chef/http.rb
792
753
  - lib/chef/json_compat.rb
754
+ - lib/chef/knife.rb
755
+ - lib/chef/knife/bootstrap.rb
756
+ - lib/chef/knife/bootstrap/README.md
793
757
  - lib/chef/knife/bootstrap/archlinux-gems.erb
794
758
  - lib/chef/knife/bootstrap/centos5-gems.erb
795
759
  - lib/chef/knife/bootstrap/chef-aix.erb
796
760
  - lib/chef/knife/bootstrap/chef-full.erb
797
761
  - lib/chef/knife/bootstrap/fedora13-gems.erb
798
- - lib/chef/knife/bootstrap/README.md
799
762
  - lib/chef/knife/bootstrap/ubuntu10.04-apt.erb
800
763
  - lib/chef/knife/bootstrap/ubuntu10.04-gems.erb
801
764
  - lib/chef/knife/bootstrap/ubuntu12.04-gems.erb
802
- - lib/chef/knife/bootstrap.rb
803
765
  - lib/chef/knife/client_bulk_delete.rb
804
766
  - lib/chef/knife/client_create.rb
805
767
  - lib/chef/knife/client_delete.rb
@@ -897,13 +859,12 @@ files:
897
859
  - lib/chef/knife/user_reregister.rb
898
860
  - lib/chef/knife/user_show.rb
899
861
  - lib/chef/knife/xargs.rb
900
- - lib/chef/knife.rb
901
862
  - lib/chef/log.rb
902
863
  - lib/chef/mash.rb
903
864
  - lib/chef/mixin/checksum.rb
865
+ - lib/chef/mixin/command.rb
904
866
  - lib/chef/mixin/command/unix.rb
905
867
  - lib/chef/mixin/command/windows.rb
906
- - lib/chef/mixin/command.rb
907
868
  - lib/chef/mixin/convert_to_class_name.rb
908
869
  - lib/chef/mixin/create_path.rb
909
870
  - lib/chef/mixin/deep_merge.rb
@@ -940,36 +901,38 @@ files:
940
901
  - lib/chef/monkey_patches/uri.rb
941
902
  - lib/chef/monologger.rb
942
903
  - lib/chef/nil_argument.rb
904
+ - lib/chef/node.rb
943
905
  - lib/chef/node/attribute.rb
944
906
  - lib/chef/node/attribute_collections.rb
945
907
  - lib/chef/node/immutable_collections.rb
946
- - lib/chef/node.rb
908
+ - lib/chef/platform.rb
947
909
  - lib/chef/platform/provider_mapping.rb
948
910
  - lib/chef/platform/query_helpers.rb
949
- - lib/chef/platform.rb
911
+ - lib/chef/policy_builder.rb
950
912
  - lib/chef/policy_builder/expand_node_object.rb
951
913
  - lib/chef/policy_builder/policyfile.rb
952
- - lib/chef/policy_builder.rb
914
+ - lib/chef/provider.rb
953
915
  - lib/chef/provider/batch.rb
954
916
  - lib/chef/provider/breakpoint.rb
955
- - lib/chef/provider/cookbook_file/content.rb
956
917
  - lib/chef/provider/cookbook_file.rb
918
+ - lib/chef/provider/cookbook_file/content.rb
919
+ - lib/chef/provider/cron.rb
957
920
  - lib/chef/provider/cron/aix.rb
958
921
  - lib/chef/provider/cron/solaris.rb
959
922
  - lib/chef/provider/cron/unix.rb
960
- - lib/chef/provider/cron.rb
923
+ - lib/chef/provider/deploy.rb
961
924
  - lib/chef/provider/deploy/revision.rb
962
925
  - lib/chef/provider/deploy/timestamped.rb
963
- - lib/chef/provider/deploy.rb
964
926
  - lib/chef/provider/directory.rb
965
927
  - lib/chef/provider/dsc_script.rb
966
- - lib/chef/provider/env/windows.rb
967
928
  - lib/chef/provider/env.rb
929
+ - lib/chef/provider/env/windows.rb
968
930
  - lib/chef/provider/erl_call.rb
969
931
  - lib/chef/provider/execute.rb
970
- - lib/chef/provider/file/content.rb
971
932
  - lib/chef/provider/file.rb
933
+ - lib/chef/provider/file/content.rb
972
934
  - lib/chef/provider/git.rb
935
+ - lib/chef/provider/group.rb
973
936
  - lib/chef/provider/group/aix.rb
974
937
  - lib/chef/provider/group/dscl.rb
975
938
  - lib/chef/provider/group/gpasswd.rb
@@ -979,22 +942,22 @@ files:
979
942
  - lib/chef/provider/group/suse.rb
980
943
  - lib/chef/provider/group/usermod.rb
981
944
  - lib/chef/provider/group/windows.rb
982
- - lib/chef/provider/group.rb
983
945
  - lib/chef/provider/http_request.rb
946
+ - lib/chef/provider/ifconfig.rb
984
947
  - lib/chef/provider/ifconfig/aix.rb
985
948
  - lib/chef/provider/ifconfig/debian.rb
986
949
  - lib/chef/provider/ifconfig/redhat.rb
987
- - lib/chef/provider/ifconfig.rb
988
950
  - lib/chef/provider/link.rb
989
951
  - lib/chef/provider/log.rb
990
952
  - lib/chef/provider/lwrp_base.rb
991
953
  - lib/chef/provider/mdadm.rb
954
+ - lib/chef/provider/mount.rb
992
955
  - lib/chef/provider/mount/aix.rb
993
956
  - lib/chef/provider/mount/mount.rb
994
957
  - lib/chef/provider/mount/solaris.rb
995
958
  - lib/chef/provider/mount/windows.rb
996
- - lib/chef/provider/mount.rb
997
959
  - lib/chef/provider/ohai.rb
960
+ - lib/chef/provider/package.rb
998
961
  - lib/chef/provider/package/aix.rb
999
962
  - lib/chef/provider/package/apt.rb
1000
963
  - lib/chef/provider/package/dpkg.rb
@@ -1012,26 +975,26 @@ files:
1012
975
  - lib/chef/provider/package/rubygems.rb
1013
976
  - lib/chef/provider/package/smartos.rb
1014
977
  - lib/chef/provider/package/solaris.rb
1015
- - lib/chef/provider/package/windows/msi.rb
1016
978
  - lib/chef/provider/package/windows.rb
979
+ - lib/chef/provider/package/windows/msi.rb
1017
980
  - lib/chef/provider/package/yum-dump.py
1018
981
  - lib/chef/provider/package/yum.rb
1019
982
  - lib/chef/provider/package/zypper.rb
1020
- - lib/chef/provider/package.rb
1021
983
  - lib/chef/provider/powershell_script.rb
1022
984
  - lib/chef/provider/registry_key.rb
1023
985
  - lib/chef/provider/remote_directory.rb
986
+ - lib/chef/provider/remote_file.rb
1024
987
  - lib/chef/provider/remote_file/cache_control_data.rb
1025
988
  - lib/chef/provider/remote_file/content.rb
1026
989
  - lib/chef/provider/remote_file/fetcher.rb
1027
990
  - lib/chef/provider/remote_file/ftp.rb
1028
991
  - lib/chef/provider/remote_file/http.rb
1029
992
  - lib/chef/provider/remote_file/local_file.rb
1030
- - lib/chef/provider/remote_file.rb
1031
993
  - lib/chef/provider/resource_update.rb
1032
994
  - lib/chef/provider/route.rb
1033
995
  - lib/chef/provider/ruby_block.rb
1034
996
  - lib/chef/provider/script.rb
997
+ - lib/chef/provider/service.rb
1035
998
  - lib/chef/provider/service/arch.rb
1036
999
  - lib/chef/provider/service/debian.rb
1037
1000
  - lib/chef/provider/service/freebsd.rb
@@ -1046,24 +1009,23 @@ files:
1046
1009
  - lib/chef/provider/service/systemd.rb
1047
1010
  - lib/chef/provider/service/upstart.rb
1048
1011
  - lib/chef/provider/service/windows.rb
1049
- - lib/chef/provider/service.rb
1050
1012
  - lib/chef/provider/subversion.rb
1051
- - lib/chef/provider/template/content.rb
1052
1013
  - lib/chef/provider/template.rb
1014
+ - lib/chef/provider/template/content.rb
1053
1015
  - lib/chef/provider/template_finder.rb
1016
+ - lib/chef/provider/user.rb
1054
1017
  - lib/chef/provider/user/dscl.rb
1055
1018
  - lib/chef/provider/user/pw.rb
1056
1019
  - lib/chef/provider/user/solaris.rb
1057
1020
  - lib/chef/provider/user/useradd.rb
1058
1021
  - lib/chef/provider/user/windows.rb
1059
- - lib/chef/provider/user.rb
1060
1022
  - lib/chef/provider/whyrun_safe_ruby_block.rb
1061
1023
  - lib/chef/provider/windows_script.rb
1062
- - lib/chef/provider.rb
1063
1024
  - lib/chef/providers.rb
1064
1025
  - lib/chef/recipe.rb
1065
1026
  - lib/chef/request_id.rb
1066
1027
  - lib/chef/reserved_names.rb
1028
+ - lib/chef/resource.rb
1067
1029
  - lib/chef/resource/apt_package.rb
1068
1030
  - lib/chef/resource/bash.rb
1069
1031
  - lib/chef/resource/batch.rb
@@ -1126,9 +1088,8 @@ files:
1126
1088
  - lib/chef/resource/windows_package.rb
1127
1089
  - lib/chef/resource/windows_script.rb
1128
1090
  - lib/chef/resource/yum_package.rb
1129
- - lib/chef/resource.rb
1130
- - lib/chef/resource_collection/stepable_iterator.rb
1131
1091
  - lib/chef/resource_collection.rb
1092
+ - lib/chef/resource_collection/stepable_iterator.rb
1132
1093
  - lib/chef/resource_definition.rb
1133
1094
  - lib/chef/resource_definition_list.rb
1134
1095
  - lib/chef/resource_platform_map.rb
@@ -1136,12 +1097,12 @@ files:
1136
1097
  - lib/chef/resources.rb
1137
1098
  - lib/chef/rest.rb
1138
1099
  - lib/chef/role.rb
1139
- - lib/chef/run_context/cookbook_compiler.rb
1140
1100
  - lib/chef/run_context.rb
1101
+ - lib/chef/run_context/cookbook_compiler.rb
1102
+ - lib/chef/run_list.rb
1141
1103
  - lib/chef/run_list/run_list_expansion.rb
1142
1104
  - lib/chef/run_list/run_list_item.rb
1143
1105
  - lib/chef/run_list/versioned_recipe_list.rb
1144
- - lib/chef/run_list.rb
1145
1106
  - lib/chef/run_lock.rb
1146
1107
  - lib/chef/run_status.rb
1147
1108
  - lib/chef/runner.rb
@@ -1150,11 +1111,11 @@ files:
1150
1111
  - lib/chef/search/query.rb
1151
1112
  - lib/chef/server_api.rb
1152
1113
  - lib/chef/shef/ext.rb
1114
+ - lib/chef/shell.rb
1153
1115
  - lib/chef/shell/ext.rb
1154
1116
  - lib/chef/shell/model_wrapper.rb
1155
1117
  - lib/chef/shell/shell_rest.rb
1156
1118
  - lib/chef/shell/shell_session.rb
1157
- - lib/chef/shell.rb
1158
1119
  - lib/chef/shell_out.rb
1159
1120
  - lib/chef/streaming_cookbook_uploader.rb
1160
1121
  - lib/chef/tasks/chef_repo.rake
@@ -1172,17 +1133,18 @@ files:
1172
1133
  - lib/chef/util/powershell/cmdlet_result.rb
1173
1134
  - lib/chef/util/selinux.rb
1174
1135
  - lib/chef/util/threaded_job_queue.rb
1136
+ - lib/chef/util/windows.rb
1175
1137
  - lib/chef/util/windows/net_group.rb
1176
1138
  - lib/chef/util/windows/net_use.rb
1177
1139
  - lib/chef/util/windows/net_user.rb
1178
1140
  - lib/chef/util/windows/volume.rb
1179
- - lib/chef/util/windows.rb
1180
- - lib/chef/version/platform.rb
1181
1141
  - lib/chef/version.rb
1142
+ - lib/chef/version/platform.rb
1182
1143
  - lib/chef/version_class.rb
1183
- - lib/chef/version_constraint/platform.rb
1184
1144
  - lib/chef/version_constraint.rb
1145
+ - lib/chef/version_constraint/platform.rb
1185
1146
  - lib/chef/whitelist.rb
1147
+ - lib/chef/win32/api.rb
1186
1148
  - lib/chef/win32/api/error.rb
1187
1149
  - lib/chef/win32/api/file.rb
1188
1150
  - lib/chef/win32/api/installer.rb
@@ -1194,26 +1156,23 @@ files:
1194
1156
  - lib/chef/win32/api/synchronization.rb
1195
1157
  - lib/chef/win32/api/system.rb
1196
1158
  - lib/chef/win32/api/unicode.rb
1197
- - lib/chef/win32/api.rb
1198
1159
  - lib/chef/win32/error.rb
1199
- - lib/chef/win32/file/info.rb
1200
1160
  - lib/chef/win32/file.rb
1161
+ - lib/chef/win32/file/info.rb
1201
1162
  - lib/chef/win32/handle.rb
1202
1163
  - lib/chef/win32/memory.rb
1203
1164
  - lib/chef/win32/mutex.rb
1204
1165
  - lib/chef/win32/process.rb
1205
1166
  - lib/chef/win32/registry.rb
1167
+ - lib/chef/win32/security.rb
1206
1168
  - lib/chef/win32/security/ace.rb
1207
1169
  - lib/chef/win32/security/acl.rb
1208
1170
  - lib/chef/win32/security/securable_object.rb
1209
1171
  - lib/chef/win32/security/security_descriptor.rb
1210
1172
  - lib/chef/win32/security/sid.rb
1211
1173
  - lib/chef/win32/security/token.rb
1212
- - lib/chef/win32/security.rb
1213
1174
  - lib/chef/win32/unicode.rb
1214
1175
  - lib/chef/win32/version.rb
1215
- - lib/chef.rb
1216
- - tasks/rspec.rb
1217
1176
  - spec/data/apt/chef-integration-test-1.0/debian/changelog
1218
1177
  - spec/data/apt/chef-integration-test-1.0/debian/compat
1219
1178
  - spec/data/apt/chef-integration-test-1.0/debian/control
@@ -1243,11 +1202,11 @@ files:
1243
1202
  - spec/data/apt/var/www/apt/db/references.db
1244
1203
  - spec/data/apt/var/www/apt/db/release.caches.db
1245
1204
  - spec/data/apt/var/www/apt/db/version
1205
+ - spec/data/apt/var/www/apt/dists/sid/Release
1246
1206
  - spec/data/apt/var/www/apt/dists/sid/main/binary-amd64/Packages
1247
1207
  - spec/data/apt/var/www/apt/dists/sid/main/binary-amd64/Packages.gz
1248
1208
  - spec/data/apt/var/www/apt/dists/sid/main/binary-amd64/Release
1249
1209
  - spec/data/apt/var/www/apt/dists/sid/main/binary-i386/Packages
1250
- - spec/data/apt/var/www/apt/dists/sid/Release
1251
1210
  - spec/data/apt/var/www/apt/pool/main/c/chef-integration-test/chef-integration-test_1.0-1_amd64.deb
1252
1211
  - spec/data/apt/var/www/apt/pool/main/c/chef-integration-test/chef-integration-test_1.1-1_amd64.deb
1253
1212
  - spec/data/bad-config.rb
@@ -1258,12 +1217,12 @@ files:
1258
1217
  - spec/data/bootstrap/secret.erb
1259
1218
  - spec/data/bootstrap/test-hints.erb
1260
1219
  - spec/data/bootstrap/test.erb
1220
+ - spec/data/cb_version_cookbooks/tatft/README.rdoc
1261
1221
  - spec/data/cb_version_cookbooks/tatft/attributes/default.rb
1262
1222
  - spec/data/cb_version_cookbooks/tatft/definitions/runit_service.rb
1263
1223
  - spec/data/cb_version_cookbooks/tatft/files/default/giant_blob.tgz
1264
1224
  - spec/data/cb_version_cookbooks/tatft/libraries/ownage.rb
1265
1225
  - spec/data/cb_version_cookbooks/tatft/providers/lwp.rb
1266
- - spec/data/cb_version_cookbooks/tatft/README.rdoc
1267
1226
  - spec/data/cb_version_cookbooks/tatft/recipes/default.rb
1268
1227
  - spec/data/cb_version_cookbooks/tatft/resources/lwr.rb
1269
1228
  - spec/data/cb_version_cookbooks/tatft/templates/default/configuration.erb
@@ -1424,16 +1383,6 @@ files:
1424
1383
  - spec/data/run_context/cookbooks/no-default-attr/providers/provider.rb
1425
1384
  - spec/data/run_context/cookbooks/no-default-attr/recipes/default.rb
1426
1385
  - spec/data/run_context/cookbooks/no-default-attr/resources/resource.rb
1427
- - spec/data/run_context/cookbooks/test/attributes/default.rb
1428
- - spec/data/run_context/cookbooks/test/attributes/george.rb
1429
- - spec/data/run_context/cookbooks/test/definitions/new_animals.rb
1430
- - spec/data/run_context/cookbooks/test/definitions/new_cat.rb
1431
- - spec/data/run_context/cookbooks/test/definitions/test_res.rb
1432
- - spec/data/run_context/cookbooks/test/providers/provider.rb
1433
- - spec/data/run_context/cookbooks/test/recipes/default.rb
1434
- - spec/data/run_context/cookbooks/test/recipes/one.rb
1435
- - spec/data/run_context/cookbooks/test/recipes/two.rb
1436
- - spec/data/run_context/cookbooks/test/resources/resource.rb
1437
1386
  - spec/data/run_context/cookbooks/test-with-circular-deps/attributes/default.rb
1438
1387
  - spec/data/run_context/cookbooks/test-with-circular-deps/definitions/test_with-circular-deps_res.rb
1439
1388
  - spec/data/run_context/cookbooks/test-with-circular-deps/libraries/lib.rb
@@ -1449,6 +1398,16 @@ files:
1449
1398
  - spec/data/run_context/cookbooks/test-with-deps/recipes/default.rb
1450
1399
  - spec/data/run_context/cookbooks/test-with-deps/recipes/server.rb
1451
1400
  - spec/data/run_context/cookbooks/test-with-deps/resources/resource.rb
1401
+ - spec/data/run_context/cookbooks/test/attributes/default.rb
1402
+ - spec/data/run_context/cookbooks/test/attributes/george.rb
1403
+ - spec/data/run_context/cookbooks/test/definitions/new_animals.rb
1404
+ - spec/data/run_context/cookbooks/test/definitions/new_cat.rb
1405
+ - spec/data/run_context/cookbooks/test/definitions/test_res.rb
1406
+ - spec/data/run_context/cookbooks/test/providers/provider.rb
1407
+ - spec/data/run_context/cookbooks/test/recipes/default.rb
1408
+ - spec/data/run_context/cookbooks/test/recipes/one.rb
1409
+ - spec/data/run_context/cookbooks/test/recipes/two.rb
1410
+ - spec/data/run_context/cookbooks/test/resources/resource.rb
1452
1411
  - spec/data/run_context/nodes/run_context.rb
1453
1412
  - spec/data/search_queries_to_transform.txt
1454
1413
  - spec/data/shef-config.rb
@@ -1458,8 +1417,8 @@ files:
1458
1417
  - spec/data/ssl/key.pem
1459
1418
  - spec/data/ssl/private_key.pem
1460
1419
  - spec/data/ssl/private_key_with_whitespace.pem
1461
- - spec/data/standalone_cookbook/chefignore
1462
1420
  - spec/data/standalone_cookbook/Gemfile
1421
+ - spec/data/standalone_cookbook/chefignore
1463
1422
  - spec/data/standalone_cookbook/recipes/default.rb
1464
1423
  - spec/data/standalone_cookbook/vendor/bundle/ruby/2.0.0/gems/multi_json-1.9.0/lib/multi_json.rb
1465
1424
  - spec/data/templates/seattle.txt
@@ -1468,12 +1427,12 @@ files:
1468
1427
  - spec/data/trusted_certs/opscode.pem
1469
1428
  - spec/data/trusted_certs/root.pem
1470
1429
  - spec/functional/application_spec.rb
1430
+ - spec/functional/assets/PkgA.1.0.0.0.bff
1431
+ - spec/functional/assets/PkgA.2.0.0.0.bff
1471
1432
  - spec/functional/assets/dummy-1-0.aix6.1.noarch.rpm
1472
1433
  - spec/functional/assets/dummy-2-0.aix6.1.noarch.rpm
1473
1434
  - spec/functional/assets/mytest-1.0-1.noarch.rpm
1474
1435
  - spec/functional/assets/mytest-2.0-1.noarch.rpm
1475
- - spec/functional/assets/PkgA.1.0.0.0.bff
1476
- - spec/functional/assets/PkgA.2.0.0.0.bff
1477
1436
  - spec/functional/dsl/reboot_pending_spec.rb
1478
1437
  - spec/functional/dsl/registry_helper_spec.rb
1479
1438
  - spec/functional/file_content_management/deploy_strategies_spec.rb
@@ -1953,36 +1912,29 @@ files:
1953
1912
  - spec/unit/version_constraint/platform_spec.rb
1954
1913
  - spec/unit/version_constraint_spec.rb
1955
1914
  - spec/unit/windows_service_spec.rb
1956
- - bin/chef-client
1957
- - bin/chef-solo
1958
- - bin/knife
1959
- - bin/chef-shell
1960
- - bin/shef
1961
- - bin/chef-apply
1962
- - bin/chef-service-manager
1915
+ - tasks/rspec.rb
1963
1916
  homepage: http://wiki.opscode.com/display/chef
1964
1917
  licenses: []
1918
+ metadata: {}
1965
1919
  post_install_message:
1966
1920
  rdoc_options: []
1967
1921
  require_paths:
1968
1922
  - lib
1969
1923
  required_ruby_version: !ruby/object:Gem::Requirement
1970
- none: false
1971
1924
  requirements:
1972
- - - ! '>='
1925
+ - - ">="
1973
1926
  - !ruby/object:Gem::Version
1974
1927
  version: '0'
1975
1928
  required_rubygems_version: !ruby/object:Gem::Requirement
1976
- none: false
1977
1929
  requirements:
1978
- - - ! '>='
1930
+ - - ">="
1979
1931
  - !ruby/object:Gem::Version
1980
1932
  version: '0'
1981
1933
  requirements: []
1982
1934
  rubyforge_project:
1983
- rubygems_version: 1.8.24
1935
+ rubygems_version: 2.4.4
1984
1936
  signing_key:
1985
- specification_version: 3
1937
+ specification_version: 4
1986
1938
  summary: A systems integration framework, built to bring the benefits of configuration
1987
1939
  management to your entire infrastructure.
1988
1940
  test_files: []