chef-dk 0.6.2 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/chef-dk/builtin_commands.rb +7 -0
- data/lib/chef-dk/command/env.rb +90 -0
- data/lib/chef-dk/command/export.rb +22 -1
- data/lib/chef-dk/command/generate.rb +1 -1
- data/lib/chef-dk/command/provision.rb +43 -0
- data/lib/chef-dk/command/push_archive.rb +126 -0
- data/lib/chef-dk/command/show_policy.rb +166 -0
- data/lib/chef-dk/command/verify.rb +58 -1
- data/lib/chef-dk/cookbook_omnifetch.rb +3 -2
- data/lib/chef-dk/exceptions.rb +27 -0
- data/lib/chef-dk/helpers.rb +29 -0
- data/lib/chef-dk/policyfile/chef_repo_cookbook_source.rb +8 -0
- data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +8 -0
- data/lib/chef-dk/policyfile/community_cookbook_source.rb +8 -0
- data/lib/chef-dk/policyfile/cookbook_locks.rb +76 -6
- data/lib/chef-dk/policyfile/dsl.rb +10 -5
- data/lib/chef-dk/policyfile/lister.rb +230 -0
- data/lib/chef-dk/policyfile/null_cookbook_source.rb +8 -0
- data/lib/chef-dk/policyfile_compiler.rb +35 -2
- data/lib/chef-dk/policyfile_lock.rb +43 -0
- data/lib/chef-dk/policyfile_services/clean_policies.rb +94 -0
- data/lib/chef-dk/policyfile_services/export_repo.rb +103 -16
- data/lib/chef-dk/policyfile_services/push_archive.rb +173 -0
- data/lib/chef-dk/policyfile_services/show_policy.rb +237 -0
- data/lib/chef-dk/service_exceptions.rb +21 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/chefignore +1 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/README.md +2 -40
- data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +0 -2
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen.yml.erb +2 -2
- data/lib/chef-dk/skeletons/code_generator/templates/default/recipe_spec.rb.erb +1 -1
- data/lib/chef-dk/version.rb +1 -1
- data/spec/unit/command/env_spec.rb +52 -0
- data/spec/unit/command/exec_spec.rb +2 -2
- data/spec/unit/command/export_spec.rb +13 -0
- data/spec/unit/command/provision_spec.rb +56 -0
- data/spec/unit/command/push_archive_spec.rb +153 -0
- data/spec/unit/command/show_policy_spec.rb +235 -0
- data/spec/unit/command/verify_spec.rb +1 -0
- data/spec/unit/helpers_spec.rb +68 -0
- data/spec/unit/policyfile/cookbook_locks_spec.rb +107 -1
- data/spec/unit/policyfile/lister_spec.rb +256 -0
- data/spec/unit/policyfile_demands_spec.rb +202 -10
- data/spec/unit/policyfile_evaluation_spec.rb +30 -4
- data/spec/unit/policyfile_lock_serialization_spec.rb +45 -0
- data/spec/unit/policyfile_services/clean_policies_spec.rb +236 -0
- data/spec/unit/policyfile_services/export_repo_spec.rb +99 -6
- data/spec/unit/policyfile_services/push_archive_spec.rb +345 -0
- data/spec/unit/policyfile_services/show_policy_spec.rb +839 -0
- metadata +139 -8
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: 0.
|
4
|
+
version: 0.7.0
|
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: 2015-
|
13
|
+
date: 2015-08-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mixlib-cli
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "<"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitar
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.5.4
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.5.4
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: chef
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -92,14 +106,20 @@ dependencies:
|
|
92
106
|
requirements:
|
93
107
|
- - "~>"
|
94
108
|
- !ruby/object:Gem::Version
|
95
|
-
version: '
|
109
|
+
version: '2.0'
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 2.0.1
|
96
113
|
type: :runtime
|
97
114
|
prerelease: false
|
98
115
|
version_requirements: !ruby/object:Gem::Requirement
|
99
116
|
requirements:
|
100
117
|
- - "~>"
|
101
118
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
119
|
+
version: '2.0'
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 2.0.1
|
103
123
|
- !ruby/object:Gem::Dependency
|
104
124
|
name: cookbook-omnifetch
|
105
125
|
requirement: !ruby/object:Gem::Requirement
|
@@ -148,14 +168,14 @@ dependencies:
|
|
148
168
|
requirements:
|
149
169
|
- - "~>"
|
150
170
|
- !ruby/object:Gem::Version
|
151
|
-
version: 1.
|
171
|
+
version: '1.2'
|
152
172
|
type: :runtime
|
153
173
|
prerelease: false
|
154
174
|
version_requirements: !ruby/object:Gem::Requirement
|
155
175
|
requirements:
|
156
176
|
- - "~>"
|
157
177
|
- !ruby/object:Gem::Version
|
158
|
-
version: 1.
|
178
|
+
version: '1.2'
|
159
179
|
- !ruby/object:Gem::Dependency
|
160
180
|
name: rspec-core
|
161
181
|
requirement: !ruby/object:Gem::Requirement
|
@@ -220,6 +240,7 @@ files:
|
|
220
240
|
- lib/chef-dk/cli.rb
|
221
241
|
- lib/chef-dk/command/base.rb
|
222
242
|
- lib/chef-dk/command/diff.rb
|
243
|
+
- lib/chef-dk/command/env.rb
|
223
244
|
- lib/chef-dk/command/exec.rb
|
224
245
|
- lib/chef-dk/command/export.rb
|
225
246
|
- lib/chef-dk/command/gem.rb
|
@@ -239,7 +260,9 @@ files:
|
|
239
260
|
- lib/chef-dk/command/install.rb
|
240
261
|
- lib/chef-dk/command/provision.rb
|
241
262
|
- lib/chef-dk/command/push.rb
|
263
|
+
- lib/chef-dk/command/push_archive.rb
|
242
264
|
- lib/chef-dk/command/shell_init.rb
|
265
|
+
- lib/chef-dk/command/show_policy.rb
|
243
266
|
- lib/chef-dk/command/update.rb
|
244
267
|
- lib/chef-dk/command/verify.rb
|
245
268
|
- lib/chef-dk/commands_map.rb
|
@@ -263,6 +286,7 @@ files:
|
|
263
286
|
- lib/chef-dk/policyfile/cookbook_sources.rb
|
264
287
|
- lib/chef-dk/policyfile/differ.rb
|
265
288
|
- lib/chef-dk/policyfile/dsl.rb
|
289
|
+
- lib/chef-dk/policyfile/lister.rb
|
266
290
|
- lib/chef-dk/policyfile/null_cookbook_source.rb
|
267
291
|
- lib/chef-dk/policyfile/read_cookbook_for_compat_mode_upload.rb
|
268
292
|
- lib/chef-dk/policyfile/reports/install.rb
|
@@ -273,9 +297,12 @@ files:
|
|
273
297
|
- lib/chef-dk/policyfile/uploader.rb
|
274
298
|
- lib/chef-dk/policyfile_compiler.rb
|
275
299
|
- lib/chef-dk/policyfile_lock.rb
|
300
|
+
- lib/chef-dk/policyfile_services/clean_policies.rb
|
276
301
|
- lib/chef-dk/policyfile_services/export_repo.rb
|
277
302
|
- lib/chef-dk/policyfile_services/install.rb
|
278
303
|
- lib/chef-dk/policyfile_services/push.rb
|
304
|
+
- lib/chef-dk/policyfile_services/push_archive.rb
|
305
|
+
- lib/chef-dk/policyfile_services/show_policy.rb
|
279
306
|
- lib/chef-dk/policyfile_services/update_attributes.rb
|
280
307
|
- lib/chef-dk/service_exception_inspectors.rb
|
281
308
|
- lib/chef-dk/service_exception_inspectors/base.rb
|
@@ -342,6 +369,7 @@ files:
|
|
342
369
|
- spec/unit/cli_spec.rb
|
343
370
|
- spec/unit/command/base_spec.rb
|
344
371
|
- spec/unit/command/diff_spec.rb
|
372
|
+
- spec/unit/command/env_spec.rb
|
345
373
|
- spec/unit/command/exec_spec.rb
|
346
374
|
- spec/unit/command/export_spec.rb
|
347
375
|
- spec/unit/command/generate_spec.rb
|
@@ -356,8 +384,10 @@ files:
|
|
356
384
|
- spec/unit/command/generator_commands/template_spec.rb
|
357
385
|
- spec/unit/command/install_spec.rb
|
358
386
|
- spec/unit/command/provision_spec.rb
|
387
|
+
- spec/unit/command/push_archive_spec.rb
|
359
388
|
- spec/unit/command/push_spec.rb
|
360
389
|
- spec/unit/command/shell_init_spec.rb
|
390
|
+
- spec/unit/command/show_policy_spec.rb
|
361
391
|
- spec/unit/command/update_spec.rb
|
362
392
|
- spec/unit/command/verify_spec.rb
|
363
393
|
- spec/unit/commands_map_spec.rb
|
@@ -408,6 +438,19 @@ files:
|
|
408
438
|
- spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/test-kitchen/verify_me
|
409
439
|
- spec/unit/fixtures/eg_omnibus_dir/valid/embedded/bin/.keep
|
410
440
|
- spec/unit/fixtures/example_app/Policyfile.rb
|
441
|
+
- spec/unit/fixtures/example_cookbook/.git/HEAD
|
442
|
+
- spec/unit/fixtures/example_cookbook/.git/config
|
443
|
+
- spec/unit/fixtures/example_cookbook/.git/description
|
444
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/applypatch-msg.sample
|
445
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/commit-msg.sample
|
446
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/post-update.sample
|
447
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-applypatch.sample
|
448
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-commit.sample
|
449
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-push.sample
|
450
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-rebase.sample
|
451
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/prepare-commit-msg.sample
|
452
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/update.sample
|
453
|
+
- spec/unit/fixtures/example_cookbook/.git/info/exclude
|
411
454
|
- spec/unit/fixtures/example_cookbook/.gitignore
|
412
455
|
- spec/unit/fixtures/example_cookbook/.kitchen.yml
|
413
456
|
- spec/unit/fixtures/example_cookbook/Berksfile
|
@@ -415,6 +458,19 @@ files:
|
|
415
458
|
- spec/unit/fixtures/example_cookbook/chefignore
|
416
459
|
- spec/unit/fixtures/example_cookbook/metadata.rb
|
417
460
|
- spec/unit/fixtures/example_cookbook/recipes/default.rb
|
461
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/HEAD
|
462
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/config
|
463
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/description
|
464
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/applypatch-msg.sample
|
465
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/commit-msg.sample
|
466
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/post-update.sample
|
467
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-applypatch.sample
|
468
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-commit.sample
|
469
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-push.sample
|
470
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-rebase.sample
|
471
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/prepare-commit-msg.sample
|
472
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/update.sample
|
473
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/info/exclude
|
418
474
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/.gitignore
|
419
475
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/.kitchen.yml
|
420
476
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/Berksfile
|
@@ -422,6 +478,19 @@ files:
|
|
422
478
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/chefignore
|
423
479
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/metadata.json
|
424
480
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/recipes/default.rb
|
481
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/HEAD
|
482
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/config
|
483
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/description
|
484
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/applypatch-msg.sample
|
485
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/commit-msg.sample
|
486
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/post-update.sample
|
487
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-applypatch.sample
|
488
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-commit.sample
|
489
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-push.sample
|
490
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-rebase.sample
|
491
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/prepare-commit-msg.sample
|
492
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/update.sample
|
493
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/info/exclude
|
425
494
|
- spec/unit/fixtures/example_cookbook_no_metadata/.gitignore
|
426
495
|
- spec/unit/fixtures/example_cookbook_no_metadata/.kitchen.yml
|
427
496
|
- spec/unit/fixtures/example_cookbook_no_metadata/Berksfile
|
@@ -449,6 +518,7 @@ files:
|
|
449
518
|
- spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb
|
450
519
|
- spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb
|
451
520
|
- spec/unit/generator_spec.rb
|
521
|
+
- spec/unit/helpers_spec.rb
|
452
522
|
- spec/unit/pager_spec.rb
|
453
523
|
- spec/unit/policyfile/chef_repo_cookbook_source_spec.rb
|
454
524
|
- spec/unit/policyfile/chef_server_cookbook_source_spec.rb
|
@@ -457,6 +527,7 @@ files:
|
|
457
527
|
- spec/unit/policyfile/cookbook_location_specification_spec.rb
|
458
528
|
- spec/unit/policyfile/cookbook_locks_spec.rb
|
459
529
|
- spec/unit/policyfile/differ_spec.rb
|
530
|
+
- spec/unit/policyfile/lister_spec.rb
|
460
531
|
- spec/unit/policyfile/null_cookbook_source_spec.rb
|
461
532
|
- spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb
|
462
533
|
- spec/unit/policyfile/reports/install_spec.rb
|
@@ -470,9 +541,12 @@ files:
|
|
470
541
|
- spec/unit/policyfile_lock_install_spec.rb
|
471
542
|
- spec/unit/policyfile_lock_serialization_spec.rb
|
472
543
|
- spec/unit/policyfile_lock_validation_spec.rb
|
544
|
+
- spec/unit/policyfile_services/clean_policies_spec.rb
|
473
545
|
- spec/unit/policyfile_services/export_repo_spec.rb
|
474
546
|
- spec/unit/policyfile_services/install_spec.rb
|
547
|
+
- spec/unit/policyfile_services/push_archive_spec.rb
|
475
548
|
- spec/unit/policyfile_services/push_spec.rb
|
549
|
+
- spec/unit/policyfile_services/show_policy_spec.rb
|
476
550
|
- spec/unit/policyfile_services/update_attributes_spec.rb
|
477
551
|
- spec/unit/service_exception_inspectors/base_spec.rb
|
478
552
|
- spec/unit/service_exception_inspectors/http_spec.rb
|
@@ -480,7 +554,16 @@ files:
|
|
480
554
|
homepage: https://www.chef.io/
|
481
555
|
licenses: []
|
482
556
|
metadata: {}
|
483
|
-
post_install_message:
|
557
|
+
post_install_message: |+
|
558
|
+
Thanks for installing chef-dk! Unfortunately, since Chef Development Kit is
|
559
|
+
supposed to be installed as the omnibus binaries in order to support vairous
|
560
|
+
platforms, this is not the official way to install chef-dk.
|
561
|
+
|
562
|
+
Please download the latest version for your operating system from the URL below,
|
563
|
+
and make sure you have uninstalled your chef-dk gem to avoid conflicts:
|
564
|
+
|
565
|
+
https://downloads.chef.io/chef-dk/
|
566
|
+
|
484
567
|
rdoc_options: []
|
485
568
|
require_paths:
|
486
569
|
- lib
|
@@ -496,7 +579,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
496
579
|
version: '0'
|
497
580
|
requirements: []
|
498
581
|
rubyforge_project:
|
499
|
-
rubygems_version: 2.4.
|
582
|
+
rubygems_version: 2.4.6
|
500
583
|
signing_key:
|
501
584
|
specification_version: 4
|
502
585
|
summary: A streamlined development and deployment workflow for Chef platform.
|
@@ -513,6 +596,7 @@ test_files:
|
|
513
596
|
- spec/unit/cli_spec.rb
|
514
597
|
- spec/unit/command/base_spec.rb
|
515
598
|
- spec/unit/command/diff_spec.rb
|
599
|
+
- spec/unit/command/env_spec.rb
|
516
600
|
- spec/unit/command/exec_spec.rb
|
517
601
|
- spec/unit/command/export_spec.rb
|
518
602
|
- spec/unit/command/generate_spec.rb
|
@@ -527,8 +611,10 @@ test_files:
|
|
527
611
|
- spec/unit/command/generator_commands/template_spec.rb
|
528
612
|
- spec/unit/command/install_spec.rb
|
529
613
|
- spec/unit/command/provision_spec.rb
|
614
|
+
- spec/unit/command/push_archive_spec.rb
|
530
615
|
- spec/unit/command/push_spec.rb
|
531
616
|
- spec/unit/command/shell_init_spec.rb
|
617
|
+
- spec/unit/command/show_policy_spec.rb
|
532
618
|
- spec/unit/command/update_spec.rb
|
533
619
|
- spec/unit/command/verify_spec.rb
|
534
620
|
- spec/unit/commands_map_spec.rb
|
@@ -579,6 +665,19 @@ test_files:
|
|
579
665
|
- spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/test-kitchen/verify_me
|
580
666
|
- spec/unit/fixtures/eg_omnibus_dir/valid/embedded/bin/.keep
|
581
667
|
- spec/unit/fixtures/example_app/Policyfile.rb
|
668
|
+
- spec/unit/fixtures/example_cookbook/.git/HEAD
|
669
|
+
- spec/unit/fixtures/example_cookbook/.git/config
|
670
|
+
- spec/unit/fixtures/example_cookbook/.git/description
|
671
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/applypatch-msg.sample
|
672
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/commit-msg.sample
|
673
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/post-update.sample
|
674
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-applypatch.sample
|
675
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-commit.sample
|
676
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-push.sample
|
677
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/pre-rebase.sample
|
678
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/prepare-commit-msg.sample
|
679
|
+
- spec/unit/fixtures/example_cookbook/.git/hooks/update.sample
|
680
|
+
- spec/unit/fixtures/example_cookbook/.git/info/exclude
|
582
681
|
- spec/unit/fixtures/example_cookbook/.gitignore
|
583
682
|
- spec/unit/fixtures/example_cookbook/.kitchen.yml
|
584
683
|
- spec/unit/fixtures/example_cookbook/Berksfile
|
@@ -586,6 +685,19 @@ test_files:
|
|
586
685
|
- spec/unit/fixtures/example_cookbook/chefignore
|
587
686
|
- spec/unit/fixtures/example_cookbook/metadata.rb
|
588
687
|
- spec/unit/fixtures/example_cookbook/recipes/default.rb
|
688
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/HEAD
|
689
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/config
|
690
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/description
|
691
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/applypatch-msg.sample
|
692
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/commit-msg.sample
|
693
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/post-update.sample
|
694
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-applypatch.sample
|
695
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-commit.sample
|
696
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-push.sample
|
697
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/pre-rebase.sample
|
698
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/prepare-commit-msg.sample
|
699
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/hooks/update.sample
|
700
|
+
- spec/unit/fixtures/example_cookbook_metadata_json_only/.git/info/exclude
|
589
701
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/.gitignore
|
590
702
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/.kitchen.yml
|
591
703
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/Berksfile
|
@@ -593,6 +705,19 @@ test_files:
|
|
593
705
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/chefignore
|
594
706
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/metadata.json
|
595
707
|
- spec/unit/fixtures/example_cookbook_metadata_json_only/recipes/default.rb
|
708
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/HEAD
|
709
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/config
|
710
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/description
|
711
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/applypatch-msg.sample
|
712
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/commit-msg.sample
|
713
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/post-update.sample
|
714
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-applypatch.sample
|
715
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-commit.sample
|
716
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-push.sample
|
717
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/pre-rebase.sample
|
718
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/prepare-commit-msg.sample
|
719
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/hooks/update.sample
|
720
|
+
- spec/unit/fixtures/example_cookbook_no_metadata/.git/info/exclude
|
596
721
|
- spec/unit/fixtures/example_cookbook_no_metadata/.gitignore
|
597
722
|
- spec/unit/fixtures/example_cookbook_no_metadata/.kitchen.yml
|
598
723
|
- spec/unit/fixtures/example_cookbook_no_metadata/Berksfile
|
@@ -620,6 +745,7 @@ test_files:
|
|
620
745
|
- spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb
|
621
746
|
- spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb
|
622
747
|
- spec/unit/generator_spec.rb
|
748
|
+
- spec/unit/helpers_spec.rb
|
623
749
|
- spec/unit/pager_spec.rb
|
624
750
|
- spec/unit/policyfile/chef_repo_cookbook_source_spec.rb
|
625
751
|
- spec/unit/policyfile/chef_server_cookbook_source_spec.rb
|
@@ -628,6 +754,7 @@ test_files:
|
|
628
754
|
- spec/unit/policyfile/cookbook_location_specification_spec.rb
|
629
755
|
- spec/unit/policyfile/cookbook_locks_spec.rb
|
630
756
|
- spec/unit/policyfile/differ_spec.rb
|
757
|
+
- spec/unit/policyfile/lister_spec.rb
|
631
758
|
- spec/unit/policyfile/null_cookbook_source_spec.rb
|
632
759
|
- spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb
|
633
760
|
- spec/unit/policyfile/reports/install_spec.rb
|
@@ -641,10 +768,14 @@ test_files:
|
|
641
768
|
- spec/unit/policyfile_lock_install_spec.rb
|
642
769
|
- spec/unit/policyfile_lock_serialization_spec.rb
|
643
770
|
- spec/unit/policyfile_lock_validation_spec.rb
|
771
|
+
- spec/unit/policyfile_services/clean_policies_spec.rb
|
644
772
|
- spec/unit/policyfile_services/export_repo_spec.rb
|
645
773
|
- spec/unit/policyfile_services/install_spec.rb
|
774
|
+
- spec/unit/policyfile_services/push_archive_spec.rb
|
646
775
|
- spec/unit/policyfile_services/push_spec.rb
|
776
|
+
- spec/unit/policyfile_services/show_policy_spec.rb
|
647
777
|
- spec/unit/policyfile_services/update_attributes_spec.rb
|
648
778
|
- spec/unit/service_exception_inspectors/base_spec.rb
|
649
779
|
- spec/unit/service_exception_inspectors/http_spec.rb
|
650
780
|
- spec/unit/shell_out_spec.rb
|
781
|
+
has_rdoc:
|