chef-dk 2.6.2 → 3.0.36
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +126 -121
- data/Gemfile.lock +812 -807
- data/LICENSE +201 -201
- data/README.md +333 -333
- data/Rakefile +74 -74
- data/acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml +27 -27
- data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +287 -287
- 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 +21 -21
- data/acceptance/Gemfile.lock +334 -334
- 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 +60 -60
- data/lib/chef-dk.rb +19 -19
- data/lib/chef-dk/authenticated_http.rb +22 -22
- data/lib/chef-dk/builtin_commands.rb +59 -59
- data/lib/chef-dk/chef_runner.rb +114 -114
- data/lib/chef-dk/chef_server_api_multi.rb +73 -73
- data/lib/chef-dk/cli.rb +201 -201
- data/lib/chef-dk/command/base.rb +79 -79
- data/lib/chef-dk/command/clean_policy_cookbooks.rb +114 -114
- data/lib/chef-dk/command/clean_policy_revisions.rb +111 -111
- data/lib/chef-dk/command/delete_policy.rb +120 -120
- data/lib/chef-dk/command/delete_policy_group.rb +120 -120
- data/lib/chef-dk/command/diff.rb +315 -315
- data/lib/chef-dk/command/env.rb +89 -89
- data/lib/chef-dk/command/exec.rb +44 -44
- data/lib/chef-dk/command/export.rb +155 -155
- data/lib/chef-dk/command/gem.rb +47 -47
- data/lib/chef-dk/command/generate.rb +125 -125
- data/lib/chef-dk/command/generator_commands.rb +83 -83
- data/lib/chef-dk/command/generator_commands/app.rb +106 -106
- data/lib/chef-dk/command/generator_commands/attribute.rb +36 -36
- data/lib/chef-dk/command/generator_commands/base.rb +157 -157
- data/lib/chef-dk/command/generator_commands/build_cookbook.rb +125 -125
- data/lib/chef-dk/command/generator_commands/chef_exts/generator_desc_resource.rb +85 -85
- data/lib/chef-dk/command/generator_commands/chef_exts/quieter_doc_formatter.rb +38 -38
- data/lib/chef-dk/command/generator_commands/chef_exts/recipe_dsl_ext.rb +39 -39
- data/lib/chef-dk/command/generator_commands/cookbook.rb +241 -241
- 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 +174 -174
- data/lib/chef-dk/command/generator_commands/helpers.rb +36 -36
- data/lib/chef-dk/command/generator_commands/policyfile.rb +124 -126
- data/lib/chef-dk/command/generator_commands/recipe.rb +36 -36
- data/lib/chef-dk/command/generator_commands/repo.rb +123 -123
- data/lib/chef-dk/command/generator_commands/resource.rb +36 -36
- data/lib/chef-dk/command/generator_commands/template.rb +46 -46
- data/lib/chef-dk/command/install.rb +120 -120
- data/lib/chef-dk/command/provision.rb +436 -436
- data/lib/chef-dk/command/push.rb +117 -117
- data/lib/chef-dk/command/push_archive.rb +125 -125
- data/lib/chef-dk/command/shell_init.rb +179 -179
- data/lib/chef-dk/command/show_policy.rb +163 -163
- data/lib/chef-dk/command/undelete.rb +154 -154
- data/lib/chef-dk/command/update.rb +133 -133
- data/lib/chef-dk/command/verify.rb +629 -629
- data/lib/chef-dk/commands_map.rb +113 -113
- 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/component_test.rb +227 -227
- data/lib/chef-dk/configurable.rb +88 -88
- 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 +152 -151
- data/lib/chef-dk/cookbook_profiler/identifiers.rb +72 -72
- data/lib/chef-dk/cookbook_profiler/null_scm.rb +31 -31
- data/lib/chef-dk/exceptions.rb +151 -150
- data/lib/chef-dk/generator.rb +165 -165
- data/lib/chef-dk/helpers.rb +176 -176
- data/lib/chef-dk/pager.rb +104 -105
- data/lib/chef-dk/policyfile/artifactory_cookbook_source.rb +102 -102
- data/lib/chef-dk/policyfile/attribute_merge_checker.rb +110 -110
- data/lib/chef-dk/policyfile/chef_repo_cookbook_source.rb +138 -138
- data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +99 -99
- data/lib/chef-dk/policyfile/chef_server_lock_fetcher.rb +167 -164
- data/lib/chef-dk/policyfile/community_cookbook_source.rb +95 -95
- data/lib/chef-dk/policyfile/comparison_base.rb +123 -123
- 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 +23 -23
- data/lib/chef-dk/policyfile/delivery_supermarket_source.rb +89 -89
- data/lib/chef-dk/policyfile/differ.rb +263 -263
- data/lib/chef-dk/policyfile/dsl.rb +288 -288
- data/lib/chef-dk/policyfile/git_lock_fetcher.rb +265 -0
- data/lib/chef-dk/policyfile/included_policies_cookbook_source.rb +156 -156
- data/lib/chef-dk/policyfile/lister.rb +229 -229
- data/lib/chef-dk/policyfile/local_lock_fetcher.rb +129 -123
- data/lib/chef-dk/policyfile/lock_applier.rb +80 -80
- data/lib/chef-dk/policyfile/null_cookbook_source.rb +49 -49
- data/lib/chef-dk/policyfile/policyfile_location_specification.rb +125 -122
- data/lib/chef-dk/policyfile/read_cookbook_for_compat_mode_upload.rb +124 -124
- data/lib/chef-dk/policyfile/reports/install.rb +69 -69
- data/lib/chef-dk/policyfile/reports/table_printer.rb +57 -57
- data/lib/chef-dk/policyfile/reports/upload.rb +70 -70
- data/lib/chef-dk/policyfile/solution_dependencies.rb +311 -312
- data/lib/chef-dk/policyfile/source_uri.rb +57 -57
- data/lib/chef-dk/policyfile/storage_config.rb +112 -102
- data/lib/chef-dk/policyfile/undo_record.rb +139 -139
- data/lib/chef-dk/policyfile/undo_stack.rb +128 -128
- data/lib/chef-dk/policyfile/uploader.rb +213 -213
- data/lib/chef-dk/policyfile_compiler.rb +528 -528
- data/lib/chef-dk/policyfile_lock.rb +581 -581
- data/lib/chef-dk/policyfile_services/clean_policies.rb +95 -95
- data/lib/chef-dk/policyfile_services/clean_policy_cookbooks.rb +123 -123
- data/lib/chef-dk/policyfile_services/export_repo.rb +419 -420
- data/lib/chef-dk/policyfile_services/install.rb +162 -162
- data/lib/chef-dk/policyfile_services/push.rb +112 -112
- data/lib/chef-dk/policyfile_services/push_archive.rb +164 -200
- data/lib/chef-dk/policyfile_services/rm_policy.rb +141 -141
- data/lib/chef-dk/policyfile_services/rm_policy_group.rb +85 -85
- data/lib/chef-dk/policyfile_services/show_policy.rb +234 -236
- data/lib/chef-dk/policyfile_services/undelete.rb +108 -108
- data/lib/chef-dk/policyfile_services/update_attributes.rb +110 -110
- data/lib/chef-dk/service_exception_inspectors.rb +24 -24
- data/lib/chef-dk/service_exception_inspectors/base.rb +39 -39
- data/lib/chef-dk/service_exception_inspectors/http.rb +119 -119
- data/lib/chef-dk/service_exceptions.rb +142 -142
- data/lib/chef-dk/shell_out.rb +36 -36
- data/lib/chef-dk/skeletons/code_generator/files/default/Berksfile +4 -4
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/.kitchen.yml +21 -21
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/README.md +146 -146
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/test-fixture-recipe.rb +9 -9
- data/lib/chef-dk/skeletons/code_generator/files/default/chefignore +104 -107
- 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 +66 -54
- data/lib/chef-dk/skeletons/code_generator/files/default/delivery-config.json +17 -17
- data/lib/chef-dk/skeletons/code_generator/files/default/delivery-project.toml +36 -36
- data/lib/chef-dk/skeletons/code_generator/files/default/gitignore +22 -22
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/README.md +24 -24
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/README.md +27 -27
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/attributes/default.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/metadata.rb +7 -7
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +9 -9
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/data_bags/README.md +56 -56
- 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 +3 -3
- data/lib/chef-dk/skeletons/code_generator/files/default/spec_helper_policyfile.rb +3 -3
- data/lib/chef-dk/skeletons/code_generator/metadata.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +89 -89
- data/lib/chef-dk/skeletons/code_generator/recipes/attribute.rb +13 -13
- data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +177 -177
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +158 -152
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook_file.rb +25 -25
- data/lib/chef-dk/skeletons/code_generator/recipes/helpers.rb +21 -21
- data/lib/chef-dk/skeletons/code_generator/recipes/policyfile.rb +9 -9
- data/lib/chef-dk/skeletons/code_generator/recipes/recipe.rb +52 -52
- data/lib/chef-dk/skeletons/code_generator/recipes/repo.rb +68 -68
- data/lib/chef-dk/skeletons/code_generator/recipes/resource.rb +13 -13
- data/lib/chef-dk/skeletons/code_generator/recipes/template.rb +32 -32
- data/lib/chef-dk/skeletons/code_generator/templates/default/CHANGELOG.md.erb +11 -0
- 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.apachev2.erb +201 -201
- 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/Berksfile.erb +7 -7
- data/lib/chef-dk/skeletons/code_generator/templates/default/build_cookbook/metadata.rb.erb +10 -10
- data/lib/chef-dk/skeletons/code_generator/templates/default/build_cookbook/recipe.rb.erb +8 -8
- data/lib/chef-dk/skeletons/code_generator/templates/default/helpers.rb.erb +39 -39
- data/lib/chef-dk/skeletons/code_generator/templates/default/inspec_default_test.rb.erb +18 -18
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen.yml.erb +26 -26
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen_policyfile.yml.erb +33 -33
- data/lib/chef-dk/skeletons/code_generator/templates/default/metadata.rb.erb +20 -20
- 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 +35 -35
- data/lib/chef-dk/skeletons/code_generator/templates/default/repo/gitignore.erb +128 -128
- data/lib/chef-dk/skeletons/code_generator/templates/default/resource.rb.erb +1 -1
- data/lib/chef-dk/ui.rb +57 -57
- data/lib/chef-dk/version.rb +20 -20
- data/lib/kitchen/provisioner/policyfile_zero.rb +195 -195
- data/omnibus_overrides.rb +25 -25
- 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/custom_generator_cookbook.rb +136 -136
- data/spec/shared/fixture_cookbook_checksums.rb +46 -46
- data/spec/shared/setup_git_committer_config.rb +54 -54
- 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 +139 -139
- data/spec/unit/chef_server_api_multi_spec.rb +120 -120
- data/spec/unit/cli_spec.rb +377 -377
- data/spec/unit/command/base_spec.rb +172 -172
- data/spec/unit/command/clean_policy_cookbooks_spec.rb +180 -180
- data/spec/unit/command/clean_policy_revisions_spec.rb +180 -180
- data/spec/unit/command/delete_policy_group_spec.rb +206 -206
- data/spec/unit/command/delete_policy_spec.rb +206 -206
- data/spec/unit/command/diff_spec.rb +311 -311
- data/spec/unit/command/env_spec.rb +52 -52
- data/spec/unit/command/exec_spec.rb +178 -178
- data/spec/unit/command/export_spec.rb +199 -199
- data/spec/unit/command/generate_spec.rb +142 -142
- data/spec/unit/command/generator_commands/app_spec.rb +166 -166
- data/spec/unit/command/generator_commands/attribute_spec.rb +31 -31
- data/spec/unit/command/generator_commands/base_spec.rb +181 -181
- data/spec/unit/command/generator_commands/build_cookbook_spec.rb +377 -377
- data/spec/unit/command/generator_commands/chef_exts/generator_desc_resource_spec.rb +97 -97
- data/spec/unit/command/generator_commands/chef_exts/recipe_dsl_ext_spec.rb +111 -111
- data/spec/unit/command/generator_commands/cookbook_file_spec.rb +31 -31
- data/spec/unit/command/generator_commands/cookbook_spec.rb +765 -756
- data/spec/unit/command/generator_commands/generator_generator_spec.rb +227 -227
- data/spec/unit/command/generator_commands/helpers_spec.rb +31 -31
- data/spec/unit/command/generator_commands/policyfile_spec.rb +223 -223
- data/spec/unit/command/generator_commands/recipe_spec.rb +37 -37
- data/spec/unit/command/generator_commands/repo_spec.rb +374 -374
- data/spec/unit/command/generator_commands/resource_spec.rb +31 -31
- data/spec/unit/command/generator_commands/template_spec.rb +31 -31
- data/spec/unit/command/install_spec.rb +179 -179
- data/spec/unit/command/provision_spec.rb +589 -589
- data/spec/unit/command/push_archive_spec.rb +153 -153
- data/spec/unit/command/push_spec.rb +198 -198
- data/spec/unit/command/shell_init_spec.rb +339 -339
- data/spec/unit/command/show_policy_spec.rb +234 -234
- data/spec/unit/command/undelete_spec.rb +244 -244
- data/spec/unit/command/update_spec.rb +283 -283
- data/spec/unit/command/verify_spec.rb +341 -341
- data/spec/unit/commands_map_spec.rb +57 -57
- data/spec/unit/component_test_spec.rb +128 -128
- data/spec/unit/configurable_spec.rb +68 -68
- data/spec/unit/cookbook_metadata_spec.rb +96 -96
- data/spec/unit/cookbook_profiler/git_spec.rb +176 -176
- data/spec/unit/cookbook_profiler/identifiers_spec.rb +81 -81
- 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/chef_server_universe.json +56 -56
- data/spec/unit/fixtures/cookbooks_api/pruned_chef_server_universe.json +30 -30
- 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 +33 -33
- 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/generator_spec.rb +119 -119
- data/spec/unit/pager_spec.rb +117 -117
- data/spec/unit/policyfile/artifactory_cookbook_source_spec.rb +59 -59
- data/spec/unit/policyfile/attribute_merge_checker_spec.rb +80 -80
- data/spec/unit/policyfile/chef_repo_cookbook_source_spec.rb +93 -93
- data/spec/unit/policyfile/chef_server_cookbook_source_spec.rb +55 -55
- data/spec/unit/policyfile/chef_server_lock_fetcher_spec.rb +161 -161
- data/spec/unit/policyfile/community_cookbook_source_spec.rb +83 -83
- data/spec/unit/policyfile/comparison_base_spec.rb +340 -340
- data/spec/unit/policyfile/cookbook_location_specification_spec.rb +347 -347
- data/spec/unit/policyfile/cookbook_locks_spec.rb +527 -527
- data/spec/unit/policyfile/delivery_supermarket_source_spec.rb +129 -129
- data/spec/unit/policyfile/differ_spec.rb +686 -686
- data/spec/unit/policyfile/git_lock_fetcher_spec.rb +155 -0
- data/spec/unit/policyfile/included_policies_cookbook_source_spec.rb +242 -242
- data/spec/unit/policyfile/lister_spec.rb +268 -268
- data/spec/unit/policyfile/local_lock_fetcher_spec.rb +173 -173
- data/spec/unit/policyfile/lock_applier_spec.rb +100 -100
- data/spec/unit/policyfile/null_cookbook_source_spec.rb +34 -34
- data/spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb +92 -92
- data/spec/unit/policyfile/reports/install_spec.rb +114 -114
- data/spec/unit/policyfile/reports/upload_spec.rb +94 -94
- data/spec/unit/policyfile/solution_dependencies_spec.rb +170 -170
- data/spec/unit/policyfile/source_uri_spec.rb +36 -36
- data/spec/unit/policyfile/storage_config_spec.rb +180 -180
- data/spec/unit/policyfile/undo_record_spec.rb +258 -258
- data/spec/unit/policyfile/undo_stack_spec.rb +265 -265
- data/spec/unit/policyfile/uploader_spec.rb +409 -409
- data/spec/unit/policyfile_demands_spec.rb +1197 -1197
- data/spec/unit/policyfile_evaluation_spec.rb +628 -638
- data/spec/unit/policyfile_includes_dsl_spec.rb +159 -159
- data/spec/unit/policyfile_includes_spec.rb +720 -720
- data/spec/unit/policyfile_install_with_includes_spec.rb +232 -232
- data/spec/unit/policyfile_lock_build_spec.rb +1065 -1065
- data/spec/unit/policyfile_lock_install_spec.rb +137 -137
- data/spec/unit/policyfile_lock_serialization_spec.rb +424 -424
- data/spec/unit/policyfile_lock_validation_spec.rb +608 -608
- data/spec/unit/policyfile_services/clean_policies_spec.rb +236 -236
- data/spec/unit/policyfile_services/clean_policy_cookbooks_spec.rb +272 -272
- data/spec/unit/policyfile_services/export_repo_spec.rb +473 -478
- data/spec/unit/policyfile_services/install_spec.rb +209 -209
- data/spec/unit/policyfile_services/push_archive_spec.rb +359 -374
- data/spec/unit/policyfile_services/push_spec.rb +249 -249
- data/spec/unit/policyfile_services/rm_policy_group_spec.rb +237 -237
- data/spec/unit/policyfile_services/rm_policy_spec.rb +263 -263
- data/spec/unit/policyfile_services/show_policy_spec.rb +887 -887
- data/spec/unit/policyfile_services/undelete_spec.rb +302 -302
- data/spec/unit/policyfile_services/update_attributes_spec.rb +229 -229
- data/spec/unit/policyfile_services/update_spec.rb +140 -140
- data/spec/unit/service_exception_inspectors/base_spec.rb +41 -41
- data/spec/unit/service_exception_inspectors/http_spec.rb +138 -138
- data/spec/unit/shell_out_spec.rb +34 -34
- data/tasks/announce.rb +57 -57
- data/tasks/bin/bundle-platform.bat +2 -2
- data/tasks/dependencies.rb +89 -89
- data/tasks/templates/prerelease.md.erb +35 -35
- data/tasks/templates/release.md.erb +34 -34
- data/warning.txt +9 -9
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f1b550a352e3cfe3047595da0a303623a1ee196d5a13e725e3e24167d92c7b3
|
4
|
+
data.tar.gz: ccba8533bb971851181e7d859051e29308df4a01a58d22832d41a7685a64ab56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce940a63dc83bb2e10afdb2dcdaf3baafcd89aa7ab9514ba9d8d58c5485da1ba5f0f2fae197302da51fc8fcb76ebb2749bb2665e7c7a45ed1cf074d71b8ead78
|
7
|
+
data.tar.gz: b321a2f3c243f97def1f9b32d897b9791da32765191ca2b2e05cc692682b700c558b071448f6678afd5d3a3d64efe3dc5a0582c0d9013e965b3c088fc6368f4a
|
data/Gemfile
CHANGED
@@ -1,121 +1,126 @@
|
|
1
|
-
#
|
2
|
-
# Copyright:: Copyright (c) 2014-2016 Chef Software Inc.
|
3
|
-
# License:: Apache License, Version 2.0
|
4
|
-
#
|
5
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
# you may not use this file except in compliance with the License.
|
7
|
-
# You may obtain a copy of the License at
|
8
|
-
#
|
9
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
#
|
11
|
-
# Unless required by applicable law or agreed to in writing, software
|
12
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
# See the License for the specific language governing permissions and
|
15
|
-
# limitations under the License.
|
16
|
-
#
|
17
|
-
|
18
|
-
source "https://rubygems.org"
|
19
|
-
|
20
|
-
gemspec
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
gem "
|
30
|
-
gem "
|
31
|
-
gem "
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
gem "
|
36
|
-
gem "
|
37
|
-
end
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
gem "
|
50
|
-
gem "
|
51
|
-
gem "
|
52
|
-
gem "
|
53
|
-
gem "
|
54
|
-
gem "
|
55
|
-
gem "
|
56
|
-
gem "
|
57
|
-
gem "
|
58
|
-
gem "
|
59
|
-
gem "
|
60
|
-
gem "kitchen-
|
61
|
-
gem "kitchen-
|
62
|
-
gem "
|
63
|
-
gem "
|
64
|
-
gem "
|
65
|
-
gem "
|
66
|
-
gem "
|
67
|
-
|
68
|
-
gem "
|
69
|
-
gem "
|
70
|
-
gem "
|
71
|
-
gem "
|
72
|
-
|
73
|
-
|
74
|
-
gem "
|
75
|
-
gem "
|
76
|
-
gem "
|
77
|
-
gem "
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
gem "
|
83
|
-
gem "
|
84
|
-
gem "
|
85
|
-
gem "
|
86
|
-
|
87
|
-
|
88
|
-
gem "
|
89
|
-
gem "
|
90
|
-
gem "
|
91
|
-
gem "
|
92
|
-
gem "
|
93
|
-
gem "
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
gem "
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
gem "
|
118
|
-
gem "
|
119
|
-
gem "
|
120
|
-
gem "win32-
|
121
|
-
|
1
|
+
#
|
2
|
+
# Copyright:: Copyright (c) 2014-2016 Chef Software Inc.
|
3
|
+
# License:: Apache License, Version 2.0
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
#
|
17
|
+
|
18
|
+
source "https://rubygems.org"
|
19
|
+
|
20
|
+
gemspec
|
21
|
+
|
22
|
+
# ffi 1.9.22+1.9.23 are buggy in our spec/unit/application/client_spec.rb tests on el6/el7
|
23
|
+
# (this pin has nothing directly to do with chefdk, please delete if no longer applicable)
|
24
|
+
gem "ffi", "< 1.9.22"
|
25
|
+
|
26
|
+
gem "bundler"
|
27
|
+
|
28
|
+
group(:omnibus_package, :development, :test) do
|
29
|
+
gem "rake"
|
30
|
+
gem "pry"
|
31
|
+
gem "rdoc"
|
32
|
+
gem "yard"
|
33
|
+
gem "guard"
|
34
|
+
gem "cookstyle", ">= 2.0.0"
|
35
|
+
gem "foodcritic", ">= 12.1"
|
36
|
+
gem "ffi-libarchive"
|
37
|
+
end
|
38
|
+
|
39
|
+
group(:dep_selector) do
|
40
|
+
gem "dep_selector"
|
41
|
+
gem "dep-selector-libgecode"
|
42
|
+
end
|
43
|
+
|
44
|
+
# We tend to track latest stable release without pinning.
|
45
|
+
# In order to prevent the depsolver from downgrading we pin some floors with ">=".
|
46
|
+
# We should only be using "~>" to work around bugs, or temporarily pinning some tech debt.
|
47
|
+
# We equality pin the chef gem itself to assert which version we're shipping.
|
48
|
+
group(:omnibus_package) do
|
49
|
+
gem "appbundler"
|
50
|
+
gem "berkshelf", ">= 7.0"
|
51
|
+
gem "chef-provisioning", ">= 2.7.1", group: :provisioning
|
52
|
+
gem "chef-provisioning-aws", ">= 3.0.2", group: :provisioning
|
53
|
+
gem "chef-provisioning-fog", ">= 0.26.1", group: :provisioning
|
54
|
+
gem "chef-vault", ">= 3.3.0"
|
55
|
+
gem "chef", "= 14.1.12"
|
56
|
+
gem "cheffish", ">= 14.0.1"
|
57
|
+
gem "chefspec", ">= 7.2.0"
|
58
|
+
gem "fauxhai", ">= 5.4.0"
|
59
|
+
gem "inspec", ">= 2.1.68"
|
60
|
+
gem "kitchen-ec2", ">= 2.2.1"
|
61
|
+
gem "kitchen-digitalocean", ">= 0.9.8"
|
62
|
+
gem "kitchen-dokken", ">= 2.6.7"
|
63
|
+
gem "kitchen-google", ">= 1.4.0"
|
64
|
+
gem "kitchen-hyperv", ">= 0.5.1"
|
65
|
+
gem "kitchen-inspec", ">= 0.19.0"
|
66
|
+
gem "kitchen-vagrant", ">= 1.3.2"
|
67
|
+
gem "knife-ec2", ">= 0.15.0"
|
68
|
+
gem "knife-google", ">= 3.2.0"
|
69
|
+
gem "knife-windows", ">= 1.9.0"
|
70
|
+
gem "knife-opc", ">= 0.3.2"
|
71
|
+
gem "knife-vsphere", ">= 2.0.3"
|
72
|
+
gem "mixlib-archive", ">= 0.4.6"
|
73
|
+
gem "ohai", ">= 14.0.29"
|
74
|
+
gem "net-ssh", ">= 4.2.0"
|
75
|
+
gem "test-kitchen", ">= 1.21.1"
|
76
|
+
gem "listen"
|
77
|
+
gem "dco"
|
78
|
+
|
79
|
+
# For Delivery build node
|
80
|
+
gem "chef-sugar"
|
81
|
+
gem "mixlib-versioning"
|
82
|
+
gem "artifactory"
|
83
|
+
gem "opscode-pushy-client", ">= 2.4.11"
|
84
|
+
gem "ffi-rzmq-core"
|
85
|
+
gem "knife-push"
|
86
|
+
|
87
|
+
# All of the following used to be software definitions we included:
|
88
|
+
gem "knife-spork"
|
89
|
+
gem "mixlib-install"
|
90
|
+
gem "nokogiri"
|
91
|
+
gem "pry-byebug"
|
92
|
+
gem "pry-remote"
|
93
|
+
gem "pry-stack_explorer"
|
94
|
+
gem "rb-readline"
|
95
|
+
gem "rubocop"
|
96
|
+
gem "winrm-fs"
|
97
|
+
gem "winrm-elevated"
|
98
|
+
gem "cucumber"
|
99
|
+
gem "stove"
|
100
|
+
end
|
101
|
+
|
102
|
+
# Everything except AIX
|
103
|
+
group(:ruby_prof) do
|
104
|
+
gem "ruby-prof"
|
105
|
+
end
|
106
|
+
|
107
|
+
# Everything except AIX and Windows
|
108
|
+
group(:ruby_shadow) do
|
109
|
+
gem "ruby-shadow", platform: :ruby
|
110
|
+
end
|
111
|
+
|
112
|
+
gem "chefstyle", group: :test
|
113
|
+
|
114
|
+
# TODO delete this when we figure out how to include the pushy windows dependencies
|
115
|
+
# correctly
|
116
|
+
platforms :mswin, :mingw do
|
117
|
+
gem "rdp-ruby-wmi"
|
118
|
+
gem "windows-api"
|
119
|
+
gem "windows-pr"
|
120
|
+
gem "win32-api"
|
121
|
+
gem "win32-dir"
|
122
|
+
gem "win32-event"
|
123
|
+
gem "win32-mutex"
|
124
|
+
gem "win32-process", "~> 0.8.2"
|
125
|
+
gem "win32-service"
|
126
|
+
end
|
data/Gemfile.lock
CHANGED
@@ -1,807 +1,812 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
chef-dk (
|
5
|
-
addressable (>= 2.3.5, < 2.6)
|
6
|
-
chef (~>
|
7
|
-
chef-provisioning (~> 2.0)
|
8
|
-
cookbook-omnifetch (~> 0.5)
|
9
|
-
diff-lcs (~> 1.0)
|
10
|
-
ffi-yajl (>= 1.0, < 3.0)
|
11
|
-
minitar (~> 0.6)
|
12
|
-
mixlib-cli (~> 1.7)
|
13
|
-
mixlib-shellout (~> 2.0)
|
14
|
-
paint (~> 1.0)
|
15
|
-
solve (> 2.0, < 5.0)
|
16
|
-
|
17
|
-
GEM
|
18
|
-
remote: https://rubygems.org/
|
19
|
-
specs:
|
20
|
-
activesupport (5.2.
|
21
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
22
|
-
i18n (>= 0.7, < 2)
|
23
|
-
minitest (~> 5.1)
|
24
|
-
tzinfo (~> 1.1)
|
25
|
-
addressable (2.5.2)
|
26
|
-
public_suffix (>= 2.0.2, < 4.0)
|
27
|
-
app_conf (0.4.2)
|
28
|
-
appbundler (0.11.6)
|
29
|
-
mixlib-cli (~> 1.4)
|
30
|
-
mixlib-shellout (~> 2.0)
|
31
|
-
artifactory (2.8.2)
|
32
|
-
ast (2.4.0)
|
33
|
-
aws-sdk (2.11.
|
34
|
-
aws-sdk-resources (= 2.11.
|
35
|
-
aws-sdk-core (2.11.
|
36
|
-
aws-sigv4 (~> 1.0)
|
37
|
-
jmespath (~> 1.0)
|
38
|
-
aws-sdk-resources (2.11.
|
39
|
-
aws-sdk-core (= 2.11.
|
40
|
-
aws-sigv4 (1.0.
|
41
|
-
axiom-types (0.1.1)
|
42
|
-
descendants_tracker (~> 0.0.4)
|
43
|
-
ice_nine (~> 0.11.0)
|
44
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
chef (>=
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
mixlib-
|
56
|
-
mixlib-shellout (~> 2.0)
|
57
|
-
octokit (~> 4.0)
|
58
|
-
retryable (~> 2.0)
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
retryable
|
173
|
-
|
174
|
-
chef-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
ffi (1.
|
259
|
-
|
260
|
-
ffi (
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
fog-
|
280
|
-
|
281
|
-
fog-
|
282
|
-
|
283
|
-
fog-
|
284
|
-
fog-core (~> 1.
|
285
|
-
fog-json (>= 1.0)
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
fog-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
fog-
|
295
|
-
|
296
|
-
fog-
|
297
|
-
|
298
|
-
fog-
|
299
|
-
fog-core
|
300
|
-
fog-
|
301
|
-
fog-
|
302
|
-
fog-core
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
knife-
|
427
|
-
|
428
|
-
chef (>=
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
mixlib-
|
463
|
-
mixlib-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
mixlib-
|
468
|
-
|
469
|
-
|
470
|
-
mixlib-
|
471
|
-
mixlib-shellout (2.
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
net-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
rspec (3.7.0)
|
581
|
-
|
582
|
-
rspec-
|
583
|
-
|
584
|
-
|
585
|
-
rspec-
|
586
|
-
rspec-
|
587
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
588
|
-
rspec-support (~> 3.7.0)
|
589
|
-
rspec-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
virtus (1.0.5)
|
679
|
-
axiom-types (~> 0.1)
|
680
|
-
coercible (~> 1.0)
|
681
|
-
descendants_tracker (~> 0.0, >= 0.0.3)
|
682
|
-
equalizer (~> 0.0, >= 0.0.9)
|
683
|
-
win32-api (1.5.3-universal-mingw32)
|
684
|
-
win32-dir (0.5.1)
|
685
|
-
ffi (>= 1.0.0)
|
686
|
-
win32-event (0.6.3)
|
687
|
-
win32-ipc (>= 0.6.0)
|
688
|
-
win32-eventlog (0.6.3)
|
689
|
-
ffi
|
690
|
-
win32-ipc (0.7.0)
|
691
|
-
ffi
|
692
|
-
win32-mmap (0.4.2)
|
693
|
-
ffi
|
694
|
-
win32-mutex (0.4.3)
|
695
|
-
win32-ipc (>= 0.6.0)
|
696
|
-
win32-process (0.8.3)
|
697
|
-
ffi (>= 1.0.0)
|
698
|
-
win32-service (
|
699
|
-
ffi
|
700
|
-
ffi-win32-extensions
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
winrm-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
chef
|
740
|
-
chef-
|
741
|
-
chef-provisioning
|
742
|
-
chef-
|
743
|
-
chef-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
kitchen-
|
762
|
-
kitchen-
|
763
|
-
kitchen-
|
764
|
-
kitchen-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
knife-
|
769
|
-
knife-
|
770
|
-
knife-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
ruby-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
win32-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
chef-dk (3.0.36)
|
5
|
+
addressable (>= 2.3.5, < 2.6)
|
6
|
+
chef (~> 14.0)
|
7
|
+
chef-provisioning (~> 2.0)
|
8
|
+
cookbook-omnifetch (~> 0.5)
|
9
|
+
diff-lcs (~> 1.0)
|
10
|
+
ffi-yajl (>= 1.0, < 3.0)
|
11
|
+
minitar (~> 0.6)
|
12
|
+
mixlib-cli (~> 1.7)
|
13
|
+
mixlib-shellout (~> 2.0)
|
14
|
+
paint (~> 1.0)
|
15
|
+
solve (> 2.0, < 5.0)
|
16
|
+
|
17
|
+
GEM
|
18
|
+
remote: https://rubygems.org/
|
19
|
+
specs:
|
20
|
+
activesupport (5.2.0)
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
22
|
+
i18n (>= 0.7, < 2)
|
23
|
+
minitest (~> 5.1)
|
24
|
+
tzinfo (~> 1.1)
|
25
|
+
addressable (2.5.2)
|
26
|
+
public_suffix (>= 2.0.2, < 4.0)
|
27
|
+
app_conf (0.4.2)
|
28
|
+
appbundler (0.11.6)
|
29
|
+
mixlib-cli (~> 1.4)
|
30
|
+
mixlib-shellout (~> 2.0)
|
31
|
+
artifactory (2.8.2)
|
32
|
+
ast (2.4.0)
|
33
|
+
aws-sdk (2.11.50)
|
34
|
+
aws-sdk-resources (= 2.11.50)
|
35
|
+
aws-sdk-core (2.11.50)
|
36
|
+
aws-sigv4 (~> 1.0)
|
37
|
+
jmespath (~> 1.0)
|
38
|
+
aws-sdk-resources (2.11.50)
|
39
|
+
aws-sdk-core (= 2.11.50)
|
40
|
+
aws-sigv4 (1.0.2)
|
41
|
+
axiom-types (0.1.1)
|
42
|
+
descendants_tracker (~> 0.0.4)
|
43
|
+
ice_nine (~> 0.11.0)
|
44
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
45
|
+
azure_mgmt_resources (0.16.0)
|
46
|
+
ms_rest_azure (~> 0.10.0)
|
47
|
+
backports (3.11.3)
|
48
|
+
berkshelf (7.0.2)
|
49
|
+
chef (>= 13.6.52)
|
50
|
+
chef-config
|
51
|
+
cleanroom (~> 1.0)
|
52
|
+
concurrent-ruby (~> 1.0)
|
53
|
+
minitar (>= 0.6)
|
54
|
+
mixlib-archive (~> 0.4)
|
55
|
+
mixlib-config (>= 2.2.5)
|
56
|
+
mixlib-shellout (~> 2.0)
|
57
|
+
octokit (~> 4.0)
|
58
|
+
retryable (~> 2.0)
|
59
|
+
solve (~> 4.0)
|
60
|
+
thor (>= 0.20)
|
61
|
+
binding_of_caller (0.8.0)
|
62
|
+
debug_inspector (>= 0.0.1)
|
63
|
+
builder (3.2.3)
|
64
|
+
byebug (10.0.2)
|
65
|
+
chef (14.1.12)
|
66
|
+
addressable
|
67
|
+
bundler (>= 1.10)
|
68
|
+
chef-config (= 14.1.12)
|
69
|
+
chef-zero (>= 13.0)
|
70
|
+
diff-lcs (~> 1.2, >= 1.2.4)
|
71
|
+
erubis (~> 2.7)
|
72
|
+
ffi (< 1.9.22)
|
73
|
+
ffi-yajl (~> 2.2)
|
74
|
+
highline (~> 1.6, >= 1.6.9)
|
75
|
+
iniparse (~> 1.4)
|
76
|
+
iso8601 (~> 0.9.1)
|
77
|
+
mixlib-archive (~> 0.4)
|
78
|
+
mixlib-authentication (~> 2.0)
|
79
|
+
mixlib-cli (~> 1.7)
|
80
|
+
mixlib-log (~> 2.0, >= 2.0.3)
|
81
|
+
mixlib-shellout (~> 2.0)
|
82
|
+
net-sftp (~> 2.1, >= 2.1.2)
|
83
|
+
net-ssh (~> 4.2)
|
84
|
+
net-ssh-multi (~> 1.2, >= 1.2.1)
|
85
|
+
ohai (~> 14.0)
|
86
|
+
plist (~> 3.2)
|
87
|
+
proxifier (~> 1.0)
|
88
|
+
rspec-core (~> 3.5)
|
89
|
+
rspec-expectations (~> 3.5)
|
90
|
+
rspec-mocks (~> 3.5)
|
91
|
+
rspec_junit_formatter (~> 0.2.0)
|
92
|
+
serverspec (~> 2.7)
|
93
|
+
specinfra (~> 2.10)
|
94
|
+
syslog-logger (~> 1.6)
|
95
|
+
uuidtools (~> 2.1.5)
|
96
|
+
chef (14.1.12-universal-mingw32)
|
97
|
+
addressable
|
98
|
+
bundler (>= 1.10)
|
99
|
+
chef-config (= 14.1.12)
|
100
|
+
chef-zero (>= 13.0)
|
101
|
+
diff-lcs (~> 1.2, >= 1.2.4)
|
102
|
+
erubis (~> 2.7)
|
103
|
+
ffi (< 1.9.22)
|
104
|
+
ffi-yajl (~> 2.2)
|
105
|
+
highline (~> 1.6, >= 1.6.9)
|
106
|
+
iniparse (~> 1.4)
|
107
|
+
iso8601 (~> 0.9.1)
|
108
|
+
mixlib-archive (~> 0.4)
|
109
|
+
mixlib-authentication (~> 2.0)
|
110
|
+
mixlib-cli (~> 1.7)
|
111
|
+
mixlib-log (~> 2.0, >= 2.0.3)
|
112
|
+
mixlib-shellout (~> 2.0)
|
113
|
+
net-sftp (~> 2.1, >= 2.1.2)
|
114
|
+
net-ssh (~> 4.2)
|
115
|
+
net-ssh-multi (~> 1.2, >= 1.2.1)
|
116
|
+
ohai (~> 14.0)
|
117
|
+
plist (~> 3.2)
|
118
|
+
proxifier (~> 1.0)
|
119
|
+
rspec-core (~> 3.5)
|
120
|
+
rspec-expectations (~> 3.5)
|
121
|
+
rspec-mocks (~> 3.5)
|
122
|
+
rspec_junit_formatter (~> 0.2.0)
|
123
|
+
serverspec (~> 2.7)
|
124
|
+
specinfra (~> 2.10)
|
125
|
+
syslog-logger (~> 1.6)
|
126
|
+
uuidtools (~> 2.1.5)
|
127
|
+
win32-api (~> 1.5.3)
|
128
|
+
win32-dir (~> 0.5.0)
|
129
|
+
win32-event (~> 0.6.1)
|
130
|
+
win32-eventlog (= 0.6.3)
|
131
|
+
win32-mmap (~> 0.4.1)
|
132
|
+
win32-mutex (~> 0.4.2)
|
133
|
+
win32-process (~> 0.8.2)
|
134
|
+
win32-service (~> 0.8.7)
|
135
|
+
win32-taskscheduler (~> 0.4.0)
|
136
|
+
windows-api (~> 0.4.4)
|
137
|
+
wmi-lite (~> 1.0)
|
138
|
+
chef-api (0.8.0)
|
139
|
+
logify (~> 0.1)
|
140
|
+
mime-types
|
141
|
+
chef-config (14.1.12)
|
142
|
+
addressable
|
143
|
+
fuzzyurl
|
144
|
+
mixlib-config (~> 2.0)
|
145
|
+
mixlib-shellout (~> 2.0)
|
146
|
+
tomlrb (~> 1.2)
|
147
|
+
chef-provisioning (2.7.1)
|
148
|
+
cheffish (>= 4.0, < 15.0)
|
149
|
+
inifile (>= 2.0.2)
|
150
|
+
mixlib-install (>= 1.0)
|
151
|
+
net-scp (~> 1.0)
|
152
|
+
net-ssh (>= 2.9, < 5.0)
|
153
|
+
net-ssh-gateway (> 1.2, < 3.0)
|
154
|
+
winrm (~> 2.0)
|
155
|
+
winrm-elevated (~> 1.0)
|
156
|
+
winrm-fs (~> 1.0)
|
157
|
+
chef-provisioning-aws (3.0.2)
|
158
|
+
aws-sdk (>= 2.2.18, < 3.0)
|
159
|
+
chef-provisioning (>= 1.0, < 3.0)
|
160
|
+
retryable (~> 2.0, >= 2.0.1)
|
161
|
+
ubuntu_ami (~> 0.4, >= 0.4.1)
|
162
|
+
chef-provisioning-fog (0.26.1)
|
163
|
+
chef-provisioning (>= 1.0, < 3.0)
|
164
|
+
cheffish (>= 13.1.0, < 15.0)
|
165
|
+
fog-digitalocean
|
166
|
+
fog-joyent
|
167
|
+
fog-openstack
|
168
|
+
fog-rackspace
|
169
|
+
fog-scaleway
|
170
|
+
fog-softlayer
|
171
|
+
fog-xenserver
|
172
|
+
retryable
|
173
|
+
winrm-elevated
|
174
|
+
chef-sugar (4.0.0)
|
175
|
+
chef-vault (3.3.0)
|
176
|
+
chef-zero (14.0.6)
|
177
|
+
ffi-yajl (~> 2.2)
|
178
|
+
hashie (>= 2.0, < 4.0)
|
179
|
+
mixlib-log (~> 2.0)
|
180
|
+
rack (~> 2.0)
|
181
|
+
uuidtools (~> 2.1)
|
182
|
+
cheffish (14.0.1)
|
183
|
+
chef-zero (~> 14.0)
|
184
|
+
net-ssh
|
185
|
+
chefspec (7.2.1)
|
186
|
+
chef (>= 12.14.89)
|
187
|
+
fauxhai (>= 4)
|
188
|
+
rspec (~> 3.0)
|
189
|
+
chefstyle (0.10.0)
|
190
|
+
rubocop (= 0.55.0)
|
191
|
+
cleanroom (1.0.0)
|
192
|
+
coderay (1.1.2)
|
193
|
+
coercible (1.0.0)
|
194
|
+
descendants_tracker (~> 0.0.1)
|
195
|
+
concurrent-ruby (1.0.5)
|
196
|
+
cookbook-omnifetch (0.8.0)
|
197
|
+
mixlib-archive (~> 0.4)
|
198
|
+
cookstyle (3.0.0)
|
199
|
+
rubocop (= 0.55.0)
|
200
|
+
cucumber (3.1.0)
|
201
|
+
builder (>= 2.1.2)
|
202
|
+
cucumber-core (~> 3.1.0)
|
203
|
+
cucumber-expressions (~> 5.0.4)
|
204
|
+
cucumber-wire (~> 0.0.1)
|
205
|
+
diff-lcs (~> 1.3)
|
206
|
+
gherkin (~> 5.0)
|
207
|
+
multi_json (>= 1.7.5, < 2.0)
|
208
|
+
multi_test (>= 0.1.2)
|
209
|
+
cucumber-core (3.1.0)
|
210
|
+
backports (>= 3.8.0)
|
211
|
+
cucumber-tag_expressions (~> 1.1.0)
|
212
|
+
gherkin (>= 5.0.0)
|
213
|
+
cucumber-expressions (5.0.17)
|
214
|
+
cucumber-tag_expressions (1.1.1)
|
215
|
+
cucumber-wire (0.0.1)
|
216
|
+
dco (1.0.1)
|
217
|
+
git (~> 1.3)
|
218
|
+
thor (~> 0.19)
|
219
|
+
debug_inspector (0.0.3)
|
220
|
+
dep-selector-libgecode (1.3.1)
|
221
|
+
dep_selector (1.0.6)
|
222
|
+
dep-selector-libgecode (~> 1.0)
|
223
|
+
ffi (~> 1.9)
|
224
|
+
descendants_tracker (0.0.4)
|
225
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
226
|
+
diff-lcs (1.3)
|
227
|
+
diffy (3.2.0)
|
228
|
+
docker-api (1.34.2)
|
229
|
+
excon (>= 0.47.0)
|
230
|
+
multi_json
|
231
|
+
domain_name (0.5.20180417)
|
232
|
+
unf (>= 0.0.5, < 1.0.0)
|
233
|
+
droplet_kit (2.3.0)
|
234
|
+
activesupport (> 3.0, < 6)
|
235
|
+
faraday (~> 0.9)
|
236
|
+
kartograph (~> 0.2.3)
|
237
|
+
resource_kit (~> 0.1.5)
|
238
|
+
virtus (~> 1.0.3)
|
239
|
+
equalizer (0.0.11)
|
240
|
+
erubis (2.7.0)
|
241
|
+
excon (0.62.0)
|
242
|
+
faraday (0.15.1)
|
243
|
+
multipart-post (>= 1.2, < 3)
|
244
|
+
faraday-cookie_jar (0.0.6)
|
245
|
+
faraday (>= 0.7.4)
|
246
|
+
http-cookie (~> 1.0.0)
|
247
|
+
fauxhai (6.2.0)
|
248
|
+
net-ssh
|
249
|
+
ffi (1.9.21)
|
250
|
+
ffi (1.9.21-x64-mingw32)
|
251
|
+
ffi (1.9.21-x86-mingw32)
|
252
|
+
ffi-libarchive (0.2.0)
|
253
|
+
ffi (~> 1.0)
|
254
|
+
ffi-rzmq (2.0.6)
|
255
|
+
ffi-rzmq-core (>= 1.0.6)
|
256
|
+
ffi-rzmq-core (1.0.6)
|
257
|
+
ffi
|
258
|
+
ffi-win32-extensions (1.0.3)
|
259
|
+
ffi
|
260
|
+
ffi-yajl (2.3.1)
|
261
|
+
libyajl2 (~> 1.2)
|
262
|
+
filesize (0.1.1)
|
263
|
+
fog-aws (1.4.1)
|
264
|
+
fog-core (~> 1.38)
|
265
|
+
fog-json (~> 1.0)
|
266
|
+
fog-xml (~> 0.1)
|
267
|
+
ipaddress (~> 0.8)
|
268
|
+
fog-core (1.45.0)
|
269
|
+
builder
|
270
|
+
excon (~> 0.58)
|
271
|
+
formatador (~> 0.2)
|
272
|
+
fog-digitalocean (0.3.0)
|
273
|
+
fog-core (~> 1.42)
|
274
|
+
fog-json (>= 1.0)
|
275
|
+
fog-xml (>= 0.1)
|
276
|
+
ipaddress (>= 0.5)
|
277
|
+
fog-joyent (0.0.1)
|
278
|
+
fog-core (~> 1.42)
|
279
|
+
fog-json (>= 1.0)
|
280
|
+
fog-json (1.0.2)
|
281
|
+
fog-core (~> 1.0)
|
282
|
+
multi_json (~> 1.10)
|
283
|
+
fog-openstack (0.1.25)
|
284
|
+
fog-core (~> 1.40)
|
285
|
+
fog-json (>= 1.0)
|
286
|
+
ipaddress (>= 0.8)
|
287
|
+
fog-rackspace (0.1.5)
|
288
|
+
fog-core (>= 1.35)
|
289
|
+
fog-json (>= 1.0)
|
290
|
+
fog-xml (>= 0.1)
|
291
|
+
ipaddress (>= 0.8)
|
292
|
+
fog-scaleway (0.5.0)
|
293
|
+
fog-core (~> 1.42)
|
294
|
+
fog-json (~> 1.0)
|
295
|
+
fog-softlayer (1.1.4)
|
296
|
+
fog-core
|
297
|
+
fog-json
|
298
|
+
fog-xenserver (0.3.0)
|
299
|
+
fog-core
|
300
|
+
fog-xml
|
301
|
+
fog-xml (0.1.3)
|
302
|
+
fog-core
|
303
|
+
nokogiri (>= 1.5.11, < 2.0.0)
|
304
|
+
foodcritic (13.1.1)
|
305
|
+
cucumber-core (>= 1.3)
|
306
|
+
erubis
|
307
|
+
ffi-yajl (~> 2.0)
|
308
|
+
nokogiri (>= 1.5, < 2.0)
|
309
|
+
rake
|
310
|
+
rufus-lru (~> 1.0)
|
311
|
+
treetop (~> 1.4)
|
312
|
+
formatador (0.2.5)
|
313
|
+
fuzzyurl (0.9.0)
|
314
|
+
gcewinpass (1.0.0)
|
315
|
+
google-api-client (~> 0.9.0)
|
316
|
+
gherkin (5.0.0)
|
317
|
+
git (1.4.0)
|
318
|
+
google-api-client (0.9.28)
|
319
|
+
addressable (~> 2.3)
|
320
|
+
googleauth (~> 0.5)
|
321
|
+
httpclient (~> 2.7)
|
322
|
+
hurley (~> 0.1)
|
323
|
+
memoist (~> 0.11)
|
324
|
+
mime-types (>= 1.6)
|
325
|
+
representable (~> 2.3.0)
|
326
|
+
retriable (~> 2.0)
|
327
|
+
googleauth (0.6.2)
|
328
|
+
faraday (~> 0.12)
|
329
|
+
jwt (>= 1.4, < 3.0)
|
330
|
+
logging (~> 2.0)
|
331
|
+
memoist (~> 0.12)
|
332
|
+
multi_json (~> 1.11)
|
333
|
+
os (~> 0.9)
|
334
|
+
signet (~> 0.7)
|
335
|
+
gssapi (1.2.0)
|
336
|
+
ffi (>= 1.0.1)
|
337
|
+
guard (2.14.2)
|
338
|
+
formatador (>= 0.2.4)
|
339
|
+
listen (>= 2.7, < 4.0)
|
340
|
+
lumberjack (>= 1.0.12, < 2.0)
|
341
|
+
nenv (~> 0.1)
|
342
|
+
notiffany (~> 0.0)
|
343
|
+
pry (>= 0.9.12)
|
344
|
+
shellany (~> 0.0)
|
345
|
+
thor (>= 0.18.1)
|
346
|
+
gyoku (1.3.1)
|
347
|
+
builder (>= 2.1.2)
|
348
|
+
hashie (3.5.7)
|
349
|
+
highline (1.7.10)
|
350
|
+
htmlentities (4.3.4)
|
351
|
+
http-cookie (1.0.3)
|
352
|
+
domain_name (~> 0.5)
|
353
|
+
httpclient (2.8.3)
|
354
|
+
hurley (0.2)
|
355
|
+
i18n (1.0.1)
|
356
|
+
concurrent-ruby (~> 1.0)
|
357
|
+
ice_nine (0.11.2)
|
358
|
+
inifile (3.0.0)
|
359
|
+
iniparse (1.4.4)
|
360
|
+
inspec (2.1.72)
|
361
|
+
addressable (~> 2.4)
|
362
|
+
faraday (>= 0.9.0)
|
363
|
+
hashie (~> 3.4)
|
364
|
+
htmlentities
|
365
|
+
json (>= 1.8, < 3.0)
|
366
|
+
method_source (~> 0.8)
|
367
|
+
mixlib-log
|
368
|
+
parallel (~> 1.9)
|
369
|
+
parslet (~> 1.5)
|
370
|
+
pry (~> 0)
|
371
|
+
rspec (~> 3)
|
372
|
+
rspec-its (~> 1.2)
|
373
|
+
rubyzip (~> 1.1)
|
374
|
+
semverse
|
375
|
+
sslshake (~> 1.2)
|
376
|
+
thor (~> 0.20)
|
377
|
+
tomlrb (~> 1.2)
|
378
|
+
train (~> 1.4)
|
379
|
+
ipaddress (0.8.3)
|
380
|
+
iso8601 (0.9.1)
|
381
|
+
jmespath (1.4.0)
|
382
|
+
json (2.1.0)
|
383
|
+
jwt (2.1.0)
|
384
|
+
kartograph (0.2.7)
|
385
|
+
kitchen-digitalocean (0.9.8)
|
386
|
+
droplet_kit (~> 2.2)
|
387
|
+
test-kitchen (~> 1.17)
|
388
|
+
kitchen-dokken (2.6.7)
|
389
|
+
docker-api (~> 1.33)
|
390
|
+
lockfile (~> 2.1)
|
391
|
+
test-kitchen (~> 1.15)
|
392
|
+
kitchen-ec2 (2.2.1)
|
393
|
+
aws-sdk (~> 2)
|
394
|
+
excon
|
395
|
+
multi_json
|
396
|
+
retryable (~> 2.0)
|
397
|
+
test-kitchen (~> 1.4, >= 1.4.1)
|
398
|
+
kitchen-google (1.4.0)
|
399
|
+
gcewinpass (~> 1.0)
|
400
|
+
google-api-client (~> 0.9.0)
|
401
|
+
test-kitchen
|
402
|
+
kitchen-hyperv (0.5.1)
|
403
|
+
test-kitchen (~> 1.4)
|
404
|
+
kitchen-inspec (0.23.1)
|
405
|
+
hashie (~> 3.4)
|
406
|
+
inspec (>= 0.34.0, < 3.0.0)
|
407
|
+
test-kitchen (~> 1.6)
|
408
|
+
kitchen-vagrant (1.3.2)
|
409
|
+
test-kitchen (~> 1.4)
|
410
|
+
knife-cloud (1.2.1)
|
411
|
+
chef (>= 0.10.10)
|
412
|
+
knife-windows (>= 0.5.14)
|
413
|
+
mixlib-shellout
|
414
|
+
knife-ec2 (0.18.0)
|
415
|
+
fog-aws (~> 1.0)
|
416
|
+
knife-windows (~> 1.0)
|
417
|
+
mime-types
|
418
|
+
knife-google (3.2.0)
|
419
|
+
chef (>= 12.0)
|
420
|
+
gcewinpass (~> 1.0)
|
421
|
+
google-api-client (~> 0.9.0)
|
422
|
+
knife-cloud (~> 1.2.0)
|
423
|
+
knife-opc (0.3.2)
|
424
|
+
knife-push (1.0.3)
|
425
|
+
chef (>= 12.7.2)
|
426
|
+
knife-spork (1.7.1)
|
427
|
+
app_conf (>= 0.4.0)
|
428
|
+
chef (>= 11.0.0)
|
429
|
+
diffy (>= 3.0.1)
|
430
|
+
git (>= 1.2.5)
|
431
|
+
knife-vsphere (2.1.1)
|
432
|
+
chef-vault (>= 2.6.0)
|
433
|
+
filesize (~> 0.1.1)
|
434
|
+
knife-windows (~> 1.0)
|
435
|
+
netaddr (~> 1.5)
|
436
|
+
rbvmomi (~> 1.8)
|
437
|
+
knife-windows (1.9.1)
|
438
|
+
winrm (~> 2.1)
|
439
|
+
winrm-elevated (~> 1.0)
|
440
|
+
libyajl2 (1.2.0)
|
441
|
+
listen (3.1.5)
|
442
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
443
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
444
|
+
ruby_dep (~> 1.2)
|
445
|
+
little-plugger (1.1.4)
|
446
|
+
lockfile (2.1.3)
|
447
|
+
logging (2.2.2)
|
448
|
+
little-plugger (~> 1.1)
|
449
|
+
multi_json (~> 1.10)
|
450
|
+
logify (0.2.0)
|
451
|
+
lumberjack (1.0.13)
|
452
|
+
memoist (0.16.0)
|
453
|
+
method_source (0.9.0)
|
454
|
+
mime-types (3.1)
|
455
|
+
mime-types-data (~> 3.2015)
|
456
|
+
mime-types-data (3.2016.0521)
|
457
|
+
mini_portile2 (2.3.0)
|
458
|
+
minitar (0.6.1)
|
459
|
+
minitest (5.11.3)
|
460
|
+
mixlib-archive (0.4.6)
|
461
|
+
mixlib-log
|
462
|
+
mixlib-authentication (2.0.0)
|
463
|
+
mixlib-cli (1.7.0)
|
464
|
+
mixlib-config (2.2.6)
|
465
|
+
tomlrb
|
466
|
+
mixlib-install (3.10.0)
|
467
|
+
mixlib-shellout
|
468
|
+
mixlib-versioning
|
469
|
+
thor
|
470
|
+
mixlib-log (2.0.4)
|
471
|
+
mixlib-shellout (2.3.2)
|
472
|
+
mixlib-shellout (2.3.2-universal-mingw32)
|
473
|
+
win32-process (~> 0.8.2)
|
474
|
+
wmi-lite (~> 1.0)
|
475
|
+
mixlib-versioning (1.2.2)
|
476
|
+
molinillo (0.6.5)
|
477
|
+
ms_rest (0.7.2)
|
478
|
+
concurrent-ruby (~> 1.0)
|
479
|
+
faraday (~> 0.9)
|
480
|
+
timeliness (~> 0.3)
|
481
|
+
ms_rest_azure (0.10.6)
|
482
|
+
concurrent-ruby (~> 1.0)
|
483
|
+
faraday (~> 0.9)
|
484
|
+
faraday-cookie_jar (~> 0.0.6)
|
485
|
+
ms_rest (~> 0.7.2)
|
486
|
+
multi_json (1.13.1)
|
487
|
+
multi_test (0.1.2)
|
488
|
+
multipart-post (2.0.0)
|
489
|
+
nenv (0.3.0)
|
490
|
+
net-scp (1.2.1)
|
491
|
+
net-ssh (>= 2.6.5)
|
492
|
+
net-sftp (2.1.2)
|
493
|
+
net-ssh (>= 2.6.5)
|
494
|
+
net-ssh (4.2.0)
|
495
|
+
net-ssh-gateway (1.3.0)
|
496
|
+
net-ssh (>= 2.6.5)
|
497
|
+
net-ssh-multi (1.2.1)
|
498
|
+
net-ssh (>= 2.6.5)
|
499
|
+
net-ssh-gateway (>= 1.2.0)
|
500
|
+
net-telnet (0.1.1)
|
501
|
+
netaddr (1.5.1)
|
502
|
+
nokogiri (1.8.2)
|
503
|
+
mini_portile2 (~> 2.3.0)
|
504
|
+
nokogiri (1.8.2-x64-mingw32)
|
505
|
+
mini_portile2 (~> 2.3.0)
|
506
|
+
nokogiri (1.8.2-x86-mingw32)
|
507
|
+
mini_portile2 (~> 2.3.0)
|
508
|
+
nori (2.6.0)
|
509
|
+
notiffany (0.1.1)
|
510
|
+
nenv (~> 0.1)
|
511
|
+
shellany (~> 0.0)
|
512
|
+
octokit (4.9.0)
|
513
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
514
|
+
ohai (14.1.3)
|
515
|
+
chef-config (>= 12.8, < 15)
|
516
|
+
ffi (~> 1.9)
|
517
|
+
ffi-yajl (~> 2.2)
|
518
|
+
ipaddress
|
519
|
+
mixlib-cli
|
520
|
+
mixlib-config (~> 2.0)
|
521
|
+
mixlib-log (~> 2.0, >= 2.0.1)
|
522
|
+
mixlib-shellout (~> 2.0)
|
523
|
+
plist (~> 3.1)
|
524
|
+
systemu (~> 2.6.4)
|
525
|
+
wmi-lite (~> 1.0)
|
526
|
+
opscode-pushy-client (2.4.11)
|
527
|
+
chef (>= 12.19, < 15.0)
|
528
|
+
ffi-rzmq
|
529
|
+
ohai (>= 8.23, < 15.0)
|
530
|
+
uuidtools
|
531
|
+
os (0.9.6)
|
532
|
+
paint (1.0.1)
|
533
|
+
parallel (1.12.1)
|
534
|
+
parser (2.5.1.0)
|
535
|
+
ast (~> 2.4.0)
|
536
|
+
parslet (1.8.2)
|
537
|
+
plist (3.4.0)
|
538
|
+
polyglot (0.3.5)
|
539
|
+
powerpack (0.1.1)
|
540
|
+
proxifier (1.0.3)
|
541
|
+
pry (0.11.3)
|
542
|
+
coderay (~> 1.1.0)
|
543
|
+
method_source (~> 0.9.0)
|
544
|
+
pry-byebug (3.6.0)
|
545
|
+
byebug (~> 10.0)
|
546
|
+
pry (~> 0.10)
|
547
|
+
pry-remote (0.1.8)
|
548
|
+
pry (~> 0.9)
|
549
|
+
slop (~> 3.0)
|
550
|
+
pry-stack_explorer (0.4.9.2)
|
551
|
+
binding_of_caller (>= 0.7)
|
552
|
+
pry (>= 0.9.11)
|
553
|
+
public_suffix (3.0.2)
|
554
|
+
rack (2.0.5)
|
555
|
+
rainbow (3.0.0)
|
556
|
+
rake (12.3.1)
|
557
|
+
rb-fsevent (0.10.3)
|
558
|
+
rb-inotify (0.9.10)
|
559
|
+
ffi (>= 0.5.0, < 2)
|
560
|
+
rb-readline (0.5.5)
|
561
|
+
rbvmomi (1.12.0)
|
562
|
+
builder (~> 3.0)
|
563
|
+
json (>= 1.8)
|
564
|
+
nokogiri (~> 1.5)
|
565
|
+
trollop (~> 2.1)
|
566
|
+
rdoc (6.0.4)
|
567
|
+
rdp-ruby-wmi (0.3.1)
|
568
|
+
representable (2.3.0)
|
569
|
+
uber (~> 0.0.7)
|
570
|
+
resource_kit (0.1.7)
|
571
|
+
addressable (>= 2.3.6, < 3.0.0)
|
572
|
+
retriable (2.1.0)
|
573
|
+
retryable (2.0.4)
|
574
|
+
rspec (3.7.0)
|
575
|
+
rspec-core (~> 3.7.0)
|
576
|
+
rspec-expectations (~> 3.7.0)
|
577
|
+
rspec-mocks (~> 3.7.0)
|
578
|
+
rspec-core (3.7.1)
|
579
|
+
rspec-support (~> 3.7.0)
|
580
|
+
rspec-expectations (3.7.0)
|
581
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
582
|
+
rspec-support (~> 3.7.0)
|
583
|
+
rspec-its (1.2.0)
|
584
|
+
rspec-core (>= 3.0.0)
|
585
|
+
rspec-expectations (>= 3.0.0)
|
586
|
+
rspec-mocks (3.7.0)
|
587
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
588
|
+
rspec-support (~> 3.7.0)
|
589
|
+
rspec-support (3.7.1)
|
590
|
+
rspec_junit_formatter (0.2.3)
|
591
|
+
builder (< 4)
|
592
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
593
|
+
rubocop (0.55.0)
|
594
|
+
parallel (~> 1.10)
|
595
|
+
parser (>= 2.5)
|
596
|
+
powerpack (~> 0.1)
|
597
|
+
rainbow (>= 2.2.2, < 4.0)
|
598
|
+
ruby-progressbar (~> 1.7)
|
599
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
600
|
+
ruby-prof (0.17.0)
|
601
|
+
ruby-progressbar (1.9.0)
|
602
|
+
ruby-shadow (2.5.0)
|
603
|
+
ruby_dep (1.5.0)
|
604
|
+
rubyntlm (0.6.2)
|
605
|
+
rubyzip (1.2.1)
|
606
|
+
rufus-lru (1.1.0)
|
607
|
+
sawyer (0.8.1)
|
608
|
+
addressable (>= 2.3.5, < 2.6)
|
609
|
+
faraday (~> 0.8, < 1.0)
|
610
|
+
semverse (2.0.0)
|
611
|
+
serverspec (2.41.3)
|
612
|
+
multi_json
|
613
|
+
rspec (~> 3.0)
|
614
|
+
rspec-its
|
615
|
+
specinfra (~> 2.72)
|
616
|
+
sfl (2.3)
|
617
|
+
shellany (0.0.1)
|
618
|
+
signet (0.8.1)
|
619
|
+
addressable (~> 2.3)
|
620
|
+
faraday (~> 0.9)
|
621
|
+
jwt (>= 1.5, < 3.0)
|
622
|
+
multi_json (~> 1.10)
|
623
|
+
slop (3.6.0)
|
624
|
+
solve (4.0.0)
|
625
|
+
molinillo (~> 0.6)
|
626
|
+
semverse (>= 1.1, < 3.0)
|
627
|
+
specinfra (2.73.3)
|
628
|
+
net-scp
|
629
|
+
net-ssh (>= 2.7, < 5.0)
|
630
|
+
net-telnet
|
631
|
+
sfl
|
632
|
+
sslshake (1.2.0)
|
633
|
+
stove (6.0.0)
|
634
|
+
chef-api (~> 0.5)
|
635
|
+
logify (~> 0.2)
|
636
|
+
structured_warnings (0.3.0)
|
637
|
+
syslog-logger (1.6.8)
|
638
|
+
systemu (2.6.5)
|
639
|
+
test-kitchen (1.21.2)
|
640
|
+
mixlib-install (~> 3.6)
|
641
|
+
mixlib-shellout (>= 1.2, < 3.0)
|
642
|
+
net-scp (~> 1.1)
|
643
|
+
net-ssh (>= 2.9, < 5.0)
|
644
|
+
net-ssh-gateway (~> 1.2)
|
645
|
+
thor (~> 0.19)
|
646
|
+
winrm (~> 2.0)
|
647
|
+
winrm-elevated (~> 1.0)
|
648
|
+
winrm-fs (~> 1.1)
|
649
|
+
thor (0.20.0)
|
650
|
+
thread_safe (0.3.6)
|
651
|
+
timeliness (0.3.8)
|
652
|
+
tomlrb (1.2.6)
|
653
|
+
train (1.4.4)
|
654
|
+
aws-sdk (~> 2)
|
655
|
+
azure_mgmt_resources (~> 0.15)
|
656
|
+
docker-api (~> 1.26)
|
657
|
+
inifile
|
658
|
+
json (>= 1.8, < 3.0)
|
659
|
+
mixlib-shellout (~> 2.0)
|
660
|
+
net-scp (~> 1.2)
|
661
|
+
net-ssh (>= 2.9, < 5.0)
|
662
|
+
winrm (~> 2.0)
|
663
|
+
winrm-fs (~> 1.0)
|
664
|
+
treetop (1.6.10)
|
665
|
+
polyglot (~> 0.3)
|
666
|
+
trollop (2.1.2)
|
667
|
+
tzinfo (1.2.5)
|
668
|
+
thread_safe (~> 0.1)
|
669
|
+
uber (0.0.15)
|
670
|
+
ubuntu_ami (0.4.1)
|
671
|
+
unf (0.1.4)
|
672
|
+
unf_ext
|
673
|
+
unf_ext (0.0.7.5)
|
674
|
+
unf_ext (0.0.7.5-x64-mingw32)
|
675
|
+
unf_ext (0.0.7.5-x86-mingw32)
|
676
|
+
unicode-display_width (1.3.2)
|
677
|
+
uuidtools (2.1.5)
|
678
|
+
virtus (1.0.5)
|
679
|
+
axiom-types (~> 0.1)
|
680
|
+
coercible (~> 1.0)
|
681
|
+
descendants_tracker (~> 0.0, >= 0.0.3)
|
682
|
+
equalizer (~> 0.0, >= 0.0.9)
|
683
|
+
win32-api (1.5.3-universal-mingw32)
|
684
|
+
win32-dir (0.5.1)
|
685
|
+
ffi (>= 1.0.0)
|
686
|
+
win32-event (0.6.3)
|
687
|
+
win32-ipc (>= 0.6.0)
|
688
|
+
win32-eventlog (0.6.3)
|
689
|
+
ffi
|
690
|
+
win32-ipc (0.7.0)
|
691
|
+
ffi
|
692
|
+
win32-mmap (0.4.2)
|
693
|
+
ffi
|
694
|
+
win32-mutex (0.4.3)
|
695
|
+
win32-ipc (>= 0.6.0)
|
696
|
+
win32-process (0.8.3)
|
697
|
+
ffi (>= 1.0.0)
|
698
|
+
win32-service (0.8.10)
|
699
|
+
ffi
|
700
|
+
ffi-win32-extensions
|
701
|
+
win32-taskscheduler (0.4.1)
|
702
|
+
ffi
|
703
|
+
structured_warnings
|
704
|
+
windows-api (0.4.4)
|
705
|
+
win32-api (>= 1.4.5)
|
706
|
+
windows-pr (1.2.6)
|
707
|
+
win32-api (>= 1.4.5)
|
708
|
+
windows-api (>= 0.4.0)
|
709
|
+
winrm (2.2.3)
|
710
|
+
builder (>= 2.1.2)
|
711
|
+
erubis (~> 2.7)
|
712
|
+
gssapi (~> 1.2)
|
713
|
+
gyoku (~> 1.0)
|
714
|
+
httpclient (~> 2.2, >= 2.2.0.2)
|
715
|
+
logging (>= 1.6.1, < 3.0)
|
716
|
+
nori (~> 2.0)
|
717
|
+
rubyntlm (~> 0.6.0, >= 0.6.1)
|
718
|
+
winrm-elevated (1.1.0)
|
719
|
+
winrm (~> 2.0)
|
720
|
+
winrm-fs (~> 1.0)
|
721
|
+
winrm-fs (1.2.0)
|
722
|
+
erubis (~> 2.7)
|
723
|
+
logging (>= 1.6.1, < 3.0)
|
724
|
+
rubyzip (~> 1.1)
|
725
|
+
winrm (~> 2.0)
|
726
|
+
wmi-lite (1.0.0)
|
727
|
+
yard (0.9.12)
|
728
|
+
|
729
|
+
PLATFORMS
|
730
|
+
ruby
|
731
|
+
x64-mingw32
|
732
|
+
x86-mingw32
|
733
|
+
|
734
|
+
DEPENDENCIES
|
735
|
+
appbundler
|
736
|
+
artifactory
|
737
|
+
berkshelf (>= 7.0)
|
738
|
+
bundler
|
739
|
+
chef (= 14.1.12)
|
740
|
+
chef-dk!
|
741
|
+
chef-provisioning (>= 2.7.1)
|
742
|
+
chef-provisioning-aws (>= 3.0.2)
|
743
|
+
chef-provisioning-fog (>= 0.26.1)
|
744
|
+
chef-sugar
|
745
|
+
chef-vault (>= 3.3.0)
|
746
|
+
cheffish (>= 14.0.1)
|
747
|
+
chefspec (>= 7.2.0)
|
748
|
+
chefstyle
|
749
|
+
cookstyle (>= 2.0.0)
|
750
|
+
cucumber
|
751
|
+
dco
|
752
|
+
dep-selector-libgecode
|
753
|
+
dep_selector
|
754
|
+
fauxhai (>= 5.4.0)
|
755
|
+
ffi (< 1.9.22)
|
756
|
+
ffi-libarchive
|
757
|
+
ffi-rzmq-core
|
758
|
+
foodcritic (>= 12.1)
|
759
|
+
guard
|
760
|
+
inspec (>= 2.1.68)
|
761
|
+
kitchen-digitalocean (>= 0.9.8)
|
762
|
+
kitchen-dokken (>= 2.6.7)
|
763
|
+
kitchen-ec2 (>= 2.2.1)
|
764
|
+
kitchen-google (>= 1.4.0)
|
765
|
+
kitchen-hyperv (>= 0.5.1)
|
766
|
+
kitchen-inspec (>= 0.19.0)
|
767
|
+
kitchen-vagrant (>= 1.3.2)
|
768
|
+
knife-ec2 (>= 0.15.0)
|
769
|
+
knife-google (>= 3.2.0)
|
770
|
+
knife-opc (>= 0.3.2)
|
771
|
+
knife-push
|
772
|
+
knife-spork
|
773
|
+
knife-vsphere (>= 2.0.3)
|
774
|
+
knife-windows (>= 1.9.0)
|
775
|
+
listen
|
776
|
+
mixlib-archive (>= 0.4.6)
|
777
|
+
mixlib-install
|
778
|
+
mixlib-versioning
|
779
|
+
net-ssh (>= 4.2.0)
|
780
|
+
nokogiri
|
781
|
+
ohai (>= 14.0.29)
|
782
|
+
opscode-pushy-client (>= 2.4.11)
|
783
|
+
pry
|
784
|
+
pry-byebug
|
785
|
+
pry-remote
|
786
|
+
pry-stack_explorer
|
787
|
+
rake
|
788
|
+
rb-readline
|
789
|
+
rdoc
|
790
|
+
rdp-ruby-wmi
|
791
|
+
rspec-core (~> 3.0)
|
792
|
+
rspec-expectations (~> 3.0)
|
793
|
+
rspec-mocks (~> 3.0)
|
794
|
+
rubocop
|
795
|
+
ruby-prof
|
796
|
+
ruby-shadow
|
797
|
+
stove
|
798
|
+
test-kitchen (>= 1.21.1)
|
799
|
+
win32-api
|
800
|
+
win32-dir
|
801
|
+
win32-event
|
802
|
+
win32-mutex
|
803
|
+
win32-process (~> 0.8.2)
|
804
|
+
win32-service
|
805
|
+
windows-api
|
806
|
+
windows-pr
|
807
|
+
winrm-elevated
|
808
|
+
winrm-fs
|
809
|
+
yard
|
810
|
+
|
811
|
+
BUNDLED WITH
|
812
|
+
1.16.1
|