chef-dk 0.15.16 → 0.16.28
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +1 -26
- data/Gemfile +10 -4
- data/Gemfile.lock +73 -64
- data/LICENSE +201 -201
- data/README.md +2 -1
- data/acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml +27 -27
- data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +288 -288
- data/acceptance/.shared/kitchen_acceptance/.kitchen.vagrant.yml +52 -52
- data/acceptance/.shared/kitchen_acceptance/libraries/kitchen.rb +51 -51
- data/acceptance/.shared/kitchen_acceptance/metadata.rb +1 -1
- data/acceptance/Gemfile +3 -0
- data/acceptance/Gemfile.lock +24 -24
- data/acceptance/README.md +132 -132
- data/acceptance/trivial/.acceptance/acceptance-cookbook/.gitignore +2 -2
- data/acceptance/trivial/.acceptance/acceptance-cookbook/metadata.rb +2 -2
- data/acceptance/trivial/.acceptance/acceptance-cookbook/recipes/destroy.rb +1 -1
- data/acceptance/trivial/.acceptance/acceptance-cookbook/recipes/provision.rb +1 -1
- data/acceptance/trivial/.acceptance/acceptance-cookbook/recipes/verify.rb +1 -1
- data/acceptance/trivial/.kitchen.yml +7 -7
- data/acceptance/trivial/test/integration/chefdk-current-install/inspec/chef_client_spec.rb +5 -5
- data/bin/chef +25 -25
- data/chef-dk.gemspec +1 -1
- data/lib/chef-dk.rb +19 -19
- data/lib/chef-dk/authenticated_http.rb +40 -40
- data/lib/chef-dk/chef_runner.rb +12 -4
- data/lib/chef-dk/command/base.rb +79 -79
- data/lib/chef-dk/command/clean_policy_cookbooks.rb +116 -116
- data/lib/chef-dk/command/clean_policy_revisions.rb +113 -113
- data/lib/chef-dk/command/delete_policy.rb +122 -122
- data/lib/chef-dk/command/delete_policy_group.rb +122 -122
- data/lib/chef-dk/command/diff.rb +316 -316
- data/lib/chef-dk/command/env.rb +90 -90
- data/lib/chef-dk/command/exec.rb +45 -45
- data/lib/chef-dk/command/gem.rb +47 -47
- data/lib/chef-dk/command/generator_commands/app.rb +107 -107
- data/lib/chef-dk/command/generator_commands/attribute.rb +37 -37
- data/lib/chef-dk/command/generator_commands/base.rb +3 -0
- data/lib/chef-dk/command/generator_commands/build_cookbook.rb +4 -4
- data/lib/chef-dk/command/generator_commands/chef_exts/generator_desc_resource.rb +85 -0
- data/lib/chef-dk/command/generator_commands/chef_exts/quieter_doc_formatter.rb +39 -0
- data/lib/chef-dk/command/generator_commands/chef_exts/recipe_dsl_ext.rb +40 -0
- data/lib/chef-dk/command/generator_commands/cookbook.rb +63 -8
- data/lib/chef-dk/command/generator_commands/cookbook_code_file.rb +100 -100
- data/lib/chef-dk/command/generator_commands/cookbook_file.rb +45 -45
- data/lib/chef-dk/command/generator_commands/generator_generator.rb +177 -177
- data/lib/chef-dk/command/generator_commands/lwrp.rb +36 -36
- data/lib/chef-dk/command/generator_commands/policyfile.rb +127 -127
- data/lib/chef-dk/command/generator_commands/recipe.rb +36 -36
- data/lib/chef-dk/command/generator_commands/repo.rb +125 -125
- data/lib/chef-dk/command/generator_commands/template.rb +46 -46
- data/lib/chef-dk/command/install.rb +121 -121
- data/lib/chef-dk/command/provision.rb +438 -438
- data/lib/chef-dk/command/push.rb +118 -118
- data/lib/chef-dk/command/push_archive.rb +126 -126
- data/lib/chef-dk/command/shell_init.rb +180 -180
- data/lib/chef-dk/command/show_policy.rb +165 -165
- data/lib/chef-dk/command/undelete.rb +155 -155
- data/lib/chef-dk/command/update.rb +148 -148
- data/lib/chef-dk/command/verify.rb +31 -26
- data/lib/chef-dk/completions/bash.sh.erb +5 -5
- data/lib/chef-dk/completions/chef.fish.erb +10 -10
- data/lib/chef-dk/completions/zsh.zsh.erb +21 -21
- data/lib/chef-dk/configurable.rb +69 -69
- data/lib/chef-dk/cookbook_metadata.rb +45 -45
- data/lib/chef-dk/cookbook_omnifetch.rb +32 -32
- data/lib/chef-dk/cookbook_profiler/git.rb +151 -151
- data/lib/chef-dk/cookbook_profiler/identifiers.rb +72 -72
- data/lib/chef-dk/cookbook_profiler/null_scm.rb +32 -32
- data/lib/chef-dk/exceptions.rb +129 -129
- data/lib/chef-dk/helpers.rb +10 -0
- data/lib/chef-dk/pager.rb +106 -106
- data/lib/chef-dk/policyfile/chef_repo_cookbook_source.rb +138 -138
- data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +54 -54
- data/lib/chef-dk/policyfile/community_cookbook_source.rb +97 -97
- data/lib/chef-dk/policyfile/comparison_base.rb +124 -124
- data/lib/chef-dk/policyfile/cookbook_location_specification.rb +154 -154
- data/lib/chef-dk/policyfile/cookbook_locks.rb +466 -466
- data/lib/chef-dk/policyfile/cookbook_sources.rb +22 -22
- data/lib/chef-dk/policyfile/delivery_supermarket_source.rb +90 -90
- data/lib/chef-dk/policyfile/differ.rb +266 -266
- data/lib/chef-dk/policyfile/dsl.rb +261 -261
- data/lib/chef-dk/policyfile/lister.rb +232 -232
- data/lib/chef-dk/policyfile/null_cookbook_source.rb +45 -45
- data/lib/chef-dk/policyfile/read_cookbook_for_compat_mode_upload.rb +124 -124
- data/lib/chef-dk/policyfile/reports/install.rb +70 -70
- data/lib/chef-dk/policyfile/reports/table_printer.rb +58 -58
- data/lib/chef-dk/policyfile/reports/upload.rb +70 -70
- data/lib/chef-dk/policyfile/solution_dependencies.rb +298 -298
- data/lib/chef-dk/policyfile/storage_config.rb +100 -100
- data/lib/chef-dk/policyfile/undo_record.rb +142 -142
- data/lib/chef-dk/policyfile/undo_stack.rb +130 -130
- data/lib/chef-dk/policyfile/uploader.rb +213 -213
- data/lib/chef-dk/policyfile_compiler.rb +419 -419
- data/lib/chef-dk/policyfile_lock.rb +552 -552
- data/lib/chef-dk/policyfile_services/clean_policies.rb +95 -95
- data/lib/chef-dk/policyfile_services/clean_policy_cookbooks.rb +125 -125
- data/lib/chef-dk/policyfile_services/export_repo.rb +421 -421
- data/lib/chef-dk/policyfile_services/install.rb +126 -126
- data/lib/chef-dk/policyfile_services/push_archive.rb +204 -204
- data/lib/chef-dk/policyfile_services/rm_policy.rb +142 -142
- data/lib/chef-dk/policyfile_services/rm_policy_group.rb +86 -86
- data/lib/chef-dk/policyfile_services/show_policy.rb +237 -237
- data/lib/chef-dk/policyfile_services/undelete.rb +108 -108
- data/lib/chef-dk/policyfile_services/update_attributes.rb +104 -104
- data/lib/chef-dk/service_exception_inspectors.rb +25 -25
- data/lib/chef-dk/service_exception_inspectors/base.rb +40 -40
- data/lib/chef-dk/service_exception_inspectors/http.rb +121 -121
- data/lib/chef-dk/service_exceptions.rb +143 -143
- data/lib/chef-dk/shell_out.rb +36 -36
- data/lib/chef-dk/skeletons/code_generator/files/default/Berksfile +3 -3
- data/lib/chef-dk/skeletons/code_generator/files/default/{build-cookbook → build_cookbook}/.kitchen.yml +2 -2
- data/lib/chef-dk/skeletons/code_generator/files/default/{build-cookbook → build_cookbook}/README.md +11 -11
- data/lib/chef-dk/skeletons/code_generator/files/default/{build-cookbook → build_cookbook}/test-fixture-recipe.rb +0 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/chefignore +102 -102
- data/lib/chef-dk/skeletons/code_generator/files/default/cookbook_readmes/README-policy.md +9 -9
- data/lib/chef-dk/skeletons/code_generator/files/default/cookbook_readmes/README.md +54 -54
- data/lib/chef-dk/skeletons/code_generator/files/default/delivery-config.json +2 -2
- data/lib/chef-dk/skeletons/code_generator/files/default/delivery-project.toml +21 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/gitignore +16 -16
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/README.md +9 -13
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/README.md +5 -5
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/attributes/default.rb +7 -7
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/metadata.rb +3 -3
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/data_bags/README.md +3 -5
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/data_bags/example/example_item.json +3 -3
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/dot-chef-repo.txt +6 -6
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/environments/README.md +9 -9
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/environments/example.json +12 -12
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/policies/README.md +24 -24
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/roles/README.md +9 -9
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/roles/example.json +12 -12
- data/lib/chef-dk/skeletons/code_generator/files/default/spec_helper.rb +2 -2
- data/lib/chef-dk/skeletons/code_generator/files/default/spec_helper_policyfile.rb +2 -2
- data/lib/chef-dk/skeletons/code_generator/metadata.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +5 -13
- data/lib/chef-dk/skeletons/code_generator/recipes/attribute.rb +12 -12
- data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +30 -7
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +12 -14
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook_file.rb +24 -24
- data/lib/chef-dk/skeletons/code_generator/recipes/lwrp.rb +23 -23
- data/lib/chef-dk/skeletons/code_generator/recipes/policyfile.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/recipes/recipe.rb +40 -27
- data/lib/chef-dk/skeletons/code_generator/recipes/repo.rb +67 -67
- data/lib/chef-dk/skeletons/code_generator/recipes/template.rb +1 -1
- data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.all_rights.erb +3 -3
- data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.gplv2.erb +339 -339
- data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.gplv3.erb +674 -674
- data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.mit.erb +21 -21
- data/lib/chef-dk/skeletons/code_generator/templates/default/Policyfile.rb.erb +25 -25
- data/lib/chef-dk/skeletons/code_generator/templates/default/README.md.erb +4 -4
- data/lib/chef-dk/skeletons/code_generator/templates/default/{build-cookbook → build_cookbook}/Berksfile.erb +0 -0
- data/lib/chef-dk/skeletons/code_generator/templates/default/{build-cookbook → build_cookbook}/metadata.rb.erb +1 -1
- data/lib/chef-dk/skeletons/code_generator/templates/default/{build-cookbook → build_cookbook}/recipe.rb.erb +1 -1
- data/lib/chef-dk/skeletons/code_generator/templates/default/inspec_default_test.rb.erb +18 -0
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen.yml.erb +2 -5
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen_policyfile.yml.erb +2 -5
- data/lib/chef-dk/skeletons/code_generator/templates/default/metadata.rb.erb +7 -7
- data/lib/chef-dk/skeletons/code_generator/templates/default/recipe.rb.erb +5 -5
- data/lib/chef-dk/skeletons/code_generator/templates/default/recipe_spec.rb.erb +20 -20
- data/lib/chef-dk/skeletons/code_generator/templates/default/repo/gitignore.erb +11 -11
- data/lib/chef-dk/ui.rb +58 -58
- data/lib/chef-dk/version.rb +1 -1
- data/lib/kitchen/provisioner/policyfile_zero.rb +195 -195
- data/omnibus_overrides.rb +3 -3
- data/spec/shared/a_file_generator.rb +125 -125
- data/spec/shared/a_generated_file.rb +12 -12
- data/spec/shared/command_with_ui_object.rb +11 -11
- data/spec/shared/fixture_cookbook_checksums.rb +47 -47
- data/spec/shared/setup_git_cookbooks.rb +53 -53
- data/spec/spec_helper.rb +51 -51
- data/spec/test_helpers.rb +84 -84
- data/spec/unit/chef_runner_spec.rb +7 -5
- data/spec/unit/command/clean_policy_cookbooks_spec.rb +181 -181
- data/spec/unit/command/clean_policy_revisions_spec.rb +181 -181
- data/spec/unit/command/delete_policy_group_spec.rb +207 -207
- data/spec/unit/command/delete_policy_spec.rb +207 -207
- data/spec/unit/command/diff_spec.rb +312 -312
- data/spec/unit/command/env_spec.rb +52 -52
- data/spec/unit/command/exec_spec.rb +179 -179
- data/spec/unit/command/export_spec.rb +200 -200
- data/spec/unit/command/generate_spec.rb +142 -142
- data/spec/unit/command/generator_commands/app_spec.rb +5 -8
- data/spec/unit/command/generator_commands/attribute_spec.rb +32 -32
- data/spec/unit/command/generator_commands/base_spec.rb +136 -136
- data/spec/unit/command/generator_commands/build_cookbook_spec.rb +9 -9
- data/spec/unit/command/generator_commands/chef_exts/generator_desc_resource_spec.rb +97 -0
- data/spec/unit/command/generator_commands/chef_exts/recipe_dsl_ext_spec.rb +111 -0
- data/spec/unit/command/generator_commands/cookbook_file_spec.rb +32 -32
- data/spec/unit/command/generator_commands/cookbook_spec.rb +291 -111
- data/spec/unit/command/generator_commands/generator_generator_spec.rb +229 -229
- data/spec/unit/command/generator_commands/lwrp_spec.rb +32 -32
- data/spec/unit/command/generator_commands/policyfile_spec.rb +225 -225
- data/spec/unit/command/generator_commands/recipe_spec.rb +36 -34
- data/spec/unit/command/generator_commands/template_spec.rb +1 -1
- data/spec/unit/command/install_spec.rb +179 -179
- data/spec/unit/command/provision_spec.rb +592 -592
- data/spec/unit/command/push_archive_spec.rb +153 -153
- data/spec/unit/command/push_spec.rb +199 -199
- data/spec/unit/command/shell_init_spec.rb +329 -329
- data/spec/unit/command/show_policy_spec.rb +235 -235
- data/spec/unit/command/undelete_spec.rb +246 -246
- data/spec/unit/command/update_spec.rb +275 -275
- data/spec/unit/command/verify_spec.rb +0 -1
- data/spec/unit/commands_map_spec.rb +57 -57
- data/spec/unit/configurable_spec.rb +41 -41
- data/spec/unit/cookbook_metadata_spec.rb +98 -98
- data/spec/unit/cookbook_profiler/git_spec.rb +176 -176
- data/spec/unit/cookbook_profiler/identifiers_spec.rb +83 -83
- data/spec/unit/fixtures/chef-runner-cookbooks/test_cookbook/recipes/recipe_one.rb +9 -9
- data/spec/unit/fixtures/chef-runner-cookbooks/test_cookbook/recipes/recipe_two.rb +9 -9
- data/spec/unit/fixtures/command/cli_test_command.rb +26 -26
- data/spec/unit/fixtures/command/explicit_path_example.rb +7 -7
- data/spec/unit/fixtures/configurable/test_config_loader.rb +5 -5
- data/spec/unit/fixtures/configurable/test_configurable.rb +10 -10
- data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/.kitchen.yml +16 -16
- data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/Berksfile +3 -3
- data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/README.md +4 -4
- data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/chefignore +96 -96
- data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb +8 -8
- data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb +8 -8
- data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/.kitchen.yml +16 -16
- data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/Berksfile +3 -3
- data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/README.md +4 -4
- data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/chefignore +96 -96
- data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/metadata.rb +8 -8
- data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/recipes/default.rb +8 -8
- data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/.kitchen.yml +16 -16
- data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/Berksfile +3 -3
- data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/README.md +4 -4
- data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/chefignore +96 -96
- data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/metadata.rb +8 -8
- data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/recipes/default.rb +8 -8
- data/spec/unit/fixtures/cookbooks_api/pruned_small_universe.json +1321 -1321
- data/spec/unit/fixtures/cookbooks_api/small_universe.json +2987 -2987
- data/spec/unit/fixtures/cookbooks_api/universe.json +1 -1
- data/spec/unit/fixtures/cookbooks_api/update_fixtures.rb +36 -36
- data/spec/unit/fixtures/dev_cookbooks/README.md +16 -16
- data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/integration_test +2 -2
- data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/verify_me +5 -5
- data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/chef/verify_me +3 -3
- data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/test-kitchen/verify_me +2 -2
- data/spec/unit/fixtures/example_cookbook/.gitignore +17 -17
- data/spec/unit/fixtures/example_cookbook/.kitchen.yml +16 -16
- data/spec/unit/fixtures/example_cookbook/Berksfile +3 -3
- data/spec/unit/fixtures/example_cookbook/README.md +4 -4
- data/spec/unit/fixtures/example_cookbook/chefignore +96 -96
- data/spec/unit/fixtures/example_cookbook/metadata.rb +8 -8
- data/spec/unit/fixtures/example_cookbook/recipes/default.rb +8 -8
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/.gitignore +17 -17
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/.kitchen.yml +16 -16
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/Berksfile +3 -3
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/README.md +4 -4
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/chefignore +96 -96
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/metadata.json +5 -5
- data/spec/unit/fixtures/example_cookbook_metadata_json_only/recipes/default.rb +8 -8
- data/spec/unit/fixtures/example_cookbook_no_metadata/.gitignore +17 -17
- data/spec/unit/fixtures/example_cookbook_no_metadata/.kitchen.yml +16 -16
- data/spec/unit/fixtures/example_cookbook_no_metadata/Berksfile +3 -3
- data/spec/unit/fixtures/example_cookbook_no_metadata/README.md +4 -4
- data/spec/unit/fixtures/example_cookbook_no_metadata/chefignore +96 -96
- data/spec/unit/fixtures/example_cookbook_no_metadata/recipes/default.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/README.md +4 -4
- data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/chefignore +96 -96
- data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/metadata.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/recipes/default.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/Berksfile +3 -3
- data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/README.md +4 -4
- data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/chefignore +96 -96
- data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/metadata.rb +9 -9
- data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/recipes/default.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/.kitchen.yml +16 -16
- data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/Berksfile +3 -3
- data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/README.md +4 -4
- data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/chefignore +96 -96
- data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/metadata.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/recipes/default.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/metadata-missing/README.md +2 -2
- data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/.kitchen.yml +16 -16
- data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/README.md +4 -4
- data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb +8 -8
- data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb +8 -8
- data/spec/unit/helpers_spec.rb +14 -5
- data/spec/unit/pager_spec.rb +119 -119
- data/spec/unit/policyfile/chef_repo_cookbook_source_spec.rb +93 -93
- data/spec/unit/policyfile/chef_server_cookbook_source_spec.rb +34 -34
- data/spec/unit/policyfile/community_cookbook_source_spec.rb +84 -84
- data/spec/unit/policyfile/comparison_base_spec.rb +343 -343
- data/spec/unit/policyfile/cookbook_location_specification_spec.rb +277 -277
- data/spec/unit/policyfile/cookbook_locks_spec.rb +529 -529
- data/spec/unit/policyfile/delivery_supermarket_source_spec.rb +130 -130
- data/spec/unit/policyfile/differ_spec.rb +687 -687
- data/spec/unit/policyfile/lister_spec.rb +272 -272
- data/spec/unit/policyfile/null_cookbook_source_spec.rb +35 -35
- data/spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb +92 -92
- data/spec/unit/policyfile/reports/install_spec.rb +115 -115
- data/spec/unit/policyfile/reports/upload_spec.rb +96 -96
- data/spec/unit/policyfile/solution_dependencies_spec.rb +145 -145
- data/spec/unit/policyfile/storage_config_spec.rb +172 -172
- data/spec/unit/policyfile/undo_record_spec.rb +260 -260
- data/spec/unit/policyfile/undo_stack_spec.rb +266 -266
- data/spec/unit/policyfile/uploader_spec.rb +410 -410
- data/spec/unit/policyfile_demands_spec.rb +1203 -1203
- data/spec/unit/policyfile_evaluation_spec.rb +642 -642
- data/spec/unit/policyfile_lock_build_spec.rb +1056 -1056
- data/spec/unit/policyfile_lock_install_spec.rb +138 -138
- data/spec/unit/policyfile_lock_serialization_spec.rb +425 -425
- data/spec/unit/policyfile_lock_validation_spec.rb +611 -611
- data/spec/unit/policyfile_services/clean_policies_spec.rb +236 -236
- data/spec/unit/policyfile_services/clean_policy_cookbooks_spec.rb +275 -275
- data/spec/unit/policyfile_services/export_repo_spec.rb +481 -481
- data/spec/unit/policyfile_services/install_spec.rb +211 -211
- data/spec/unit/policyfile_services/push_archive_spec.rb +378 -378
- data/spec/unit/policyfile_services/push_spec.rb +233 -233
- data/spec/unit/policyfile_services/rm_policy_group_spec.rb +241 -241
- data/spec/unit/policyfile_services/rm_policy_spec.rb +266 -266
- data/spec/unit/policyfile_services/show_policy_spec.rb +889 -889
- data/spec/unit/policyfile_services/undelete_spec.rb +304 -304
- data/spec/unit/policyfile_services/update_attributes_spec.rb +217 -217
- data/spec/unit/service_exception_inspectors/base_spec.rb +43 -43
- data/spec/unit/service_exception_inspectors/http_spec.rb +140 -140
- data/spec/unit/shell_out_spec.rb +34 -34
- data/tasks/bin/bundle-platform +0 -0
- data/tasks/bin/bundle-platform.bat +0 -0
- data/tasks/bin/create-override-gemfile +0 -0
- data/version_policy.rb +4 -3
- data/warning.txt +9 -9
- metadata +23 -10
- data/lib/chef-dk/skeletons/code_generator/files/default/serverspec_spec_helper.rb +0 -8
- data/lib/chef-dk/skeletons/code_generator/templates/default/serverspec_default_spec.rb.erb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93c94115bcdbe4eb0e2c5938689c66292c346a77
|
4
|
+
data.tar.gz: 08739c3ab1e1944401a208f16d69ed921cd40b16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9ae2a76b69b2cfdf3b232cde35a43ed26ceacc4e0436c90d2944758511cf2e5788334eb54dbbd8bb15472f977ebb6a91c3c1571da824ff549682e69dd39d3af
|
7
|
+
data.tar.gz: 30d8b6e29f7cf5041daaf77e2651cb671b648037a664beca4fb8d8e1c3b1966ace1c0d99479c5c7602ccd84fc5b8fd3969b3ba6aa073827b904d535b523479b2
|
data/CONTRIBUTING.md
CHANGED
@@ -27,9 +27,6 @@ Chef is built to last. We strive to ensure high quality throughout the Chef expe
|
|
27
27
|
continuously on all the pull requests. We require the Travis runs to succeed on every pull
|
28
28
|
request before being merged.
|
29
29
|
|
30
|
-
In addition to this it would be nice to include the description of the problem you are solving
|
31
|
-
with your change. You can use [Chef Issue Template](#issuetemplate) in the description section
|
32
|
-
of the pull request.
|
33
30
|
|
34
31
|
### <a name="cr"></a> Chef Code Review Process
|
35
32
|
|
@@ -49,6 +46,7 @@ Once you a pull request, the **Chef Engineering Team** or **Chef Core Committers
|
|
49
46
|
If you would like to learn about when your code will be available in a release of Chef, read more about
|
50
47
|
[Chef Release Process](#release).
|
51
48
|
|
49
|
+
|
52
50
|
### Contributor License Agreement (CLA)
|
53
51
|
Licensing is very important to open source projects. It helps ensure the
|
54
52
|
software continues to be available under the terms that the author desired.
|
@@ -121,29 +119,6 @@ If you are familiar with Chef and know the component that is causing you a probl
|
|
121
119
|
Otherwise you can file your issue in the [Chef project](https://github.com/chef/chef/issues)
|
122
120
|
and we will make sure it gets filed against the appropriate project.
|
123
121
|
|
124
|
-
In order to decrease the back and forth in issues, and to help us get to the bottom of them quickly
|
125
|
-
we use the below issue template. You can copy/paste this template into the issue you are opening and
|
126
|
-
edit it accordingly.
|
127
|
-
|
128
|
-
<a name="issuetemplate"></a>
|
129
|
-
```
|
130
|
-
### Version:
|
131
|
-
[Version of the project installed]
|
132
|
-
|
133
|
-
### Environment: [Details about the environment such as the Operating System, cookbook details, etc...]
|
134
|
-
|
135
|
-
### Scenario:
|
136
|
-
[What you are trying to achieve and you can't?]
|
137
|
-
|
138
|
-
### Steps to Reproduce:
|
139
|
-
[If you are filing an issue what are the things we need to do in order to repro your problem?]
|
140
|
-
|
141
|
-
### Expected Result:
|
142
|
-
[What are you expecting to happen as the consequence of above reproduction steps?]
|
143
|
-
|
144
|
-
### Actual Result:
|
145
|
-
[What actually happens after the reproduction steps?]
|
146
|
-
```
|
147
122
|
|
148
123
|
## <a name="release"></a> Chef Release Cycles
|
149
124
|
|
data/Gemfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#
|
2
|
-
# Copyright:: Copyright (c) 2014 Chef Software Inc.
|
2
|
+
# Copyright:: Copyright (c) 2014-2016 Chef Software Inc.
|
3
3
|
# License:: Apache License, Version 2.0
|
4
4
|
#
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -27,6 +27,9 @@ gem "chef-dk", path: "."
|
|
27
27
|
# EXPERIMENTAL: ALL gems specified here will be installed in chef-dk omnibus.
|
28
28
|
# This represents all gems that will be part of chef-dk.
|
29
29
|
|
30
|
+
# TODO remove this when we update Chef to use the new api exposed in 3.5.1
|
31
|
+
gem "rspec-core", "= 3.4.4"
|
32
|
+
|
30
33
|
group(:omnibus_package, :development, :test) do
|
31
34
|
gem "pry"
|
32
35
|
gem "rake"
|
@@ -52,13 +55,14 @@ group(:omnibus_package) do
|
|
52
55
|
gem "chef-provisioning-vagrant", ">= 0.11.0"
|
53
56
|
gem "chef-vault"
|
54
57
|
# The chef version is pinned by "rake dependencies", which grabs the current version from omnibus.
|
55
|
-
gem "chef", github: "chef/chef", branch: "v12.
|
58
|
+
gem "chef", github: "chef/chef", branch: "v12.12.15"
|
56
59
|
gem "cheffish", ">= 2.0.3"
|
57
60
|
gem "chefspec"
|
58
61
|
gem "fauxhai"
|
59
62
|
gem "foodcritic", ">= 6.1.1"
|
60
63
|
gem "inspec", ">= 0.17.1"
|
61
64
|
gem "kitchen-ec2"
|
65
|
+
gem "kitchen-dokken"
|
62
66
|
gem "kitchen-inspec"
|
63
67
|
gem "kitchen-vagrant"
|
64
68
|
gem "knife-windows"
|
@@ -68,9 +72,11 @@ group(:omnibus_package) do
|
|
68
72
|
gem "listen", "< 3.1.0"
|
69
73
|
gem "mixlib-install"
|
70
74
|
|
75
|
+
# until dk runs on ruby 2.2.2+
|
76
|
+
gem "activesupport", "< 5.0"
|
77
|
+
|
71
78
|
# For Delivery build node
|
72
79
|
gem "chef-sugar"
|
73
|
-
gem "knife-supermarket"
|
74
80
|
gem "mixlib-versioning"
|
75
81
|
gem "artifactory"
|
76
82
|
# The opscode-pushy-client version is pinned by "rake dependencies", which grabs the current version from omnibus.
|
@@ -81,7 +87,7 @@ group(:omnibus_package) do
|
|
81
87
|
# All of the following used to be software definitions we included:
|
82
88
|
gem "knife-spork"
|
83
89
|
gem "dep-selector-libgecode"
|
84
|
-
gem "nokogiri"
|
90
|
+
gem "nokogiri"
|
85
91
|
gem "pry-byebug"
|
86
92
|
gem "pry-remote"
|
87
93
|
gem "pry-stack_explorer"
|
data/Gemfile.lock
CHANGED
@@ -7,12 +7,12 @@ GIT
|
|
7
7
|
|
8
8
|
GIT
|
9
9
|
remote: git://github.com/chef/chef.git
|
10
|
-
revision:
|
11
|
-
branch: v12.
|
10
|
+
revision: aca2bd61c35d9cc26b351f87db62f9739151c7f6
|
11
|
+
branch: v12.12.15
|
12
12
|
specs:
|
13
|
-
chef (12.
|
13
|
+
chef (12.12.15)
|
14
14
|
bundler (>= 1.10)
|
15
|
-
chef-config (= 12.
|
15
|
+
chef-config (= 12.12.15)
|
16
16
|
chef-zero (~> 4.5)
|
17
17
|
diff-lcs (~> 1.2, >= 1.2.4)
|
18
18
|
erubis (~> 2.7)
|
@@ -37,9 +37,9 @@ GIT
|
|
37
37
|
specinfra (~> 2.10)
|
38
38
|
syslog-logger (~> 1.6)
|
39
39
|
uuidtools (~> 2.1.5)
|
40
|
-
chef (12.
|
40
|
+
chef (12.12.15-universal-mingw32)
|
41
41
|
bundler (>= 1.10)
|
42
|
-
chef-config (= 12.
|
42
|
+
chef-config (= 12.12.15)
|
43
43
|
chef-zero (~> 4.5)
|
44
44
|
diff-lcs (~> 1.2, >= 1.2.4)
|
45
45
|
erubis (~> 2.7)
|
@@ -75,10 +75,6 @@ GIT
|
|
75
75
|
win32-service (~> 0.8.7)
|
76
76
|
windows-api (~> 0.4.4)
|
77
77
|
wmi-lite (~> 1.0)
|
78
|
-
chef-config (12.11.18)
|
79
|
-
fuzzyurl (~> 0.8.0)
|
80
|
-
mixlib-config (~> 2.0)
|
81
|
-
mixlib-shellout (~> 2.0)
|
82
78
|
|
83
79
|
GIT
|
84
80
|
remote: git://github.com/chef/opscode-pushy-client.git
|
@@ -94,14 +90,14 @@ GIT
|
|
94
90
|
PATH
|
95
91
|
remote: .
|
96
92
|
specs:
|
97
|
-
chef-dk (0.
|
93
|
+
chef-dk (0.16.28)
|
98
94
|
chef (~> 12.5)
|
99
95
|
chef-provisioning (~> 1.2)
|
100
96
|
cookbook-omnifetch (~> 0.2, >= 0.2.2)
|
101
97
|
diff-lcs (~> 1.0)
|
102
98
|
ffi-yajl (>= 1.0, < 3.0)
|
103
99
|
minitar (~> 0.5.4)
|
104
|
-
mixlib-cli (~> 1.5)
|
100
|
+
mixlib-cli (~> 1.5, < 1.7)
|
105
101
|
mixlib-shellout (~> 2.0)
|
106
102
|
paint (~> 1.0)
|
107
103
|
solve (~> 2.0, >= 2.0.1)
|
@@ -110,7 +106,7 @@ GEM
|
|
110
106
|
remote: https://rubygems.org/
|
111
107
|
specs:
|
112
108
|
CFPropertyList (2.3.2)
|
113
|
-
activesupport (4.2.
|
109
|
+
activesupport (4.2.7)
|
114
110
|
i18n (~> 0.7)
|
115
111
|
json (~> 1.7, >= 1.7.7)
|
116
112
|
minitest (~> 5.1)
|
@@ -118,18 +114,18 @@ GEM
|
|
118
114
|
tzinfo (~> 1.1)
|
119
115
|
addressable (2.4.0)
|
120
116
|
app_conf (0.4.2)
|
121
|
-
artifactory (2.3.
|
117
|
+
artifactory (2.3.3)
|
122
118
|
ast (2.3.0)
|
123
119
|
autoparse (0.3.3)
|
124
120
|
addressable (>= 2.3.1)
|
125
121
|
extlib (>= 0.9.15)
|
126
122
|
multi_json (>= 1.0.0)
|
127
|
-
aws-sdk (2.3.
|
128
|
-
aws-sdk-resources (= 2.3.
|
129
|
-
aws-sdk-core (2.3.
|
123
|
+
aws-sdk (2.3.22)
|
124
|
+
aws-sdk-resources (= 2.3.22)
|
125
|
+
aws-sdk-core (2.3.22)
|
130
126
|
jmespath (~> 1.0)
|
131
|
-
aws-sdk-resources (2.3.
|
132
|
-
aws-sdk-core (= 2.3.
|
127
|
+
aws-sdk-resources (2.3.22)
|
128
|
+
aws-sdk-core (= 2.3.22)
|
133
129
|
aws-sdk-v1 (1.66.0)
|
134
130
|
json (~> 1.4)
|
135
131
|
nokogiri (>= 1.4.4)
|
@@ -172,6 +168,10 @@ GEM
|
|
172
168
|
celluloid-io (0.16.2)
|
173
169
|
celluloid (>= 0.16.0)
|
174
170
|
nio4r (>= 1.1.0)
|
171
|
+
chef-config (12.12.15)
|
172
|
+
fuzzyurl (~> 0.8.0)
|
173
|
+
mixlib-config (~> 2.0)
|
174
|
+
mixlib-shellout (~> 2.0)
|
175
175
|
chef-provisioning (1.8.0)
|
176
176
|
cheffish (>= 1.3.1, < 3.0)
|
177
177
|
inifile (>= 2.0.2)
|
@@ -199,11 +199,11 @@ GEM
|
|
199
199
|
chef-provisioning
|
200
200
|
chef-sugar (3.3.0)
|
201
201
|
chef-vault (2.9.0)
|
202
|
-
chef-zero (4.
|
202
|
+
chef-zero (4.7.1)
|
203
203
|
ffi-yajl (~> 2.2)
|
204
204
|
hashie (>= 2.0, < 4.0)
|
205
205
|
mixlib-log (~> 1.3)
|
206
|
-
rack
|
206
|
+
rack (< 2)
|
207
207
|
uuidtools (~> 2.1)
|
208
208
|
cheffish (2.0.4)
|
209
209
|
chef-zero (~> 4.3)
|
@@ -215,6 +215,7 @@ GEM
|
|
215
215
|
cleanroom (1.0.0)
|
216
216
|
coderay (1.1.1)
|
217
217
|
compat_resource (12.10.6)
|
218
|
+
concurrent-ruby (1.0.2)
|
218
219
|
cookbook-omnifetch (0.2.3)
|
219
220
|
minitar (~> 0.5.4)
|
220
221
|
cookstyle (0.0.1)
|
@@ -228,22 +229,24 @@ GEM
|
|
228
229
|
ffi (~> 1.9)
|
229
230
|
diff-lcs (1.2.5)
|
230
231
|
diffy (3.1.0)
|
231
|
-
docker-api (1.
|
232
|
+
docker-api (1.29.0)
|
232
233
|
excon (>= 0.38.0)
|
233
234
|
json
|
234
235
|
erubis (2.7.0)
|
235
|
-
excon (0.
|
236
|
+
excon (0.51.0)
|
236
237
|
extlib (0.9.16)
|
237
238
|
faraday (0.9.2)
|
238
239
|
multipart-post (>= 1.2, < 3)
|
239
|
-
fauxhai (3.
|
240
|
+
fauxhai (3.6.0)
|
240
241
|
net-ssh
|
241
|
-
ffi (1.9.
|
242
|
-
ffi (1.9.
|
242
|
+
ffi (1.9.14)
|
243
|
+
ffi (1.9.14-x86-mingw32)
|
243
244
|
ffi-rzmq (2.0.4)
|
244
245
|
ffi-rzmq-core (>= 1.0.1)
|
245
246
|
ffi-rzmq-core (1.0.5)
|
246
247
|
ffi
|
248
|
+
ffi-win32-extensions (1.0.2)
|
249
|
+
ffi
|
247
250
|
ffi-yajl (2.2.3)
|
248
251
|
libyajl2 (~> 1.2)
|
249
252
|
fission (0.5.0)
|
@@ -285,12 +288,12 @@ GEM
|
|
285
288
|
fog-atmos (0.1.0)
|
286
289
|
fog-core
|
287
290
|
fog-xml
|
288
|
-
fog-aws (0.
|
289
|
-
fog-core (~> 1.
|
291
|
+
fog-aws (0.10.0)
|
292
|
+
fog-core (~> 1.38)
|
290
293
|
fog-json (~> 1.0)
|
291
294
|
fog-xml (~> 0.1)
|
292
295
|
ipaddress (~> 0.8)
|
293
|
-
fog-brightbox (0.
|
296
|
+
fog-brightbox (0.11.0)
|
294
297
|
fog-core (~> 1.22)
|
295
298
|
fog-json
|
296
299
|
inflecto (~> 0.0.2)
|
@@ -299,7 +302,7 @@ GEM
|
|
299
302
|
fog-json (~> 1.0)
|
300
303
|
fog-xml (~> 0.1)
|
301
304
|
ipaddress (~> 0.8)
|
302
|
-
fog-core (1.
|
305
|
+
fog-core (1.42.0)
|
303
306
|
builder
|
304
307
|
excon (~> 0.49)
|
305
308
|
formatador (~> 0.2)
|
@@ -319,8 +322,8 @@ GEM
|
|
319
322
|
multi_json (~> 1.10)
|
320
323
|
fog-local (0.3.0)
|
321
324
|
fog-core (~> 1.27)
|
322
|
-
fog-openstack (0.1.
|
323
|
-
fog-core (>= 1.
|
325
|
+
fog-openstack (0.1.8)
|
326
|
+
fog-core (>= 1.40)
|
324
327
|
fog-json (>= 1.0)
|
325
328
|
ipaddress (>= 0.8)
|
326
329
|
fog-powerdns (0.1.1)
|
@@ -350,7 +353,7 @@ GEM
|
|
350
353
|
fog-serverlove (0.1.2)
|
351
354
|
fog-core
|
352
355
|
fog-json
|
353
|
-
fog-softlayer (1.1.
|
356
|
+
fog-softlayer (1.1.3)
|
354
357
|
fog-core
|
355
358
|
fog-json
|
356
359
|
fog-storm_on_demand (0.1.1)
|
@@ -374,7 +377,7 @@ GEM
|
|
374
377
|
fog-xml (0.1.2)
|
375
378
|
fog-core
|
376
379
|
nokogiri (~> 1.5, >= 1.5.11)
|
377
|
-
foodcritic (
|
380
|
+
foodcritic (7.0.1)
|
378
381
|
cucumber-core (>= 1.3)
|
379
382
|
erubis
|
380
383
|
nokogiri (>= 1.5, < 2.0)
|
@@ -427,7 +430,7 @@ GEM
|
|
427
430
|
inflecto (0.0.2)
|
428
431
|
inifile (3.0.0)
|
429
432
|
iniparse (1.4.2)
|
430
|
-
inspec (0.
|
433
|
+
inspec (0.27.1)
|
431
434
|
hashie (~> 3.4)
|
432
435
|
json (~> 1.8)
|
433
436
|
method_source (~> 0.8)
|
@@ -437,20 +440,21 @@ GEM
|
|
437
440
|
rspec-its (~> 1.2)
|
438
441
|
rubyzip (~> 1.1)
|
439
442
|
thor (~> 0.19)
|
440
|
-
train (
|
443
|
+
train (>= 0.15.1, < 1.0)
|
441
444
|
ipaddress (0.8.3)
|
442
|
-
jmespath (1.
|
443
|
-
json_pure (>= 1.8.1)
|
445
|
+
jmespath (1.3.0)
|
444
446
|
json (1.8.3)
|
445
|
-
json_pure (1.8.3)
|
446
447
|
jwt (1.5.4)
|
448
|
+
kitchen-dokken (0.0.31)
|
449
|
+
docker-api (~> 1.29)
|
450
|
+
test-kitchen (~> 1.5)
|
447
451
|
kitchen-ec2 (1.0.0)
|
448
452
|
aws-sdk (~> 2)
|
449
453
|
excon
|
450
454
|
multi_json
|
451
455
|
retryable (~> 2.0)
|
452
456
|
test-kitchen (~> 1.4, >= 1.4.1)
|
453
|
-
kitchen-inspec (0.
|
457
|
+
kitchen-inspec (0.15.0)
|
454
458
|
inspec (>= 0.22.0, < 1.0.0)
|
455
459
|
test-kitchen (~> 1.6)
|
456
460
|
kitchen-vagrant (0.20.0)
|
@@ -462,8 +466,6 @@ GEM
|
|
462
466
|
chef (>= 11.0.0)
|
463
467
|
diffy (>= 3.0.1)
|
464
468
|
git (>= 1.2.5)
|
465
|
-
knife-supermarket (0.2.4)
|
466
|
-
chef (>= 0.10.10)
|
467
469
|
knife-windows (1.4.1)
|
468
470
|
winrm (~> 1.7)
|
469
471
|
launchy (2.4.3)
|
@@ -482,15 +484,16 @@ GEM
|
|
482
484
|
memoist (0.14.0)
|
483
485
|
method_source (0.8.2)
|
484
486
|
mime-types (2.99.2)
|
485
|
-
mini_portile2 (2.
|
487
|
+
mini_portile2 (2.1.0)
|
486
488
|
minitar (0.5.4)
|
487
489
|
minitest (5.9.0)
|
488
|
-
mixlib-archive (0.
|
490
|
+
mixlib-archive (0.2.0)
|
491
|
+
mixlib-log
|
489
492
|
mixlib-authentication (1.4.1)
|
490
493
|
mixlib-log
|
491
494
|
mixlib-cli (1.6.0)
|
492
495
|
mixlib-config (2.2.1)
|
493
|
-
mixlib-install (1.0
|
496
|
+
mixlib-install (1.1.0)
|
494
497
|
artifactory
|
495
498
|
mixlib-shellout
|
496
499
|
mixlib-versioning
|
@@ -508,7 +511,7 @@ GEM
|
|
508
511
|
net-ssh (>= 2.6.5)
|
509
512
|
net-sftp (2.1.2)
|
510
513
|
net-ssh (>= 2.6.5)
|
511
|
-
net-ssh (3.
|
514
|
+
net-ssh (3.2.0)
|
512
515
|
net-ssh-gateway (1.2.0)
|
513
516
|
net-ssh (>= 2.6.5)
|
514
517
|
net-ssh-multi (1.2.1)
|
@@ -516,17 +519,19 @@ GEM
|
|
516
519
|
net-ssh-gateway (>= 1.2.0)
|
517
520
|
net-telnet (0.1.1)
|
518
521
|
nio4r (1.2.1)
|
519
|
-
nokogiri (1.6.
|
520
|
-
mini_portile2 (~> 2.
|
521
|
-
|
522
|
-
|
522
|
+
nokogiri (1.6.8)
|
523
|
+
mini_portile2 (~> 2.1.0)
|
524
|
+
pkg-config (~> 1.1.7)
|
525
|
+
nokogiri (1.6.8-x86-mingw32)
|
526
|
+
mini_portile2 (~> 2.1.0)
|
527
|
+
pkg-config (~> 1.1.7)
|
523
528
|
nori (2.6.0)
|
524
529
|
notiffany (0.1.0)
|
525
530
|
nenv (~> 0.1)
|
526
531
|
shellany (~> 0.0)
|
527
532
|
octokit (4.3.0)
|
528
533
|
sawyer (~> 0.7.0, >= 0.5.3)
|
529
|
-
ohai (8.
|
534
|
+
ohai (8.17.1)
|
530
535
|
chef-config (>= 12.5.0.alpha.1, < 13)
|
531
536
|
ffi (~> 1.9)
|
532
537
|
ffi-yajl (~> 2.2)
|
@@ -542,11 +547,12 @@ GEM
|
|
542
547
|
paint (1.0.1)
|
543
548
|
parser (2.3.1.2)
|
544
549
|
ast (~> 2.2)
|
550
|
+
pkg-config (1.1.7)
|
545
551
|
plist (3.2.0)
|
546
552
|
polyglot (0.3.5)
|
547
553
|
powerpack (0.1.1)
|
548
554
|
proxifier (1.0.3)
|
549
|
-
pry (0.10.
|
555
|
+
pry (0.10.4)
|
550
556
|
coderay (~> 1.1.0)
|
551
557
|
method_source (~> 0.8.1)
|
552
558
|
slop (~> 3.4)
|
@@ -574,7 +580,7 @@ GEM
|
|
574
580
|
json (~> 1.4)
|
575
581
|
rdp-ruby-wmi (0.3.1)
|
576
582
|
retriable (1.4.1)
|
577
|
-
retryable (2.0.
|
583
|
+
retryable (2.0.4)
|
578
584
|
ridley (4.5.1)
|
579
585
|
addressable
|
580
586
|
buff-config (~> 1.0)
|
@@ -637,7 +643,7 @@ GEM
|
|
637
643
|
specinfra (~> 2.53)
|
638
644
|
sfl (2.2)
|
639
645
|
shellany (0.0.1)
|
640
|
-
signet (0.7.
|
646
|
+
signet (0.7.3)
|
641
647
|
addressable (~> 2.3)
|
642
648
|
faraday (~> 0.9)
|
643
649
|
jwt (~> 1.5)
|
@@ -646,7 +652,7 @@ GEM
|
|
646
652
|
solve (2.0.3)
|
647
653
|
molinillo (~> 0.4.2)
|
648
654
|
semverse (~> 1.1)
|
649
|
-
specinfra (2.59.
|
655
|
+
specinfra (2.59.6)
|
650
656
|
net-scp
|
651
657
|
net-ssh (>= 2.7, < 4.0)
|
652
658
|
net-telnet
|
@@ -659,7 +665,7 @@ GEM
|
|
659
665
|
uuid (~> 2.0)
|
660
666
|
syslog-logger (1.6.8)
|
661
667
|
systemu (2.6.5)
|
662
|
-
test-kitchen (1.10.
|
668
|
+
test-kitchen (1.10.2)
|
663
669
|
mixlib-install (~> 1.0, >= 1.0.4)
|
664
670
|
mixlib-shellout (>= 1.2, < 3.0)
|
665
671
|
net-scp (~> 1.1)
|
@@ -670,7 +676,7 @@ GEM
|
|
670
676
|
thread_safe (0.3.5)
|
671
677
|
timers (4.0.4)
|
672
678
|
hitimes
|
673
|
-
train (0.
|
679
|
+
train (0.15.1)
|
674
680
|
docker-api (~> 1.26)
|
675
681
|
json (~> 1.8)
|
676
682
|
mixlib-shellout (~> 2.0)
|
@@ -698,7 +704,7 @@ GEM
|
|
698
704
|
win32-ipc (>= 0.6.0)
|
699
705
|
win32-eventlog (0.6.3)
|
700
706
|
ffi
|
701
|
-
win32-ipc (0.
|
707
|
+
win32-ipc (0.7.0)
|
702
708
|
ffi
|
703
709
|
win32-mmap (0.4.2)
|
704
710
|
ffi
|
@@ -706,11 +712,12 @@ GEM
|
|
706
712
|
win32-ipc (>= 0.6.0)
|
707
713
|
win32-process (0.8.3)
|
708
714
|
ffi (>= 1.0.0)
|
709
|
-
win32-service (0.8.
|
715
|
+
win32-service (0.8.9)
|
710
716
|
ffi
|
717
|
+
ffi-win32-extensions
|
711
718
|
windows-api (0.4.4)
|
712
719
|
win32-api (>= 1.4.5)
|
713
|
-
windows-pr (1.2.
|
720
|
+
windows-pr (1.2.5)
|
714
721
|
win32-api (>= 1.4.5)
|
715
722
|
windows-api (>= 0.4.0)
|
716
723
|
winrm (1.8.1)
|
@@ -724,7 +731,7 @@ GEM
|
|
724
731
|
winrm-elevated (0.4.0)
|
725
732
|
winrm (~> 1.5)
|
726
733
|
winrm-fs (~> 0.4.2)
|
727
|
-
winrm-fs (0.4.
|
734
|
+
winrm-fs (0.4.3)
|
728
735
|
erubis (~> 2.7)
|
729
736
|
logging (>= 1.6.1, < 3.0)
|
730
737
|
rubyzip (~> 1.1)
|
@@ -732,13 +739,14 @@ GEM
|
|
732
739
|
wmi-lite (1.0.0)
|
733
740
|
xml-simple (1.1.5)
|
734
741
|
yajl-ruby (1.2.1)
|
735
|
-
yard (0.
|
742
|
+
yard (0.9.0)
|
736
743
|
|
737
744
|
PLATFORMS
|
738
745
|
ruby
|
739
746
|
x86-mingw32
|
740
747
|
|
741
748
|
DEPENDENCIES
|
749
|
+
activesupport (< 5.0)
|
742
750
|
appbundler!
|
743
751
|
artifactory
|
744
752
|
berkshelf
|
@@ -762,17 +770,17 @@ DEPENDENCIES
|
|
762
770
|
foodcritic (>= 6.1.1)
|
763
771
|
guard
|
764
772
|
inspec (>= 0.17.1)
|
773
|
+
kitchen-dokken
|
765
774
|
kitchen-ec2
|
766
775
|
kitchen-inspec
|
767
776
|
kitchen-vagrant
|
768
777
|
knife-push
|
769
778
|
knife-spork
|
770
|
-
knife-supermarket
|
771
779
|
knife-windows
|
772
780
|
listen (< 3.1.0)
|
773
781
|
mixlib-install
|
774
782
|
mixlib-versioning
|
775
|
-
nokogiri
|
783
|
+
nokogiri
|
776
784
|
ohai (>= 8.13.0)
|
777
785
|
opscode-pushy-client!
|
778
786
|
pry
|
@@ -783,6 +791,7 @@ DEPENDENCIES
|
|
783
791
|
rb-readline
|
784
792
|
rdoc
|
785
793
|
rdp-ruby-wmi
|
794
|
+
rspec-core (= 3.4.4)
|
786
795
|
rubocop
|
787
796
|
ruby-prof
|
788
797
|
ruby-shadow
|