chef-dk 3.9.0 → 3.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +139 -139
- data/Gemfile.lock +917 -919
- data/LICENSE +201 -201
- data/Rakefile +77 -77
- 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 +62 -62
- 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/describe_cookbook.rb +95 -95
- 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 +126 -126
- 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 +251 -251
- 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 -124
- 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 +439 -439
- 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 +139 -139
- data/lib/chef-dk/command/verify.rb +638 -638
- 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 -152
- 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 -151
- data/lib/chef-dk/generator.rb +165 -165
- data/lib/chef-dk/helpers.rb +176 -176
- data/lib/chef-dk/pager.rb +104 -104
- 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 -167
- 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 -265
- 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 +132 -129
- data/lib/chef-dk/policyfile/lock_applier.rb +80 -80
- data/lib/chef-dk/policyfile/lock_fetcher_mixin.rb +37 -0
- data/lib/chef-dk/policyfile/null_cookbook_source.rb +49 -49
- data/lib/chef-dk/policyfile/policyfile_location_specification.rb +128 -125
- data/lib/chef-dk/policyfile/read_cookbook_for_compat_mode_upload.rb +124 -124
- data/lib/chef-dk/policyfile/remote_lock_fetcher.rb +108 -0
- 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 -311
- data/lib/chef-dk/policyfile/source_uri.rb +57 -57
- data/lib/chef-dk/policyfile/storage_config.rb +112 -112
- 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 +222 -222
- 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 -419
- data/lib/chef-dk/policyfile_services/install.rb +167 -167
- data/lib/chef-dk/policyfile_services/push.rb +112 -112
- data/lib/chef-dk/policyfile_services/push_archive.rb +164 -164
- 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 -234
- 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 -104
- 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 -66
- 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/policyfiles/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 +161 -161
- 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 -11
- 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/attribute.rb.erb +0 -0
- 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/cookbook_file.erb +0 -0
- 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 +16 -16
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen.yml.erb +26 -26
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen_dokken.yml.erb +31 -31
- 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/skeletons/code_generator/templates/default/template.erb +0 -0
- 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/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 -765
- 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 +342 -342
- 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/dev_cookbooks/bar-cookbook.gitbundle +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_apps/bin/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_apps/embedded/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_apps/embedded/bin/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_component/bin/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_component/embedded/apps/berkshelf/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_component/embedded/apps/test-kitchen/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/missing_component/embedded/bin/.keep +0 -0
- data/spec/unit/fixtures/eg_omnibus_dir/valid/bin/.keep +0 -0
- 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-dk/.keep +0 -0
- 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/eg_omnibus_dir/valid/embedded/bin/.keep +0 -0
- data/spec/unit/fixtures/example_app/Policyfile.rb +0 -0
- 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/extra/extra_file.txt +0 -0
- 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 -155
- 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 +199 -173
- data/spec/unit/policyfile/lock_applier_spec.rb +100 -100
- data/spec/unit/policyfile/lock_fetcher_mixin_spec.rb +60 -0
- 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/remote_lock_fetcher_spec.rb +129 -0
- 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 +410 -410
- data/spec/unit/policyfile_demands_spec.rb +1197 -1197
- data/spec/unit/policyfile_evaluation_spec.rb +628 -628
- data/spec/unit/policyfile_includes_dsl_spec.rb +220 -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 -473
- data/spec/unit/policyfile_services/install_spec.rb +209 -209
- data/spec/unit/policyfile_services/push_archive_spec.rb +359 -359
- 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 +162 -162
- 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/warning.txt +9 -9
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74f454c8b049108fb126b9348e384fde65aa0ad9ddc06559dd494f0ae8f64bf8
|
4
|
+
data.tar.gz: 81343119e2113b7fbfb161c86b14dad96627ff4e9abd66f6ab42248469698bac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1befd21ad7990681c332b4d491c2ad830f8606ecc8f90dadb8230b520acd985e10c84edad4f9cc11a23e0b0df4fd3bfef62cf74e8f2ad34d642a068cabef8c11
|
7
|
+
data.tar.gz: f1ffe3649fa4564ae741d91e11839e5e8b973adaa5ff07f83222266b4449bd533004fcb3424a894084089cc9f2d43b6892d36069ed0e3fbd0ea5195445e6a118
|
data/Gemfile
CHANGED
@@ -1,139 +1,139 @@
|
|
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
|
-
gem "bundler"
|
23
|
-
|
24
|
-
group(:omnibus_package, :development, :test) do
|
25
|
-
# we pin these gems as they are installed in the ruby source and if we let them
|
26
|
-
# float we'll end up with 2 copies shipped in DK. When we bump Ruby we need to
|
27
|
-
# look at these pins and adjust them
|
28
|
-
gem "rake", "<= 12.3.0"
|
29
|
-
gem "rdoc", "<= 6.0.1"
|
30
|
-
gem "minitest", "<= 5.10.3"
|
31
|
-
|
32
|
-
gem "pry"
|
33
|
-
gem "yard"
|
34
|
-
gem "guard"
|
35
|
-
gem "cookstyle", "~> 3.0" # bump this on the next DK major release
|
36
|
-
gem "foodcritic", "
|
37
|
-
gem "ffi-libarchive"
|
38
|
-
end
|
39
|
-
|
40
|
-
group(:dep_selector) do
|
41
|
-
gem "dep_selector"
|
42
|
-
gem "dep-selector-libgecode"
|
43
|
-
end
|
44
|
-
|
45
|
-
# We tend to track latest stable release without pinning.
|
46
|
-
# In order to prevent the depsolver from downgrading we pin some floors with ">=".
|
47
|
-
# We should only be using "~>" to work around bugs, or temporarily pinning some tech debt.
|
48
|
-
# We equality pin the chef gem itself to assert which version we're shipping.
|
49
|
-
group(:omnibus_package) do
|
50
|
-
gem "appbundler"
|
51
|
-
gem "berkshelf", ">= 7.0.5"
|
52
|
-
gem "chef-provisioning", ">= 2.7.1", group: :provisioning
|
53
|
-
gem "chef-provisioning-aws", ">= 3.0.2", group: :provisioning
|
54
|
-
gem "chef-provisioning-fog", ">= 0.26.1", group: :provisioning
|
55
|
-
gem "chef-vault", ">= 3.4.1"
|
56
|
-
# Expeditor manages the version of chef released to Rubygems. We only release 'stable' chef
|
57
|
-
# gems to Rubygems now, so letting this float on latest should always give us the latest
|
58
|
-
# stable release. May have to re-pin around major version bumping time, or during patch
|
59
|
-
# fixes.
|
60
|
-
gem "chef", "= 14.12.
|
61
|
-
gem "cheffish", ">= 14.0.1"
|
62
|
-
gem "chefspec", ">= 7.3.0"
|
63
|
-
gem "fauxhai", "~> 6.11" # bump this on the next DK major release
|
64
|
-
gem "inspec", "
|
65
|
-
gem "kitchen-azurerm", ">= 0.14"
|
66
|
-
gem "kitchen-ec2", ">= 2.3"
|
67
|
-
gem "kitchen-digitalocean", ">= 0.10.0"
|
68
|
-
gem "kitchen-dokken", ">= 2.6.7"
|
69
|
-
gem "kitchen-google", ">= 2.0.0"
|
70
|
-
gem "kitchen-hyperv", ">= 0.5.1"
|
71
|
-
gem "kitchen-inspec", ">= 1.0"
|
72
|
-
gem "kitchen-vagrant", ">= 1.4"
|
73
|
-
gem "knife-acl", ">= 1.0.3"
|
74
|
-
gem "knife-ec2", ">= 0.19.10"
|
75
|
-
gem "knife-google", ">= 3.3.3"
|
76
|
-
gem "knife-tidy", ">= 1.2.0"
|
77
|
-
gem "knife-windows", ">= 1.9.1"
|
78
|
-
gem "knife-opc", ">= 0.4.0"
|
79
|
-
gem "knife-vsphere", ">= 2.1.1"
|
80
|
-
gem "mixlib-archive", ">= 0.4.16"
|
81
|
-
gem "ohai", "~> 14.0"
|
82
|
-
gem "net-ssh", ">= 4.2.0"
|
83
|
-
gem "test-kitchen", ">= 1.23.0", "< 2"
|
84
|
-
gem "listen"
|
85
|
-
gem "dco"
|
86
|
-
|
87
|
-
# Right now we must import chef-apply as a gem into the ChefDK because this is where all the gem
|
88
|
-
# dependency resolution occurs. Putting it elsewhere endangers older ChefDK issues of gem version
|
89
|
-
# conflicts post-build.
|
90
|
-
gem "chef-apply"
|
91
|
-
|
92
|
-
# For Delivery build node
|
93
|
-
gem "chef-sugar"
|
94
|
-
gem "mixlib-versioning"
|
95
|
-
gem "artifactory"
|
96
|
-
gem "opscode-pushy-client", ">= 2.4.11"
|
97
|
-
gem "ffi-rzmq-core"
|
98
|
-
gem "knife-push"
|
99
|
-
|
100
|
-
# All of the following used to be software definitions we included:
|
101
|
-
gem "knife-spork"
|
102
|
-
gem "mixlib-install"
|
103
|
-
gem "nokogiri"
|
104
|
-
gem "pry-byebug"
|
105
|
-
gem "pry-remote"
|
106
|
-
gem "pry-stack_explorer"
|
107
|
-
gem "rb-readline"
|
108
|
-
gem "rubocop"
|
109
|
-
gem "winrm-fs"
|
110
|
-
gem "winrm-elevated"
|
111
|
-
gem "cucumber"
|
112
|
-
gem "stove"
|
113
|
-
end
|
114
|
-
|
115
|
-
# Everything except AIX
|
116
|
-
group(:ruby_prof) do
|
117
|
-
gem "ruby-prof"
|
118
|
-
end
|
119
|
-
|
120
|
-
# Everything except AIX and Windows
|
121
|
-
group(:ruby_shadow) do
|
122
|
-
gem "ruby-shadow", platform: :ruby
|
123
|
-
end
|
124
|
-
|
125
|
-
gem "chefstyle", group: :test
|
126
|
-
|
127
|
-
# TODO delete this when we figure out how to include the pushy windows dependencies
|
128
|
-
# correctly
|
129
|
-
platforms :mswin, :mingw do
|
130
|
-
gem "rdp-ruby-wmi"
|
131
|
-
gem "windows-api"
|
132
|
-
gem "windows-pr"
|
133
|
-
gem "win32-api"
|
134
|
-
gem "win32-dir"
|
135
|
-
gem "win32-event"
|
136
|
-
gem "win32-mutex"
|
137
|
-
gem "win32-process", "~> 0.8.2"
|
138
|
-
gem "win32-service"
|
139
|
-
end
|
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
|
+
gem "bundler"
|
23
|
+
|
24
|
+
group(:omnibus_package, :development, :test) do
|
25
|
+
# we pin these gems as they are installed in the ruby source and if we let them
|
26
|
+
# float we'll end up with 2 copies shipped in DK. When we bump Ruby we need to
|
27
|
+
# look at these pins and adjust them
|
28
|
+
gem "rake", "<= 12.3.0"
|
29
|
+
gem "rdoc", "<= 6.0.1"
|
30
|
+
gem "minitest", "<= 5.10.3"
|
31
|
+
|
32
|
+
gem "pry"
|
33
|
+
gem "yard"
|
34
|
+
gem "guard"
|
35
|
+
gem "cookstyle", "~> 3.0" # bump this on the next DK major release
|
36
|
+
gem "foodcritic", "< 16"
|
37
|
+
gem "ffi-libarchive", ">= 0.4.0"
|
38
|
+
end
|
39
|
+
|
40
|
+
group(:dep_selector) do
|
41
|
+
gem "dep_selector", ">= 1.0.0"
|
42
|
+
gem "dep-selector-libgecode"
|
43
|
+
end
|
44
|
+
|
45
|
+
# We tend to track latest stable release without pinning.
|
46
|
+
# In order to prevent the depsolver from downgrading we pin some floors with ">=".
|
47
|
+
# We should only be using "~>" to work around bugs, or temporarily pinning some tech debt.
|
48
|
+
# We equality pin the chef gem itself to assert which version we're shipping.
|
49
|
+
group(:omnibus_package) do
|
50
|
+
gem "appbundler", ">= 0.12"
|
51
|
+
gem "berkshelf", ">= 7.0.5"
|
52
|
+
gem "chef-provisioning", ">= 2.7.1", group: :provisioning
|
53
|
+
gem "chef-provisioning-aws", ">= 3.0.2", group: :provisioning
|
54
|
+
gem "chef-provisioning-fog", ">= 0.26.1", group: :provisioning
|
55
|
+
gem "chef-vault", ">= 3.4.1"
|
56
|
+
# Expeditor manages the version of chef released to Rubygems. We only release 'stable' chef
|
57
|
+
# gems to Rubygems now, so letting this float on latest should always give us the latest
|
58
|
+
# stable release. May have to re-pin around major version bumping time, or during patch
|
59
|
+
# fixes.
|
60
|
+
gem "chef", "= 14.12.9"
|
61
|
+
gem "cheffish", ">= 14.0.1"
|
62
|
+
gem "chefspec", ">= 7.3.0"
|
63
|
+
gem "fauxhai", "~> 6.11" # bump this on the next DK major release
|
64
|
+
gem "inspec", "~> 3.9"
|
65
|
+
gem "kitchen-azurerm", ">= 0.14"
|
66
|
+
gem "kitchen-ec2", ">= 2.3", "< 3.0"
|
67
|
+
gem "kitchen-digitalocean", ">= 0.10.0"
|
68
|
+
gem "kitchen-dokken", ">= 2.6.7"
|
69
|
+
gem "kitchen-google", ">= 2.0.0"
|
70
|
+
gem "kitchen-hyperv", ">= 0.5.1"
|
71
|
+
gem "kitchen-inspec", ">= 1.0"
|
72
|
+
gem "kitchen-vagrant", ">= 1.4"
|
73
|
+
gem "knife-acl", ">= 1.0.3"
|
74
|
+
gem "knife-ec2", ">= 0.19.10"
|
75
|
+
gem "knife-google", ">= 3.3.3"
|
76
|
+
gem "knife-tidy", ">= 1.2.0"
|
77
|
+
gem "knife-windows", ">= 1.9.1"
|
78
|
+
gem "knife-opc", ">= 0.4.0"
|
79
|
+
gem "knife-vsphere", ">= 2.1.1"
|
80
|
+
gem "mixlib-archive", ">= 0.4.16"
|
81
|
+
gem "ohai", "~> 14.0"
|
82
|
+
gem "net-ssh", ">= 4.2.0"
|
83
|
+
gem "test-kitchen", ">= 1.23.0", "< 2"
|
84
|
+
gem "listen"
|
85
|
+
gem "dco"
|
86
|
+
|
87
|
+
# Right now we must import chef-apply as a gem into the ChefDK because this is where all the gem
|
88
|
+
# dependency resolution occurs. Putting it elsewhere endangers older ChefDK issues of gem version
|
89
|
+
# conflicts post-build.
|
90
|
+
gem "chef-apply"
|
91
|
+
|
92
|
+
# For Delivery build node
|
93
|
+
gem "chef-sugar"
|
94
|
+
gem "mixlib-versioning"
|
95
|
+
gem "artifactory"
|
96
|
+
gem "opscode-pushy-client", ">= 2.4.11"
|
97
|
+
gem "ffi-rzmq-core"
|
98
|
+
gem "knife-push"
|
99
|
+
|
100
|
+
# All of the following used to be software definitions we included:
|
101
|
+
gem "knife-spork"
|
102
|
+
gem "mixlib-install"
|
103
|
+
gem "nokogiri"
|
104
|
+
gem "pry-byebug"
|
105
|
+
gem "pry-remote"
|
106
|
+
gem "pry-stack_explorer"
|
107
|
+
gem "rb-readline"
|
108
|
+
gem "rubocop"
|
109
|
+
gem "winrm-fs"
|
110
|
+
gem "winrm-elevated"
|
111
|
+
gem "cucumber"
|
112
|
+
gem "stove"
|
113
|
+
end
|
114
|
+
|
115
|
+
# Everything except AIX
|
116
|
+
group(:ruby_prof) do
|
117
|
+
gem "ruby-prof"
|
118
|
+
end
|
119
|
+
|
120
|
+
# Everything except AIX and Windows
|
121
|
+
group(:ruby_shadow) do
|
122
|
+
gem "ruby-shadow", platform: :ruby
|
123
|
+
end
|
124
|
+
|
125
|
+
gem "chefstyle", group: :test
|
126
|
+
|
127
|
+
# TODO delete this when we figure out how to include the pushy windows dependencies
|
128
|
+
# correctly
|
129
|
+
platforms :mswin, :mingw do
|
130
|
+
gem "rdp-ruby-wmi"
|
131
|
+
gem "windows-api"
|
132
|
+
gem "windows-pr"
|
133
|
+
gem "win32-api"
|
134
|
+
gem "win32-dir"
|
135
|
+
gem "win32-event"
|
136
|
+
gem "win32-mutex"
|
137
|
+
gem "win32-process", "~> 0.8.2"
|
138
|
+
gem "win32-service"
|
139
|
+
end
|
data/Gemfile.lock
CHANGED
@@ -1,919 +1,917 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
chef-dk (3.
|
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, < 3.0)
|
13
|
-
mixlib-shellout (>= 2.0, < 4.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.3)
|
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.12.
|
29
|
-
mixlib-cli (>= 1.4, < 3.0)
|
30
|
-
mixlib-shellout (>= 2.0, < 4.0)
|
31
|
-
artifactory (3.0.0)
|
32
|
-
ast (2.4.0)
|
33
|
-
aws-eventstream (1.0.
|
34
|
-
aws-sdk (2.11.
|
35
|
-
aws-sdk-resources (= 2.11.
|
36
|
-
aws-sdk-core (2.11.
|
37
|
-
aws-sigv4 (~> 1.0)
|
38
|
-
jmespath (~> 1.0)
|
39
|
-
aws-sdk-resources (2.11.
|
40
|
-
aws-sdk-core (= 2.11.
|
41
|
-
aws-sigv4 (1.1.0)
|
42
|
-
aws-eventstream (~> 1.0, >= 1.0.2)
|
43
|
-
axiom-types (0.1.1)
|
44
|
-
descendants_tracker (~> 0.0.4)
|
45
|
-
ice_nine (~> 0.11.0)
|
46
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
47
|
-
azure_graph_rbac (0.17.1)
|
48
|
-
ms_rest_azure (~> 0.11.0)
|
49
|
-
azure_mgmt_key_vault (0.17.
|
50
|
-
ms_rest_azure (~> 0.11.0)
|
51
|
-
azure_mgmt_network (0.18.
|
52
|
-
ms_rest_azure (~> 0.11.0)
|
53
|
-
azure_mgmt_resources (0.17.
|
54
|
-
ms_rest_azure (~> 0.11.0)
|
55
|
-
backports (3.
|
56
|
-
berkshelf (7.0.8)
|
57
|
-
chef (>= 13.6.52)
|
58
|
-
chef-config
|
59
|
-
cleanroom (~> 1.0)
|
60
|
-
concurrent-ruby (~> 1.0)
|
61
|
-
minitar (>= 0.6)
|
62
|
-
mixlib-archive (>= 0.4, < 2.0)
|
63
|
-
mixlib-config (>= 2.2.5)
|
64
|
-
mixlib-shellout (>= 2.0, < 4.0)
|
65
|
-
octokit (~> 4.0)
|
66
|
-
retryable (>= 2.0, < 4.0)
|
67
|
-
solve (~> 4.0)
|
68
|
-
thor (>= 0.20)
|
69
|
-
binding_of_caller (0.8.0)
|
70
|
-
debug_inspector (>= 0.0.1)
|
71
|
-
builder (3.2.3)
|
72
|
-
byebug (11.0.1)
|
73
|
-
chef (14.12.
|
74
|
-
addressable
|
75
|
-
bundler (>= 1.10)
|
76
|
-
chef-config (= 14.12.
|
77
|
-
chef-zero (>= 13.0)
|
78
|
-
diff-lcs (~> 1.2, >= 1.2.4)
|
79
|
-
erubis (~> 2.7)
|
80
|
-
ffi (~> 1.9, >= 1.9.25)
|
81
|
-
ffi-yajl (~> 2.2)
|
82
|
-
highline (~> 1.6, >= 1.6.9)
|
83
|
-
iniparse (~> 1.4)
|
84
|
-
mixlib-archive (>= 0.4, < 2.0)
|
85
|
-
mixlib-authentication (~> 2.1)
|
86
|
-
mixlib-cli (>= 1.7, < 3.0)
|
87
|
-
mixlib-log (>= 2.0.3, < 4.0)
|
88
|
-
mixlib-shellout (>= 2.4, < 4.0)
|
89
|
-
net-sftp (~> 2.1, >= 2.1.2)
|
90
|
-
net-ssh (~> 4.2)
|
91
|
-
net-ssh-multi (~> 1.2, >= 1.2.1)
|
92
|
-
ohai (~> 14.0)
|
93
|
-
plist (~> 3.2)
|
94
|
-
proxifier (~> 1.0)
|
95
|
-
rspec-core (~> 3.5)
|
96
|
-
rspec-expectations (~> 3.5)
|
97
|
-
rspec-mocks (~> 3.5)
|
98
|
-
rspec_junit_formatter (~> 0.2.0)
|
99
|
-
serverspec (~> 2.7)
|
100
|
-
specinfra (~> 2.10)
|
101
|
-
syslog-logger (~> 1.6)
|
102
|
-
uuidtools (~> 2.1.5)
|
103
|
-
chef (14.12.
|
104
|
-
addressable
|
105
|
-
bundler (>= 1.10)
|
106
|
-
chef-config (= 14.12.
|
107
|
-
chef-zero (>= 13.0)
|
108
|
-
diff-lcs (~> 1.2, >= 1.2.4)
|
109
|
-
erubis (~> 2.7)
|
110
|
-
ffi (~> 1.9, >= 1.9.25)
|
111
|
-
ffi-yajl (~> 2.2)
|
112
|
-
highline (~> 1.6, >= 1.6.9)
|
113
|
-
iniparse (~> 1.4)
|
114
|
-
iso8601 (~> 0.12.1)
|
115
|
-
mixlib-archive (>= 0.4, < 2.0)
|
116
|
-
mixlib-authentication (~> 2.1)
|
117
|
-
mixlib-cli (>= 1.7, < 3.0)
|
118
|
-
mixlib-log (>= 2.0.3, < 4.0)
|
119
|
-
mixlib-shellout (>= 2.4, < 4.0)
|
120
|
-
net-sftp (~> 2.1, >= 2.1.2)
|
121
|
-
net-ssh (~> 4.2)
|
122
|
-
net-ssh-multi (~> 1.2, >= 1.2.1)
|
123
|
-
ohai (~> 14.0)
|
124
|
-
plist (~> 3.2)
|
125
|
-
proxifier (~> 1.0)
|
126
|
-
rspec-core (~> 3.5)
|
127
|
-
rspec-expectations (~> 3.5)
|
128
|
-
rspec-mocks (~> 3.5)
|
129
|
-
rspec_junit_formatter (~> 0.2.0)
|
130
|
-
serverspec (~> 2.7)
|
131
|
-
specinfra (~> 2.10)
|
132
|
-
syslog-logger (~> 1.6)
|
133
|
-
uuidtools (~> 2.1.5)
|
134
|
-
win32-api (~> 1.5.3)
|
135
|
-
win32-certstore (~> 0.3)
|
136
|
-
win32-dir (~> 0.5.0)
|
137
|
-
win32-event (~> 0.6.1)
|
138
|
-
win32-eventlog (= 0.6.3)
|
139
|
-
win32-mmap (~> 0.4.1)
|
140
|
-
win32-mutex (~> 0.4.2)
|
141
|
-
win32-process (~> 0.8.2)
|
142
|
-
win32-service (>= 1.0, < 3.0)
|
143
|
-
win32-taskscheduler (~> 2.0)
|
144
|
-
wmi-lite (~> 1.0)
|
145
|
-
chef-api (0.9.0)
|
146
|
-
logify (~> 0.1)
|
147
|
-
mime-types
|
148
|
-
chef-apply (0.2.8)
|
149
|
-
chef (>= 14.0)
|
150
|
-
chef-dk (>= 3.0)
|
151
|
-
chef-telemetry
|
152
|
-
mixlib-cli
|
153
|
-
mixlib-config
|
154
|
-
mixlib-install
|
155
|
-
mixlib-log
|
156
|
-
pastel
|
157
|
-
r18n-desktop
|
158
|
-
toml-rb
|
159
|
-
train
|
160
|
-
tty-spinner
|
161
|
-
chef-config (14.12.
|
162
|
-
addressable
|
163
|
-
fuzzyurl
|
164
|
-
mixlib-config (>= 2.2.12, < 4.0)
|
165
|
-
mixlib-shellout (>= 2.0, < 4.0)
|
166
|
-
tomlrb (~> 1.2)
|
167
|
-
chef-provisioning (2.7.6)
|
168
|
-
cheffish (>= 4.0, < 15.0)
|
169
|
-
inifile (>= 2.0.2)
|
170
|
-
mixlib-install (>= 1.0)
|
171
|
-
net-scp (~> 1.0)
|
172
|
-
net-ssh (>= 2.9, < 5.0)
|
173
|
-
net-ssh-gateway (> 1.2, < 3.0)
|
174
|
-
winrm (~> 2.0)
|
175
|
-
winrm-elevated (~> 1.0)
|
176
|
-
winrm-fs (~> 1.0)
|
177
|
-
chef-provisioning-aws (3.0.7)
|
178
|
-
aws-sdk (>= 2.2.18, < 3.0)
|
179
|
-
chef-provisioning (>= 1.0, < 3.0)
|
180
|
-
retryable (~> 2.0, >= 2.0.1)
|
181
|
-
ubuntu_ami (~> 0.4, >= 0.4.1)
|
182
|
-
chef-provisioning-fog (0.26.3)
|
183
|
-
chef-provisioning (>= 1.0, < 3.0)
|
184
|
-
cheffish (>= 13.1.0, < 15.0)
|
185
|
-
fog-digitalocean
|
186
|
-
fog-joyent
|
187
|
-
fog-openstack
|
188
|
-
fog-rackspace
|
189
|
-
fog-scaleway
|
190
|
-
fog-softlayer
|
191
|
-
fog-xenserver
|
192
|
-
retryable
|
193
|
-
winrm-elevated
|
194
|
-
chef-sugar (5.0.1)
|
195
|
-
chef-telemetry (0.1.8)
|
196
|
-
chef-config
|
197
|
-
concurrent-ruby (~> 1.0)
|
198
|
-
ffi-yajl (~> 2.2)
|
199
|
-
http (~> 2.2)
|
200
|
-
chef-vault (3.4.3)
|
201
|
-
chef-zero (14.0.12)
|
202
|
-
ffi-yajl (~> 2.2)
|
203
|
-
hashie (>= 2.0, < 4.0)
|
204
|
-
mixlib-log (>= 2.0, < 4.0)
|
205
|
-
rack (~> 2.0, >= 2.0.6)
|
206
|
-
uuidtools (~> 2.1)
|
207
|
-
cheffish (14.0.4)
|
208
|
-
chef-zero (~> 14.0)
|
209
|
-
net-ssh
|
210
|
-
chefspec (7.3.4)
|
211
|
-
chef (>= 12.16.42)
|
212
|
-
fauxhai (>= 4)
|
213
|
-
rspec (~> 3.0)
|
214
|
-
chefstyle (0.11.2)
|
215
|
-
rubocop (= 0.55.0)
|
216
|
-
citrus (3.0.2)
|
217
|
-
cleanroom (1.0.0)
|
218
|
-
coderay (1.1.2)
|
219
|
-
coercible (1.0.0)
|
220
|
-
descendants_tracker (~> 0.0.1)
|
221
|
-
concurrent-ruby (1.1.5)
|
222
|
-
cookbook-omnifetch (0.8.1)
|
223
|
-
mixlib-archive (>= 0.4, < 2.0)
|
224
|
-
cookstyle (3.0.2)
|
225
|
-
rubocop (= 0.55.0)
|
226
|
-
cucumber (3.1.2)
|
227
|
-
builder (>= 2.1.2)
|
228
|
-
cucumber-core (~> 3.2.0)
|
229
|
-
cucumber-expressions (~> 6.0.1)
|
230
|
-
cucumber-wire (~> 0.0.1)
|
231
|
-
diff-lcs (~> 1.3)
|
232
|
-
gherkin (~> 5.1.0)
|
233
|
-
multi_json (>= 1.7.5, < 2.0)
|
234
|
-
multi_test (>= 0.1.2)
|
235
|
-
cucumber-core (3.2.1)
|
236
|
-
backports (>= 3.8.0)
|
237
|
-
cucumber-tag_expressions (~> 1.1.0)
|
238
|
-
gherkin (~> 5.0)
|
239
|
-
cucumber-expressions (6.0.1)
|
240
|
-
cucumber-tag_expressions (1.1.1)
|
241
|
-
cucumber-wire (0.0.1)
|
242
|
-
dco (1.0.1)
|
243
|
-
git (~> 1.3)
|
244
|
-
thor (~> 0.19)
|
245
|
-
debug_inspector (0.0.3)
|
246
|
-
declarative (0.0.10)
|
247
|
-
declarative-option (0.1.0)
|
248
|
-
dep-selector-libgecode (1.3.1)
|
249
|
-
dep_selector (1.0.6)
|
250
|
-
dep-selector-libgecode (~> 1.0)
|
251
|
-
ffi (~> 1.9)
|
252
|
-
descendants_tracker (0.0.4)
|
253
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
254
|
-
diff-lcs (1.3)
|
255
|
-
diffy (3.3.0)
|
256
|
-
docker-api (1.34.2)
|
257
|
-
excon (>= 0.47.0)
|
258
|
-
multi_json
|
259
|
-
domain_name (0.5.20180417)
|
260
|
-
unf (>= 0.0.5, < 1.0.0)
|
261
|
-
droplet_kit (2.9.0)
|
262
|
-
activesupport (> 3.0, < 6)
|
263
|
-
faraday (~> 0.15)
|
264
|
-
kartograph (~> 0.2.3)
|
265
|
-
resource_kit (~> 0.1.5)
|
266
|
-
virtus (~> 1.0.3)
|
267
|
-
equalizer (0.0.11)
|
268
|
-
equatable (0.5.0)
|
269
|
-
erubis (2.7.0)
|
270
|
-
excon (0.64.0)
|
271
|
-
faraday (0.15.4)
|
272
|
-
multipart-post (>= 1.2, < 3)
|
273
|
-
faraday-cookie_jar (0.0.6)
|
274
|
-
faraday (>= 0.7.4)
|
275
|
-
http-cookie (~> 1.0.0)
|
276
|
-
faraday_middleware (0.12.2)
|
277
|
-
faraday (>= 0.7.4, < 1.0)
|
278
|
-
fauxhai (6.11.0)
|
279
|
-
net-ssh
|
280
|
-
ffi (1.10.0)
|
281
|
-
ffi (1.10.0-x64-mingw32)
|
282
|
-
ffi (1.10.0-x86-mingw32)
|
283
|
-
ffi-libarchive (0.4.6)
|
284
|
-
ffi (~> 1.0)
|
285
|
-
ffi-rzmq (2.0.7)
|
286
|
-
ffi-rzmq-core (>= 1.0.7)
|
287
|
-
ffi-rzmq-core (1.0.7)
|
288
|
-
ffi
|
289
|
-
ffi-win32-extensions (1.0.3)
|
290
|
-
ffi
|
291
|
-
ffi-yajl (2.3.1)
|
292
|
-
libyajl2 (~> 1.2)
|
293
|
-
filesize (0.1.1)
|
294
|
-
fog-aws (2.0.1)
|
295
|
-
fog-core (~> 1.38)
|
296
|
-
fog-json (~> 1.0)
|
297
|
-
fog-xml (~> 0.1)
|
298
|
-
ipaddress (~> 0.8)
|
299
|
-
fog-core (1.45.0)
|
300
|
-
builder
|
301
|
-
excon (~> 0.58)
|
302
|
-
formatador (~> 0.2)
|
303
|
-
fog-digitalocean (0.4.0)
|
304
|
-
fog-core
|
305
|
-
fog-json
|
306
|
-
fog-xml
|
307
|
-
ipaddress (>= 0.5)
|
308
|
-
fog-joyent (0.0.1)
|
309
|
-
fog-core (~> 1.42)
|
310
|
-
fog-json (>= 1.0)
|
311
|
-
fog-json (1.2.0)
|
312
|
-
fog-core
|
313
|
-
multi_json (~> 1.10)
|
314
|
-
fog-openstack (0.3.10)
|
315
|
-
fog-core (>= 1.45, <= 2.1.0)
|
316
|
-
fog-json (>= 1.0)
|
317
|
-
ipaddress (>= 0.8)
|
318
|
-
fog-rackspace (0.1.6)
|
319
|
-
fog-core (>= 1.35)
|
320
|
-
fog-json (>= 1.0)
|
321
|
-
fog-xml (>= 0.1)
|
322
|
-
ipaddress (>= 0.8)
|
323
|
-
fog-scaleway (0.5.0)
|
324
|
-
fog-core (~> 1.42)
|
325
|
-
fog-json (~> 1.0)
|
326
|
-
fog-softlayer (1.1.4)
|
327
|
-
fog-core
|
328
|
-
fog-json
|
329
|
-
fog-xenserver (1.0.0)
|
330
|
-
fog-core
|
331
|
-
fog-xml
|
332
|
-
xmlrpc
|
333
|
-
fog-xml (0.1.3)
|
334
|
-
fog-core
|
335
|
-
nokogiri (>= 1.5.11, < 2.0.0)
|
336
|
-
foodcritic (15.1.0)
|
337
|
-
cucumber-core (>= 1.3, < 4.0)
|
338
|
-
erubis
|
339
|
-
ffi-yajl (~> 2.0)
|
340
|
-
nokogiri (>= 1.5, < 2.0)
|
341
|
-
rake
|
342
|
-
rufus-lru (~> 1.0)
|
343
|
-
treetop (~> 1.4)
|
344
|
-
formatador (0.2.5)
|
345
|
-
fuzzyurl (0.9.0)
|
346
|
-
gcewinpass (1.1.0)
|
347
|
-
google-api-client (~> 0.13)
|
348
|
-
gherkin (5.1.0)
|
349
|
-
git (1.5.0)
|
350
|
-
google-api-client (0.23.9)
|
351
|
-
addressable (~> 2.5, >= 2.5.1)
|
352
|
-
googleauth (>= 0.5, < 0.7.0)
|
353
|
-
httpclient (>= 2.8.1, < 3.0)
|
354
|
-
mime-types (~> 3.0)
|
355
|
-
representable (~> 3.0)
|
356
|
-
retriable (>= 2.0, < 4.0)
|
357
|
-
signet (~> 0.9)
|
358
|
-
googleauth (0.6.7)
|
359
|
-
faraday (~> 0.12)
|
360
|
-
jwt (>= 1.4, < 3.0)
|
361
|
-
memoist (~> 0.16)
|
362
|
-
multi_json (~> 1.11)
|
363
|
-
os (>= 0.9, < 2.0)
|
364
|
-
signet (~> 0.7)
|
365
|
-
gssapi (1.
|
366
|
-
ffi (>= 1.0.1)
|
367
|
-
guard (2.15.0)
|
368
|
-
formatador (>= 0.2.4)
|
369
|
-
listen (>= 2.7, < 4.0)
|
370
|
-
lumberjack (>= 1.0.12, < 2.0)
|
371
|
-
nenv (~> 0.1)
|
372
|
-
notiffany (~> 0.0)
|
373
|
-
pry (>= 0.9.12)
|
374
|
-
shellany (~> 0.0)
|
375
|
-
thor (>= 0.18.1)
|
376
|
-
gyoku (1.3.1)
|
377
|
-
builder (>= 2.1.2)
|
378
|
-
hashie (3.6.0)
|
379
|
-
highline (1.7.10)
|
380
|
-
htmlentities (4.3.4)
|
381
|
-
http (2.2.2)
|
382
|
-
addressable (~> 2.3)
|
383
|
-
http-cookie (~> 1.0)
|
384
|
-
http-form_data (~> 1.0.1)
|
385
|
-
http_parser.rb (~> 0.6.0)
|
386
|
-
http-cookie (1.0.3)
|
387
|
-
domain_name (~> 0.5)
|
388
|
-
http-form_data (1.0.3)
|
389
|
-
http_parser.rb (0.6.0)
|
390
|
-
httpclient (2.8.3)
|
391
|
-
i18n (1.6.0)
|
392
|
-
concurrent-ruby (~> 1.0)
|
393
|
-
ice_nine (0.11.2)
|
394
|
-
inifile (3.0.0)
|
395
|
-
iniparse (1.4.4)
|
396
|
-
inspec (3.9.3)
|
397
|
-
addressable (~> 2.4)
|
398
|
-
faraday (>= 0.9.0)
|
399
|
-
faraday_middleware (~> 0.12.2)
|
400
|
-
hashie (~> 3.4)
|
401
|
-
htmlentities
|
402
|
-
json (>= 1.8, < 3.0)
|
403
|
-
method_source (~> 0.8)
|
404
|
-
mixlib-log
|
405
|
-
multipart-post
|
406
|
-
parallel (~> 1.9)
|
407
|
-
parslet (~> 1.5)
|
408
|
-
pry (~> 0)
|
409
|
-
rspec (~> 3)
|
410
|
-
rspec-its (~> 1.2)
|
411
|
-
rubyzip (~> 1.2, >= 1.2.2)
|
412
|
-
semverse
|
413
|
-
sslshake (~> 1.2)
|
414
|
-
term-ansicolor
|
415
|
-
thor (~> 0.20)
|
416
|
-
tomlrb (~> 1.2)
|
417
|
-
train (~> 1.5, >= 1.7.2)
|
418
|
-
train-habitat (~> 0.1)
|
419
|
-
tty-prompt (~> 0.17)
|
420
|
-
tty-table (~> 0.10)
|
421
|
-
ipaddress (0.8.3)
|
422
|
-
iso8601 (0.12.1)
|
423
|
-
jmespath (1.4.0)
|
424
|
-
json (2.2.0)
|
425
|
-
jwt (2.1.0)
|
426
|
-
kartograph (0.2.7)
|
427
|
-
kitchen-azurerm (0.14.8)
|
428
|
-
azure_mgmt_network (~> 0.18, >= 0.18.2)
|
429
|
-
azure_mgmt_resources (~> 0.17, >= 0.17.2)
|
430
|
-
inifile (~> 3.0, >= 3.0.0)
|
431
|
-
sshkey (~> 1, >= 1.0.0)
|
432
|
-
kitchen-digitalocean (0.10.3)
|
433
|
-
droplet_kit (~> 2.8)
|
434
|
-
test-kitchen (>= 1.17, < 3)
|
435
|
-
kitchen-dokken (2.6.8)
|
436
|
-
docker-api (~> 1.33)
|
437
|
-
lockfile (~> 2.1)
|
438
|
-
test-kitchen (>= 1.15, < 3)
|
439
|
-
kitchen-ec2 (2.5.0)
|
440
|
-
aws-sdk (~> 2)
|
441
|
-
excon
|
442
|
-
multi_json
|
443
|
-
retryable (~> 2.0)
|
444
|
-
test-kitchen (>= 1.4.1, < 3)
|
445
|
-
kitchen-google (2.0.1)
|
446
|
-
gcewinpass (~> 1.1)
|
447
|
-
google-api-client (~> 0.19)
|
448
|
-
test-kitchen
|
449
|
-
kitchen-hyperv (0.5.3)
|
450
|
-
test-kitchen (>= 1.4, < 3)
|
451
|
-
kitchen-inspec (1.1.0)
|
452
|
-
hashie (~> 3.4)
|
453
|
-
inspec (>= 1.47, < 5.0)
|
454
|
-
test-kitchen (>= 1.6, < 3)
|
455
|
-
kitchen-vagrant (1.5.
|
456
|
-
test-kitchen (>= 1.4, < 3)
|
457
|
-
knife-acl (1.0.3)
|
458
|
-
knife-cloud (1.2.3)
|
459
|
-
excon (>= 0.50)
|
460
|
-
knife-windows (>= 1.0)
|
461
|
-
mixlib-shellout
|
462
|
-
knife-ec2 (0.19.16)
|
463
|
-
fog-aws (>= 1, < 4)
|
464
|
-
knife-windows (~> 1.0)
|
465
|
-
knife-google (3.3.7)
|
466
|
-
gcewinpass (~> 1.1)
|
467
|
-
google-api-client (>= 0.19.8, < 0.25)
|
468
|
-
knife-cloud (~> 1.2.0)
|
469
|
-
knife-opc (0.4.1)
|
470
|
-
knife-push (1.1.2)
|
471
|
-
chef (>= 13.0)
|
472
|
-
knife-spork (1.7.2)
|
473
|
-
app_conf (>= 0.4.0)
|
474
|
-
chef (>= 11.0.0)
|
475
|
-
diffy (>= 3.0.1)
|
476
|
-
git (>= 1.2.5)
|
477
|
-
knife-tidy (2.0.1)
|
478
|
-
knife-vsphere (2.1.3)
|
479
|
-
chef-vault (>= 2.6.0)
|
480
|
-
filesize (~> 0.1.1)
|
481
|
-
knife-windows (~> 1.0)
|
482
|
-
netaddr (~> 1.5)
|
483
|
-
rbvmomi (~> 1.8)
|
484
|
-
knife-windows (1.9.6)
|
485
|
-
winrm (~> 2.1)
|
486
|
-
winrm-elevated (~> 1.0)
|
487
|
-
libyajl2 (1.2.0)
|
488
|
-
listen (3.1.5)
|
489
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
490
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
491
|
-
ruby_dep (~> 1.2)
|
492
|
-
little-plugger (1.1.4)
|
493
|
-
lockfile (2.1.3)
|
494
|
-
logging (2.2.2)
|
495
|
-
little-plugger (~> 1.1)
|
496
|
-
multi_json (~> 1.10)
|
497
|
-
logify (0.2.0)
|
498
|
-
lumberjack (1.0.13)
|
499
|
-
memoist (0.16.0)
|
500
|
-
method_source (0.9.2)
|
501
|
-
mime-types (3.2.2)
|
502
|
-
mime-types-data (~> 3.2015)
|
503
|
-
mime-types-data (3.2019.0331)
|
504
|
-
mini_portile2 (2.4.0)
|
505
|
-
minitar (0.8)
|
506
|
-
minitest (5.10.3)
|
507
|
-
mixlib-archive (1.0.1)
|
508
|
-
mixlib-log
|
509
|
-
mixlib-archive (1.0.1-universal-mingw32)
|
510
|
-
mixlib-log
|
511
|
-
mixlib-authentication (2.1.1)
|
512
|
-
mixlib-cli (2.0.
|
513
|
-
mixlib-config (
|
514
|
-
tomlrb
|
515
|
-
mixlib-install (3.11.
|
516
|
-
mixlib-shellout
|
517
|
-
mixlib-versioning
|
518
|
-
thor
|
519
|
-
mixlib-log (3.0.1)
|
520
|
-
mixlib-shellout (2.4.4)
|
521
|
-
mixlib-shellout (2.4.4-universal-mingw32)
|
522
|
-
win32-process (~> 0.8.2)
|
523
|
-
wmi-lite (~> 1.0)
|
524
|
-
mixlib-versioning (1.2.7)
|
525
|
-
molinillo (0.6.6)
|
526
|
-
ms_rest (0.7.3)
|
527
|
-
concurrent-ruby (~> 1.0)
|
528
|
-
faraday (~> 0.9)
|
529
|
-
timeliness (~> 0.3)
|
530
|
-
ms_rest_azure (0.11.0)
|
531
|
-
concurrent-ruby (~> 1.0)
|
532
|
-
faraday (~> 0.9)
|
533
|
-
faraday-cookie_jar (~> 0.0.6)
|
534
|
-
ms_rest (~> 0.7.2)
|
535
|
-
multi_json (1.13.1)
|
536
|
-
multi_test (0.1.2)
|
537
|
-
multipart-post (2.
|
538
|
-
necromancer (0.4.0)
|
539
|
-
nenv (0.3.0)
|
540
|
-
net-scp (1.2.1)
|
541
|
-
net-ssh (>= 2.6.5)
|
542
|
-
net-sftp (2.1.2)
|
543
|
-
net-ssh (>= 2.6.5)
|
544
|
-
net-ssh (4.2.0)
|
545
|
-
net-ssh-gateway (1.3.0)
|
546
|
-
net-ssh (>= 2.6.5)
|
547
|
-
net-ssh-multi (1.2.1)
|
548
|
-
net-ssh (>= 2.6.5)
|
549
|
-
net-ssh-gateway (>= 1.2.0)
|
550
|
-
net-telnet (0.1.1)
|
551
|
-
netaddr (1.5.1)
|
552
|
-
nokogiri (1.10.
|
553
|
-
mini_portile2 (~> 2.4.0)
|
554
|
-
nokogiri (1.10.
|
555
|
-
mini_portile2 (~> 2.4.0)
|
556
|
-
nokogiri (1.10.
|
557
|
-
mini_portile2 (~> 2.4.0)
|
558
|
-
nori (2.6.0)
|
559
|
-
notiffany (0.1.1)
|
560
|
-
nenv (~> 0.1)
|
561
|
-
shellany (~> 0.0)
|
562
|
-
octokit (4.14.0)
|
563
|
-
sawyer (~> 0.8.0, >= 0.5.3)
|
564
|
-
ohai (14.8.
|
565
|
-
chef-config (>= 12.8, < 15)
|
566
|
-
ffi (~> 1.9)
|
567
|
-
ffi-yajl (~> 2.2)
|
568
|
-
ipaddress
|
569
|
-
mixlib-cli (>= 1.7.0)
|
570
|
-
mixlib-config (>= 2.0, < 4.0)
|
571
|
-
mixlib-log (>= 2.0.1, < 4.0)
|
572
|
-
mixlib-shellout (>= 2.0, < 4.0)
|
573
|
-
plist (~> 3.1)
|
574
|
-
systemu (~> 2.6.4)
|
575
|
-
wmi-lite (~> 1.0)
|
576
|
-
opscode-pushy-client (2.5.6)
|
577
|
-
chef (>= 12.19, < 15.0)
|
578
|
-
ffi-rzmq
|
579
|
-
ohai (>= 8.23, < 15.0)
|
580
|
-
uuidtools
|
581
|
-
os (1.0.
|
582
|
-
paint (1.0.1)
|
583
|
-
parallel (1.17.0)
|
584
|
-
parser (2.6.
|
585
|
-
ast (~> 2.4.0)
|
586
|
-
parslet (1.8.2)
|
587
|
-
pastel (0.7.2)
|
588
|
-
equatable (~> 0.5.0)
|
589
|
-
tty-color (~> 0.4.0)
|
590
|
-
plist (3.5.0)
|
591
|
-
polyglot (0.3.5)
|
592
|
-
powerpack (0.1.2)
|
593
|
-
proxifier (1.0.3)
|
594
|
-
pry (0.12.2)
|
595
|
-
coderay (~> 1.1.0)
|
596
|
-
method_source (~> 0.9.0)
|
597
|
-
pry-byebug (3.7.0)
|
598
|
-
byebug (~> 11.0)
|
599
|
-
pry (~> 0.10)
|
600
|
-
pry-remote (0.1.8)
|
601
|
-
pry (~> 0.9)
|
602
|
-
slop (~> 3.0)
|
603
|
-
pry-stack_explorer (0.4.9.3)
|
604
|
-
binding_of_caller (>= 0.7)
|
605
|
-
pry (>= 0.9.11)
|
606
|
-
public_suffix (3.0.3)
|
607
|
-
r18n-core (3.2.0)
|
608
|
-
r18n-desktop (3.2.0)
|
609
|
-
r18n-core (= 3.2.0)
|
610
|
-
rack (2.0.7)
|
611
|
-
rainbow (3.0.0)
|
612
|
-
rake (12.3.0)
|
613
|
-
rb-fsevent (0.10.3)
|
614
|
-
rb-inotify (0.10.0)
|
615
|
-
ffi (~> 1.0)
|
616
|
-
rb-readline (0.5.5)
|
617
|
-
rbvmomi (1.13.0)
|
618
|
-
builder (~> 3.0)
|
619
|
-
json (>= 1.8)
|
620
|
-
nokogiri (~> 1.5)
|
621
|
-
trollop (~> 2.1)
|
622
|
-
rdoc (6.0.1)
|
623
|
-
rdp-ruby-wmi (0.3.1)
|
624
|
-
representable (3.0.4)
|
625
|
-
declarative (< 0.1.0)
|
626
|
-
declarative-option (< 0.2.0)
|
627
|
-
uber (< 0.2.0)
|
628
|
-
resource_kit (0.1.7)
|
629
|
-
addressable (>= 2.3.6, < 3.0.0)
|
630
|
-
retriable (3.1.2)
|
631
|
-
retryable (2.0.4)
|
632
|
-
rspec (3.8.0)
|
633
|
-
rspec-core (~> 3.8.0)
|
634
|
-
rspec-expectations (~> 3.8.0)
|
635
|
-
rspec-mocks (~> 3.8.0)
|
636
|
-
rspec-core (3.8.0)
|
637
|
-
rspec-support (~> 3.8.0)
|
638
|
-
rspec-expectations (3.8.
|
639
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
640
|
-
rspec-support (~> 3.8.0)
|
641
|
-
rspec-its (1.3.0)
|
642
|
-
rspec-core (>= 3.0.0)
|
643
|
-
rspec-expectations (>= 3.0.0)
|
644
|
-
rspec-mocks (3.8.0)
|
645
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
646
|
-
rspec-support (~> 3.8.0)
|
647
|
-
rspec-support (3.8.0)
|
648
|
-
rspec_junit_formatter (0.2.3)
|
649
|
-
builder (< 4)
|
650
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
651
|
-
rubocop (0.55.0)
|
652
|
-
parallel (~> 1.10)
|
653
|
-
parser (>= 2.5)
|
654
|
-
powerpack (~> 0.1)
|
655
|
-
rainbow (>= 2.2.2, < 4.0)
|
656
|
-
ruby-progressbar (~> 1.7)
|
657
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
658
|
-
ruby-prof (0.17.0)
|
659
|
-
ruby-progressbar (1.10.0)
|
660
|
-
ruby-shadow (2.5.0)
|
661
|
-
ruby_dep (1.5.0)
|
662
|
-
rubyntlm (0.6.2)
|
663
|
-
rubyzip (1.2.2)
|
664
|
-
rufus-lru (1.1.0)
|
665
|
-
sawyer (0.8.
|
666
|
-
addressable (>= 2.3.5
|
667
|
-
faraday (
|
668
|
-
semverse (3.0.0)
|
669
|
-
serverspec (2.41.3)
|
670
|
-
multi_json
|
671
|
-
rspec (~> 3.0)
|
672
|
-
rspec-its
|
673
|
-
specinfra (~> 2.72)
|
674
|
-
sfl (2.3)
|
675
|
-
shellany (0.0.1)
|
676
|
-
signet (0.11.0)
|
677
|
-
addressable (~> 2.3)
|
678
|
-
faraday (~> 0.9)
|
679
|
-
jwt (>= 1.5, < 3.0)
|
680
|
-
multi_json (~> 1.10)
|
681
|
-
slop (3.6.0)
|
682
|
-
solve (4.0.2)
|
683
|
-
molinillo (~> 0.6)
|
684
|
-
semverse (>= 1.1, < 4.0)
|
685
|
-
specinfra (2.77.
|
686
|
-
net-scp
|
687
|
-
net-ssh (>= 2.7)
|
688
|
-
net-telnet (= 0.1.1)
|
689
|
-
sfl
|
690
|
-
sshkey (1.9.0)
|
691
|
-
sslshake (1.3.0)
|
692
|
-
stove (7.1.0)
|
693
|
-
chef-api (~> 0.5)
|
694
|
-
logify (~> 0.2)
|
695
|
-
strings (0.1.5)
|
696
|
-
strings-ansi (~> 0.1)
|
697
|
-
unicode-display_width (~> 1.5)
|
698
|
-
unicode_utils (~> 1.4)
|
699
|
-
strings-ansi (0.1.0)
|
700
|
-
structured_warnings (0.3.0)
|
701
|
-
syslog-logger (1.6.8)
|
702
|
-
systemu (2.6.5)
|
703
|
-
term-ansicolor (1.7.1)
|
704
|
-
tins (~> 1.0)
|
705
|
-
test-kitchen (1.24.0)
|
706
|
-
mixlib-install (~> 3.6)
|
707
|
-
mixlib-shellout (>= 1.2, < 3.0)
|
708
|
-
net-scp (~> 1.1)
|
709
|
-
net-ssh (>= 2.9, < 5.0)
|
710
|
-
net-ssh-gateway (~> 1.2)
|
711
|
-
thor (~> 0.19)
|
712
|
-
winrm (~> 2.0)
|
713
|
-
winrm-elevated (~> 1.0)
|
714
|
-
winrm-fs (~> 1.1)
|
715
|
-
thor (0.20.3)
|
716
|
-
thread_safe (0.3.6)
|
717
|
-
timeliness (0.4.0)
|
718
|
-
timers (4.3.0)
|
719
|
-
tins (1.20.2)
|
720
|
-
toml-rb (1.1.2)
|
721
|
-
citrus (~> 3.0, > 3.0)
|
722
|
-
tomlrb (1.2.8)
|
723
|
-
train (1.7.6)
|
724
|
-
aws-sdk (~> 2)
|
725
|
-
azure_graph_rbac (~> 0.16)
|
726
|
-
azure_mgmt_key_vault (~> 0.17)
|
727
|
-
azure_mgmt_resources (~> 0.15)
|
728
|
-
docker-api (~> 1.26)
|
729
|
-
google-api-client (~> 0.23.9)
|
730
|
-
googleauth (~> 0.6.6)
|
731
|
-
inifile
|
732
|
-
json (>= 1.8, < 3.0)
|
733
|
-
mixlib-shellout (>= 2.0)
|
734
|
-
net-scp (~> 1.2)
|
735
|
-
net-ssh (>= 2.9, < 6.0)
|
736
|
-
winrm (~> 2.0)
|
737
|
-
winrm-fs (~> 1.0)
|
738
|
-
train-habitat (0.1.1)
|
739
|
-
train (>= 1.7.5, < 3.0)
|
740
|
-
treetop (1.6.10)
|
741
|
-
polyglot (~> 0.3)
|
742
|
-
trollop (2.9.9)
|
743
|
-
tty-color (0.4.3)
|
744
|
-
tty-cursor (0.6.1)
|
745
|
-
tty-prompt (0.18.1)
|
746
|
-
necromancer (~> 0.4.0)
|
747
|
-
pastel (~> 0.7.0)
|
748
|
-
timers (~> 4.0)
|
749
|
-
tty-cursor (~> 0.6.0)
|
750
|
-
tty-reader (~> 0.5.0)
|
751
|
-
tty-reader (0.5.0)
|
752
|
-
tty-cursor (~> 0.6.0)
|
753
|
-
tty-screen (~> 0.6.4)
|
754
|
-
wisper (~> 2.0.0)
|
755
|
-
tty-screen (0.6.5)
|
756
|
-
tty-spinner (0.9.0)
|
757
|
-
tty-cursor (~> 0.6.0)
|
758
|
-
tty-table (0.10.0)
|
759
|
-
equatable (~> 0.5.0)
|
760
|
-
necromancer (~> 0.4.0)
|
761
|
-
pastel (~> 0.7.2)
|
762
|
-
strings (~> 0.1.0)
|
763
|
-
tty-screen (~> 0.6.4)
|
764
|
-
tzinfo (1.2.5)
|
765
|
-
thread_safe (~> 0.1)
|
766
|
-
uber (0.1.0)
|
767
|
-
ubuntu_ami (0.4.2)
|
768
|
-
unf (0.1.4)
|
769
|
-
unf_ext
|
770
|
-
unf_ext (0.0.7.
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
win32-
|
786
|
-
|
787
|
-
win32-
|
788
|
-
|
789
|
-
win32-
|
790
|
-
ffi
|
791
|
-
win32-
|
792
|
-
ffi
|
793
|
-
win32-
|
794
|
-
|
795
|
-
win32-
|
796
|
-
|
797
|
-
win32-
|
798
|
-
ffi
|
799
|
-
|
800
|
-
|
801
|
-
ffi
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
windows-
|
806
|
-
win32-api (>= 1.4.5)
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
chef
|
843
|
-
chef-
|
844
|
-
chef-
|
845
|
-
chef-provisioning (>=
|
846
|
-
chef-
|
847
|
-
chef-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
kitchen-
|
865
|
-
kitchen-
|
866
|
-
kitchen-
|
867
|
-
kitchen-
|
868
|
-
kitchen-
|
869
|
-
kitchen-
|
870
|
-
|
871
|
-
|
872
|
-
knife-
|
873
|
-
knife-
|
874
|
-
knife-
|
875
|
-
knife-
|
876
|
-
knife-
|
877
|
-
knife-
|
878
|
-
knife-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
mixlib-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
pry
|
891
|
-
pry-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
rspec-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
win32-
|
907
|
-
win32-
|
908
|
-
win32-
|
909
|
-
win32-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
BUNDLED WITH
|
919
|
-
1.17.3
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
chef-dk (3.10.1)
|
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, < 3.0)
|
13
|
+
mixlib-shellout (>= 2.0, < 4.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.3)
|
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.12.5)
|
29
|
+
mixlib-cli (>= 1.4, < 3.0)
|
30
|
+
mixlib-shellout (>= 2.0, < 4.0)
|
31
|
+
artifactory (3.0.0)
|
32
|
+
ast (2.4.0)
|
33
|
+
aws-eventstream (1.0.3)
|
34
|
+
aws-sdk (2.11.274)
|
35
|
+
aws-sdk-resources (= 2.11.274)
|
36
|
+
aws-sdk-core (2.11.274)
|
37
|
+
aws-sigv4 (~> 1.0)
|
38
|
+
jmespath (~> 1.0)
|
39
|
+
aws-sdk-resources (2.11.274)
|
40
|
+
aws-sdk-core (= 2.11.274)
|
41
|
+
aws-sigv4 (1.1.0)
|
42
|
+
aws-eventstream (~> 1.0, >= 1.0.2)
|
43
|
+
axiom-types (0.1.1)
|
44
|
+
descendants_tracker (~> 0.0.4)
|
45
|
+
ice_nine (~> 0.11.0)
|
46
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
47
|
+
azure_graph_rbac (0.17.1)
|
48
|
+
ms_rest_azure (~> 0.11.0)
|
49
|
+
azure_mgmt_key_vault (0.17.4)
|
50
|
+
ms_rest_azure (~> 0.11.0)
|
51
|
+
azure_mgmt_network (0.18.7)
|
52
|
+
ms_rest_azure (~> 0.11.0)
|
53
|
+
azure_mgmt_resources (0.17.4)
|
54
|
+
ms_rest_azure (~> 0.11.0)
|
55
|
+
backports (3.14.0)
|
56
|
+
berkshelf (7.0.8)
|
57
|
+
chef (>= 13.6.52)
|
58
|
+
chef-config
|
59
|
+
cleanroom (~> 1.0)
|
60
|
+
concurrent-ruby (~> 1.0)
|
61
|
+
minitar (>= 0.6)
|
62
|
+
mixlib-archive (>= 0.4, < 2.0)
|
63
|
+
mixlib-config (>= 2.2.5)
|
64
|
+
mixlib-shellout (>= 2.0, < 4.0)
|
65
|
+
octokit (~> 4.0)
|
66
|
+
retryable (>= 2.0, < 4.0)
|
67
|
+
solve (~> 4.0)
|
68
|
+
thor (>= 0.20)
|
69
|
+
binding_of_caller (0.8.0)
|
70
|
+
debug_inspector (>= 0.0.1)
|
71
|
+
builder (3.2.3)
|
72
|
+
byebug (11.0.1)
|
73
|
+
chef (14.12.9)
|
74
|
+
addressable
|
75
|
+
bundler (>= 1.10)
|
76
|
+
chef-config (= 14.12.9)
|
77
|
+
chef-zero (>= 13.0)
|
78
|
+
diff-lcs (~> 1.2, >= 1.2.4)
|
79
|
+
erubis (~> 2.7)
|
80
|
+
ffi (~> 1.9, >= 1.9.25)
|
81
|
+
ffi-yajl (~> 2.2)
|
82
|
+
highline (~> 1.6, >= 1.6.9)
|
83
|
+
iniparse (~> 1.4)
|
84
|
+
mixlib-archive (>= 0.4, < 2.0)
|
85
|
+
mixlib-authentication (~> 2.1)
|
86
|
+
mixlib-cli (>= 1.7, < 3.0)
|
87
|
+
mixlib-log (>= 2.0.3, < 4.0)
|
88
|
+
mixlib-shellout (>= 2.4, < 4.0)
|
89
|
+
net-sftp (~> 2.1, >= 2.1.2)
|
90
|
+
net-ssh (~> 4.2)
|
91
|
+
net-ssh-multi (~> 1.2, >= 1.2.1)
|
92
|
+
ohai (~> 14.0)
|
93
|
+
plist (~> 3.2)
|
94
|
+
proxifier (~> 1.0)
|
95
|
+
rspec-core (~> 3.5)
|
96
|
+
rspec-expectations (~> 3.5)
|
97
|
+
rspec-mocks (~> 3.5)
|
98
|
+
rspec_junit_formatter (~> 0.2.0)
|
99
|
+
serverspec (~> 2.7)
|
100
|
+
specinfra (~> 2.10)
|
101
|
+
syslog-logger (~> 1.6)
|
102
|
+
uuidtools (~> 2.1.5)
|
103
|
+
chef (14.12.9-universal-mingw32)
|
104
|
+
addressable
|
105
|
+
bundler (>= 1.10)
|
106
|
+
chef-config (= 14.12.9)
|
107
|
+
chef-zero (>= 13.0)
|
108
|
+
diff-lcs (~> 1.2, >= 1.2.4)
|
109
|
+
erubis (~> 2.7)
|
110
|
+
ffi (~> 1.9, >= 1.9.25)
|
111
|
+
ffi-yajl (~> 2.2)
|
112
|
+
highline (~> 1.6, >= 1.6.9)
|
113
|
+
iniparse (~> 1.4)
|
114
|
+
iso8601 (~> 0.12.1)
|
115
|
+
mixlib-archive (>= 0.4, < 2.0)
|
116
|
+
mixlib-authentication (~> 2.1)
|
117
|
+
mixlib-cli (>= 1.7, < 3.0)
|
118
|
+
mixlib-log (>= 2.0.3, < 4.0)
|
119
|
+
mixlib-shellout (>= 2.4, < 4.0)
|
120
|
+
net-sftp (~> 2.1, >= 2.1.2)
|
121
|
+
net-ssh (~> 4.2)
|
122
|
+
net-ssh-multi (~> 1.2, >= 1.2.1)
|
123
|
+
ohai (~> 14.0)
|
124
|
+
plist (~> 3.2)
|
125
|
+
proxifier (~> 1.0)
|
126
|
+
rspec-core (~> 3.5)
|
127
|
+
rspec-expectations (~> 3.5)
|
128
|
+
rspec-mocks (~> 3.5)
|
129
|
+
rspec_junit_formatter (~> 0.2.0)
|
130
|
+
serverspec (~> 2.7)
|
131
|
+
specinfra (~> 2.10)
|
132
|
+
syslog-logger (~> 1.6)
|
133
|
+
uuidtools (~> 2.1.5)
|
134
|
+
win32-api (~> 1.5.3)
|
135
|
+
win32-certstore (~> 0.3)
|
136
|
+
win32-dir (~> 0.5.0)
|
137
|
+
win32-event (~> 0.6.1)
|
138
|
+
win32-eventlog (= 0.6.3)
|
139
|
+
win32-mmap (~> 0.4.1)
|
140
|
+
win32-mutex (~> 0.4.2)
|
141
|
+
win32-process (~> 0.8.2)
|
142
|
+
win32-service (>= 1.0, < 3.0)
|
143
|
+
win32-taskscheduler (~> 2.0)
|
144
|
+
wmi-lite (~> 1.0)
|
145
|
+
chef-api (0.9.0)
|
146
|
+
logify (~> 0.1)
|
147
|
+
mime-types
|
148
|
+
chef-apply (0.2.8)
|
149
|
+
chef (>= 14.0)
|
150
|
+
chef-dk (>= 3.0)
|
151
|
+
chef-telemetry
|
152
|
+
mixlib-cli
|
153
|
+
mixlib-config
|
154
|
+
mixlib-install
|
155
|
+
mixlib-log
|
156
|
+
pastel
|
157
|
+
r18n-desktop
|
158
|
+
toml-rb
|
159
|
+
train
|
160
|
+
tty-spinner
|
161
|
+
chef-config (14.12.9)
|
162
|
+
addressable
|
163
|
+
fuzzyurl
|
164
|
+
mixlib-config (>= 2.2.12, < 4.0)
|
165
|
+
mixlib-shellout (>= 2.0, < 4.0)
|
166
|
+
tomlrb (~> 1.2)
|
167
|
+
chef-provisioning (2.7.6)
|
168
|
+
cheffish (>= 4.0, < 15.0)
|
169
|
+
inifile (>= 2.0.2)
|
170
|
+
mixlib-install (>= 1.0)
|
171
|
+
net-scp (~> 1.0)
|
172
|
+
net-ssh (>= 2.9, < 5.0)
|
173
|
+
net-ssh-gateway (> 1.2, < 3.0)
|
174
|
+
winrm (~> 2.0)
|
175
|
+
winrm-elevated (~> 1.0)
|
176
|
+
winrm-fs (~> 1.0)
|
177
|
+
chef-provisioning-aws (3.0.7)
|
178
|
+
aws-sdk (>= 2.2.18, < 3.0)
|
179
|
+
chef-provisioning (>= 1.0, < 3.0)
|
180
|
+
retryable (~> 2.0, >= 2.0.1)
|
181
|
+
ubuntu_ami (~> 0.4, >= 0.4.1)
|
182
|
+
chef-provisioning-fog (0.26.3)
|
183
|
+
chef-provisioning (>= 1.0, < 3.0)
|
184
|
+
cheffish (>= 13.1.0, < 15.0)
|
185
|
+
fog-digitalocean
|
186
|
+
fog-joyent
|
187
|
+
fog-openstack
|
188
|
+
fog-rackspace
|
189
|
+
fog-scaleway
|
190
|
+
fog-softlayer
|
191
|
+
fog-xenserver
|
192
|
+
retryable
|
193
|
+
winrm-elevated
|
194
|
+
chef-sugar (5.0.1)
|
195
|
+
chef-telemetry (0.1.8)
|
196
|
+
chef-config
|
197
|
+
concurrent-ruby (~> 1.0)
|
198
|
+
ffi-yajl (~> 2.2)
|
199
|
+
http (~> 2.2)
|
200
|
+
chef-vault (3.4.3)
|
201
|
+
chef-zero (14.0.12)
|
202
|
+
ffi-yajl (~> 2.2)
|
203
|
+
hashie (>= 2.0, < 4.0)
|
204
|
+
mixlib-log (>= 2.0, < 4.0)
|
205
|
+
rack (~> 2.0, >= 2.0.6)
|
206
|
+
uuidtools (~> 2.1)
|
207
|
+
cheffish (14.0.4)
|
208
|
+
chef-zero (~> 14.0)
|
209
|
+
net-ssh
|
210
|
+
chefspec (7.3.4)
|
211
|
+
chef (>= 12.16.42)
|
212
|
+
fauxhai (>= 4)
|
213
|
+
rspec (~> 3.0)
|
214
|
+
chefstyle (0.11.2)
|
215
|
+
rubocop (= 0.55.0)
|
216
|
+
citrus (3.0.2)
|
217
|
+
cleanroom (1.0.0)
|
218
|
+
coderay (1.1.2)
|
219
|
+
coercible (1.0.0)
|
220
|
+
descendants_tracker (~> 0.0.1)
|
221
|
+
concurrent-ruby (1.1.5)
|
222
|
+
cookbook-omnifetch (0.8.1)
|
223
|
+
mixlib-archive (>= 0.4, < 2.0)
|
224
|
+
cookstyle (3.0.2)
|
225
|
+
rubocop (= 0.55.0)
|
226
|
+
cucumber (3.1.2)
|
227
|
+
builder (>= 2.1.2)
|
228
|
+
cucumber-core (~> 3.2.0)
|
229
|
+
cucumber-expressions (~> 6.0.1)
|
230
|
+
cucumber-wire (~> 0.0.1)
|
231
|
+
diff-lcs (~> 1.3)
|
232
|
+
gherkin (~> 5.1.0)
|
233
|
+
multi_json (>= 1.7.5, < 2.0)
|
234
|
+
multi_test (>= 0.1.2)
|
235
|
+
cucumber-core (3.2.1)
|
236
|
+
backports (>= 3.8.0)
|
237
|
+
cucumber-tag_expressions (~> 1.1.0)
|
238
|
+
gherkin (~> 5.0)
|
239
|
+
cucumber-expressions (6.0.1)
|
240
|
+
cucumber-tag_expressions (1.1.1)
|
241
|
+
cucumber-wire (0.0.1)
|
242
|
+
dco (1.0.1)
|
243
|
+
git (~> 1.3)
|
244
|
+
thor (~> 0.19)
|
245
|
+
debug_inspector (0.0.3)
|
246
|
+
declarative (0.0.10)
|
247
|
+
declarative-option (0.1.0)
|
248
|
+
dep-selector-libgecode (1.3.1)
|
249
|
+
dep_selector (1.0.6)
|
250
|
+
dep-selector-libgecode (~> 1.0)
|
251
|
+
ffi (~> 1.9)
|
252
|
+
descendants_tracker (0.0.4)
|
253
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
254
|
+
diff-lcs (1.3)
|
255
|
+
diffy (3.3.0)
|
256
|
+
docker-api (1.34.2)
|
257
|
+
excon (>= 0.47.0)
|
258
|
+
multi_json
|
259
|
+
domain_name (0.5.20180417)
|
260
|
+
unf (>= 0.0.5, < 1.0.0)
|
261
|
+
droplet_kit (2.9.0)
|
262
|
+
activesupport (> 3.0, < 6)
|
263
|
+
faraday (~> 0.15)
|
264
|
+
kartograph (~> 0.2.3)
|
265
|
+
resource_kit (~> 0.1.5)
|
266
|
+
virtus (~> 1.0.3)
|
267
|
+
equalizer (0.0.11)
|
268
|
+
equatable (0.5.0)
|
269
|
+
erubis (2.7.0)
|
270
|
+
excon (0.64.0)
|
271
|
+
faraday (0.15.4)
|
272
|
+
multipart-post (>= 1.2, < 3)
|
273
|
+
faraday-cookie_jar (0.0.6)
|
274
|
+
faraday (>= 0.7.4)
|
275
|
+
http-cookie (~> 1.0.0)
|
276
|
+
faraday_middleware (0.12.2)
|
277
|
+
faraday (>= 0.7.4, < 1.0)
|
278
|
+
fauxhai (6.11.0)
|
279
|
+
net-ssh
|
280
|
+
ffi (1.10.0)
|
281
|
+
ffi (1.10.0-x64-mingw32)
|
282
|
+
ffi (1.10.0-x86-mingw32)
|
283
|
+
ffi-libarchive (0.4.6)
|
284
|
+
ffi (~> 1.0)
|
285
|
+
ffi-rzmq (2.0.7)
|
286
|
+
ffi-rzmq-core (>= 1.0.7)
|
287
|
+
ffi-rzmq-core (1.0.7)
|
288
|
+
ffi
|
289
|
+
ffi-win32-extensions (1.0.3)
|
290
|
+
ffi
|
291
|
+
ffi-yajl (2.3.1)
|
292
|
+
libyajl2 (~> 1.2)
|
293
|
+
filesize (0.1.1)
|
294
|
+
fog-aws (2.0.1)
|
295
|
+
fog-core (~> 1.38)
|
296
|
+
fog-json (~> 1.0)
|
297
|
+
fog-xml (~> 0.1)
|
298
|
+
ipaddress (~> 0.8)
|
299
|
+
fog-core (1.45.0)
|
300
|
+
builder
|
301
|
+
excon (~> 0.58)
|
302
|
+
formatador (~> 0.2)
|
303
|
+
fog-digitalocean (0.4.0)
|
304
|
+
fog-core
|
305
|
+
fog-json
|
306
|
+
fog-xml
|
307
|
+
ipaddress (>= 0.5)
|
308
|
+
fog-joyent (0.0.1)
|
309
|
+
fog-core (~> 1.42)
|
310
|
+
fog-json (>= 1.0)
|
311
|
+
fog-json (1.2.0)
|
312
|
+
fog-core
|
313
|
+
multi_json (~> 1.10)
|
314
|
+
fog-openstack (0.3.10)
|
315
|
+
fog-core (>= 1.45, <= 2.1.0)
|
316
|
+
fog-json (>= 1.0)
|
317
|
+
ipaddress (>= 0.8)
|
318
|
+
fog-rackspace (0.1.6)
|
319
|
+
fog-core (>= 1.35)
|
320
|
+
fog-json (>= 1.0)
|
321
|
+
fog-xml (>= 0.1)
|
322
|
+
ipaddress (>= 0.8)
|
323
|
+
fog-scaleway (0.5.0)
|
324
|
+
fog-core (~> 1.42)
|
325
|
+
fog-json (~> 1.0)
|
326
|
+
fog-softlayer (1.1.4)
|
327
|
+
fog-core
|
328
|
+
fog-json
|
329
|
+
fog-xenserver (1.0.0)
|
330
|
+
fog-core
|
331
|
+
fog-xml
|
332
|
+
xmlrpc
|
333
|
+
fog-xml (0.1.3)
|
334
|
+
fog-core
|
335
|
+
nokogiri (>= 1.5.11, < 2.0.0)
|
336
|
+
foodcritic (15.1.0)
|
337
|
+
cucumber-core (>= 1.3, < 4.0)
|
338
|
+
erubis
|
339
|
+
ffi-yajl (~> 2.0)
|
340
|
+
nokogiri (>= 1.5, < 2.0)
|
341
|
+
rake
|
342
|
+
rufus-lru (~> 1.0)
|
343
|
+
treetop (~> 1.4)
|
344
|
+
formatador (0.2.5)
|
345
|
+
fuzzyurl (0.9.0)
|
346
|
+
gcewinpass (1.1.0)
|
347
|
+
google-api-client (~> 0.13)
|
348
|
+
gherkin (5.1.0)
|
349
|
+
git (1.5.0)
|
350
|
+
google-api-client (0.23.9)
|
351
|
+
addressable (~> 2.5, >= 2.5.1)
|
352
|
+
googleauth (>= 0.5, < 0.7.0)
|
353
|
+
httpclient (>= 2.8.1, < 3.0)
|
354
|
+
mime-types (~> 3.0)
|
355
|
+
representable (~> 3.0)
|
356
|
+
retriable (>= 2.0, < 4.0)
|
357
|
+
signet (~> 0.9)
|
358
|
+
googleauth (0.6.7)
|
359
|
+
faraday (~> 0.12)
|
360
|
+
jwt (>= 1.4, < 3.0)
|
361
|
+
memoist (~> 0.16)
|
362
|
+
multi_json (~> 1.11)
|
363
|
+
os (>= 0.9, < 2.0)
|
364
|
+
signet (~> 0.7)
|
365
|
+
gssapi (1.3.0)
|
366
|
+
ffi (>= 1.0.1)
|
367
|
+
guard (2.15.0)
|
368
|
+
formatador (>= 0.2.4)
|
369
|
+
listen (>= 2.7, < 4.0)
|
370
|
+
lumberjack (>= 1.0.12, < 2.0)
|
371
|
+
nenv (~> 0.1)
|
372
|
+
notiffany (~> 0.0)
|
373
|
+
pry (>= 0.9.12)
|
374
|
+
shellany (~> 0.0)
|
375
|
+
thor (>= 0.18.1)
|
376
|
+
gyoku (1.3.1)
|
377
|
+
builder (>= 2.1.2)
|
378
|
+
hashie (3.6.0)
|
379
|
+
highline (1.7.10)
|
380
|
+
htmlentities (4.3.4)
|
381
|
+
http (2.2.2)
|
382
|
+
addressable (~> 2.3)
|
383
|
+
http-cookie (~> 1.0)
|
384
|
+
http-form_data (~> 1.0.1)
|
385
|
+
http_parser.rb (~> 0.6.0)
|
386
|
+
http-cookie (1.0.3)
|
387
|
+
domain_name (~> 0.5)
|
388
|
+
http-form_data (1.0.3)
|
389
|
+
http_parser.rb (0.6.0)
|
390
|
+
httpclient (2.8.3)
|
391
|
+
i18n (1.6.0)
|
392
|
+
concurrent-ruby (~> 1.0)
|
393
|
+
ice_nine (0.11.2)
|
394
|
+
inifile (3.0.0)
|
395
|
+
iniparse (1.4.4)
|
396
|
+
inspec (3.9.3)
|
397
|
+
addressable (~> 2.4)
|
398
|
+
faraday (>= 0.9.0)
|
399
|
+
faraday_middleware (~> 0.12.2)
|
400
|
+
hashie (~> 3.4)
|
401
|
+
htmlentities
|
402
|
+
json (>= 1.8, < 3.0)
|
403
|
+
method_source (~> 0.8)
|
404
|
+
mixlib-log
|
405
|
+
multipart-post
|
406
|
+
parallel (~> 1.9)
|
407
|
+
parslet (~> 1.5)
|
408
|
+
pry (~> 0)
|
409
|
+
rspec (~> 3)
|
410
|
+
rspec-its (~> 1.2)
|
411
|
+
rubyzip (~> 1.2, >= 1.2.2)
|
412
|
+
semverse
|
413
|
+
sslshake (~> 1.2)
|
414
|
+
term-ansicolor
|
415
|
+
thor (~> 0.20)
|
416
|
+
tomlrb (~> 1.2)
|
417
|
+
train (~> 1.5, >= 1.7.2)
|
418
|
+
train-habitat (~> 0.1)
|
419
|
+
tty-prompt (~> 0.17)
|
420
|
+
tty-table (~> 0.10)
|
421
|
+
ipaddress (0.8.3)
|
422
|
+
iso8601 (0.12.1)
|
423
|
+
jmespath (1.4.0)
|
424
|
+
json (2.2.0)
|
425
|
+
jwt (2.1.0)
|
426
|
+
kartograph (0.2.7)
|
427
|
+
kitchen-azurerm (0.14.8)
|
428
|
+
azure_mgmt_network (~> 0.18, >= 0.18.2)
|
429
|
+
azure_mgmt_resources (~> 0.17, >= 0.17.2)
|
430
|
+
inifile (~> 3.0, >= 3.0.0)
|
431
|
+
sshkey (~> 1, >= 1.0.0)
|
432
|
+
kitchen-digitalocean (0.10.3)
|
433
|
+
droplet_kit (~> 2.8)
|
434
|
+
test-kitchen (>= 1.17, < 3)
|
435
|
+
kitchen-dokken (2.6.8)
|
436
|
+
docker-api (~> 1.33)
|
437
|
+
lockfile (~> 2.1)
|
438
|
+
test-kitchen (>= 1.15, < 3)
|
439
|
+
kitchen-ec2 (2.5.0)
|
440
|
+
aws-sdk (~> 2)
|
441
|
+
excon
|
442
|
+
multi_json
|
443
|
+
retryable (~> 2.0)
|
444
|
+
test-kitchen (>= 1.4.1, < 3)
|
445
|
+
kitchen-google (2.0.1)
|
446
|
+
gcewinpass (~> 1.1)
|
447
|
+
google-api-client (~> 0.19)
|
448
|
+
test-kitchen
|
449
|
+
kitchen-hyperv (0.5.3)
|
450
|
+
test-kitchen (>= 1.4, < 3)
|
451
|
+
kitchen-inspec (1.1.0)
|
452
|
+
hashie (~> 3.4)
|
453
|
+
inspec (>= 1.47, < 5.0)
|
454
|
+
test-kitchen (>= 1.6, < 3)
|
455
|
+
kitchen-vagrant (1.5.2)
|
456
|
+
test-kitchen (>= 1.4, < 3)
|
457
|
+
knife-acl (1.0.3)
|
458
|
+
knife-cloud (1.2.3)
|
459
|
+
excon (>= 0.50)
|
460
|
+
knife-windows (>= 1.0)
|
461
|
+
mixlib-shellout
|
462
|
+
knife-ec2 (0.19.16)
|
463
|
+
fog-aws (>= 1, < 4)
|
464
|
+
knife-windows (~> 1.0)
|
465
|
+
knife-google (3.3.7)
|
466
|
+
gcewinpass (~> 1.1)
|
467
|
+
google-api-client (>= 0.19.8, < 0.25)
|
468
|
+
knife-cloud (~> 1.2.0)
|
469
|
+
knife-opc (0.4.1)
|
470
|
+
knife-push (1.1.2)
|
471
|
+
chef (>= 13.0)
|
472
|
+
knife-spork (1.7.2)
|
473
|
+
app_conf (>= 0.4.0)
|
474
|
+
chef (>= 11.0.0)
|
475
|
+
diffy (>= 3.0.1)
|
476
|
+
git (>= 1.2.5)
|
477
|
+
knife-tidy (2.0.1)
|
478
|
+
knife-vsphere (2.1.3)
|
479
|
+
chef-vault (>= 2.6.0)
|
480
|
+
filesize (~> 0.1.1)
|
481
|
+
knife-windows (~> 1.0)
|
482
|
+
netaddr (~> 1.5)
|
483
|
+
rbvmomi (~> 1.8)
|
484
|
+
knife-windows (1.9.6)
|
485
|
+
winrm (~> 2.1)
|
486
|
+
winrm-elevated (~> 1.0)
|
487
|
+
libyajl2 (1.2.0)
|
488
|
+
listen (3.1.5)
|
489
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
490
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
491
|
+
ruby_dep (~> 1.2)
|
492
|
+
little-plugger (1.1.4)
|
493
|
+
lockfile (2.1.3)
|
494
|
+
logging (2.2.2)
|
495
|
+
little-plugger (~> 1.1)
|
496
|
+
multi_json (~> 1.10)
|
497
|
+
logify (0.2.0)
|
498
|
+
lumberjack (1.0.13)
|
499
|
+
memoist (0.16.0)
|
500
|
+
method_source (0.9.2)
|
501
|
+
mime-types (3.2.2)
|
502
|
+
mime-types-data (~> 3.2015)
|
503
|
+
mime-types-data (3.2019.0331)
|
504
|
+
mini_portile2 (2.4.0)
|
505
|
+
minitar (0.8)
|
506
|
+
minitest (5.10.3)
|
507
|
+
mixlib-archive (1.0.1)
|
508
|
+
mixlib-log
|
509
|
+
mixlib-archive (1.0.1-universal-mingw32)
|
510
|
+
mixlib-log
|
511
|
+
mixlib-authentication (2.1.1)
|
512
|
+
mixlib-cli (2.0.6)
|
513
|
+
mixlib-config (3.0.1)
|
514
|
+
tomlrb
|
515
|
+
mixlib-install (3.11.18)
|
516
|
+
mixlib-shellout
|
517
|
+
mixlib-versioning
|
518
|
+
thor
|
519
|
+
mixlib-log (3.0.1)
|
520
|
+
mixlib-shellout (2.4.4)
|
521
|
+
mixlib-shellout (2.4.4-universal-mingw32)
|
522
|
+
win32-process (~> 0.8.2)
|
523
|
+
wmi-lite (~> 1.0)
|
524
|
+
mixlib-versioning (1.2.7)
|
525
|
+
molinillo (0.6.6)
|
526
|
+
ms_rest (0.7.3)
|
527
|
+
concurrent-ruby (~> 1.0)
|
528
|
+
faraday (~> 0.9)
|
529
|
+
timeliness (~> 0.3)
|
530
|
+
ms_rest_azure (0.11.0)
|
531
|
+
concurrent-ruby (~> 1.0)
|
532
|
+
faraday (~> 0.9)
|
533
|
+
faraday-cookie_jar (~> 0.0.6)
|
534
|
+
ms_rest (~> 0.7.2)
|
535
|
+
multi_json (1.13.1)
|
536
|
+
multi_test (0.1.2)
|
537
|
+
multipart-post (2.1.1)
|
538
|
+
necromancer (0.4.0)
|
539
|
+
nenv (0.3.0)
|
540
|
+
net-scp (1.2.1)
|
541
|
+
net-ssh (>= 2.6.5)
|
542
|
+
net-sftp (2.1.2)
|
543
|
+
net-ssh (>= 2.6.5)
|
544
|
+
net-ssh (4.2.0)
|
545
|
+
net-ssh-gateway (1.3.0)
|
546
|
+
net-ssh (>= 2.6.5)
|
547
|
+
net-ssh-multi (1.2.1)
|
548
|
+
net-ssh (>= 2.6.5)
|
549
|
+
net-ssh-gateway (>= 1.2.0)
|
550
|
+
net-telnet (0.1.1)
|
551
|
+
netaddr (1.5.1)
|
552
|
+
nokogiri (1.10.3)
|
553
|
+
mini_portile2 (~> 2.4.0)
|
554
|
+
nokogiri (1.10.3-x64-mingw32)
|
555
|
+
mini_portile2 (~> 2.4.0)
|
556
|
+
nokogiri (1.10.3-x86-mingw32)
|
557
|
+
mini_portile2 (~> 2.4.0)
|
558
|
+
nori (2.6.0)
|
559
|
+
notiffany (0.1.1)
|
560
|
+
nenv (~> 0.1)
|
561
|
+
shellany (~> 0.0)
|
562
|
+
octokit (4.14.0)
|
563
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
564
|
+
ohai (14.8.12)
|
565
|
+
chef-config (>= 12.8, < 15)
|
566
|
+
ffi (~> 1.9)
|
567
|
+
ffi-yajl (~> 2.2)
|
568
|
+
ipaddress
|
569
|
+
mixlib-cli (>= 1.7.0)
|
570
|
+
mixlib-config (>= 2.0, < 4.0)
|
571
|
+
mixlib-log (>= 2.0.1, < 4.0)
|
572
|
+
mixlib-shellout (>= 2.0, < 4.0)
|
573
|
+
plist (~> 3.1)
|
574
|
+
systemu (~> 2.6.4)
|
575
|
+
wmi-lite (~> 1.0)
|
576
|
+
opscode-pushy-client (2.5.6)
|
577
|
+
chef (>= 12.19, < 15.0)
|
578
|
+
ffi-rzmq
|
579
|
+
ohai (>= 8.23, < 15.0)
|
580
|
+
uuidtools
|
581
|
+
os (1.0.1)
|
582
|
+
paint (1.0.1)
|
583
|
+
parallel (1.17.0)
|
584
|
+
parser (2.6.3.0)
|
585
|
+
ast (~> 2.4.0)
|
586
|
+
parslet (1.8.2)
|
587
|
+
pastel (0.7.2)
|
588
|
+
equatable (~> 0.5.0)
|
589
|
+
tty-color (~> 0.4.0)
|
590
|
+
plist (3.5.0)
|
591
|
+
polyglot (0.3.5)
|
592
|
+
powerpack (0.1.2)
|
593
|
+
proxifier (1.0.3)
|
594
|
+
pry (0.12.2)
|
595
|
+
coderay (~> 1.1.0)
|
596
|
+
method_source (~> 0.9.0)
|
597
|
+
pry-byebug (3.7.0)
|
598
|
+
byebug (~> 11.0)
|
599
|
+
pry (~> 0.10)
|
600
|
+
pry-remote (0.1.8)
|
601
|
+
pry (~> 0.9)
|
602
|
+
slop (~> 3.0)
|
603
|
+
pry-stack_explorer (0.4.9.3)
|
604
|
+
binding_of_caller (>= 0.7)
|
605
|
+
pry (>= 0.9.11)
|
606
|
+
public_suffix (3.0.3)
|
607
|
+
r18n-core (3.2.0)
|
608
|
+
r18n-desktop (3.2.0)
|
609
|
+
r18n-core (= 3.2.0)
|
610
|
+
rack (2.0.7)
|
611
|
+
rainbow (3.0.0)
|
612
|
+
rake (12.3.0)
|
613
|
+
rb-fsevent (0.10.3)
|
614
|
+
rb-inotify (0.10.0)
|
615
|
+
ffi (~> 1.0)
|
616
|
+
rb-readline (0.5.5)
|
617
|
+
rbvmomi (1.13.0)
|
618
|
+
builder (~> 3.0)
|
619
|
+
json (>= 1.8)
|
620
|
+
nokogiri (~> 1.5)
|
621
|
+
trollop (~> 2.1)
|
622
|
+
rdoc (6.0.1)
|
623
|
+
rdp-ruby-wmi (0.3.1)
|
624
|
+
representable (3.0.4)
|
625
|
+
declarative (< 0.1.0)
|
626
|
+
declarative-option (< 0.2.0)
|
627
|
+
uber (< 0.2.0)
|
628
|
+
resource_kit (0.1.7)
|
629
|
+
addressable (>= 2.3.6, < 3.0.0)
|
630
|
+
retriable (3.1.2)
|
631
|
+
retryable (2.0.4)
|
632
|
+
rspec (3.8.0)
|
633
|
+
rspec-core (~> 3.8.0)
|
634
|
+
rspec-expectations (~> 3.8.0)
|
635
|
+
rspec-mocks (~> 3.8.0)
|
636
|
+
rspec-core (3.8.0)
|
637
|
+
rspec-support (~> 3.8.0)
|
638
|
+
rspec-expectations (3.8.3)
|
639
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
640
|
+
rspec-support (~> 3.8.0)
|
641
|
+
rspec-its (1.3.0)
|
642
|
+
rspec-core (>= 3.0.0)
|
643
|
+
rspec-expectations (>= 3.0.0)
|
644
|
+
rspec-mocks (3.8.0)
|
645
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
646
|
+
rspec-support (~> 3.8.0)
|
647
|
+
rspec-support (3.8.0)
|
648
|
+
rspec_junit_formatter (0.2.3)
|
649
|
+
builder (< 4)
|
650
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
651
|
+
rubocop (0.55.0)
|
652
|
+
parallel (~> 1.10)
|
653
|
+
parser (>= 2.5)
|
654
|
+
powerpack (~> 0.1)
|
655
|
+
rainbow (>= 2.2.2, < 4.0)
|
656
|
+
ruby-progressbar (~> 1.7)
|
657
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
658
|
+
ruby-prof (0.17.0)
|
659
|
+
ruby-progressbar (1.10.0)
|
660
|
+
ruby-shadow (2.5.0)
|
661
|
+
ruby_dep (1.5.0)
|
662
|
+
rubyntlm (0.6.2)
|
663
|
+
rubyzip (1.2.2)
|
664
|
+
rufus-lru (1.1.0)
|
665
|
+
sawyer (0.8.2)
|
666
|
+
addressable (>= 2.3.5)
|
667
|
+
faraday (> 0.8, < 2.0)
|
668
|
+
semverse (3.0.0)
|
669
|
+
serverspec (2.41.3)
|
670
|
+
multi_json
|
671
|
+
rspec (~> 3.0)
|
672
|
+
rspec-its
|
673
|
+
specinfra (~> 2.72)
|
674
|
+
sfl (2.3)
|
675
|
+
shellany (0.0.1)
|
676
|
+
signet (0.11.0)
|
677
|
+
addressable (~> 2.3)
|
678
|
+
faraday (~> 0.9)
|
679
|
+
jwt (>= 1.5, < 3.0)
|
680
|
+
multi_json (~> 1.10)
|
681
|
+
slop (3.6.0)
|
682
|
+
solve (4.0.2)
|
683
|
+
molinillo (~> 0.6)
|
684
|
+
semverse (>= 1.1, < 4.0)
|
685
|
+
specinfra (2.77.2)
|
686
|
+
net-scp
|
687
|
+
net-ssh (>= 2.7)
|
688
|
+
net-telnet (= 0.1.1)
|
689
|
+
sfl
|
690
|
+
sshkey (1.9.0)
|
691
|
+
sslshake (1.3.0)
|
692
|
+
stove (7.1.0)
|
693
|
+
chef-api (~> 0.5)
|
694
|
+
logify (~> 0.2)
|
695
|
+
strings (0.1.5)
|
696
|
+
strings-ansi (~> 0.1)
|
697
|
+
unicode-display_width (~> 1.5)
|
698
|
+
unicode_utils (~> 1.4)
|
699
|
+
strings-ansi (0.1.0)
|
700
|
+
structured_warnings (0.3.0)
|
701
|
+
syslog-logger (1.6.8)
|
702
|
+
systemu (2.6.5)
|
703
|
+
term-ansicolor (1.7.1)
|
704
|
+
tins (~> 1.0)
|
705
|
+
test-kitchen (1.24.0)
|
706
|
+
mixlib-install (~> 3.6)
|
707
|
+
mixlib-shellout (>= 1.2, < 3.0)
|
708
|
+
net-scp (~> 1.1)
|
709
|
+
net-ssh (>= 2.9, < 5.0)
|
710
|
+
net-ssh-gateway (~> 1.2)
|
711
|
+
thor (~> 0.19)
|
712
|
+
winrm (~> 2.0)
|
713
|
+
winrm-elevated (~> 1.0)
|
714
|
+
winrm-fs (~> 1.1)
|
715
|
+
thor (0.20.3)
|
716
|
+
thread_safe (0.3.6)
|
717
|
+
timeliness (0.4.0)
|
718
|
+
timers (4.3.0)
|
719
|
+
tins (1.20.2)
|
720
|
+
toml-rb (1.1.2)
|
721
|
+
citrus (~> 3.0, > 3.0)
|
722
|
+
tomlrb (1.2.8)
|
723
|
+
train (1.7.6)
|
724
|
+
aws-sdk (~> 2)
|
725
|
+
azure_graph_rbac (~> 0.16)
|
726
|
+
azure_mgmt_key_vault (~> 0.17)
|
727
|
+
azure_mgmt_resources (~> 0.15)
|
728
|
+
docker-api (~> 1.26)
|
729
|
+
google-api-client (~> 0.23.9)
|
730
|
+
googleauth (~> 0.6.6)
|
731
|
+
inifile
|
732
|
+
json (>= 1.8, < 3.0)
|
733
|
+
mixlib-shellout (>= 2.0)
|
734
|
+
net-scp (~> 1.2)
|
735
|
+
net-ssh (>= 2.9, < 6.0)
|
736
|
+
winrm (~> 2.0)
|
737
|
+
winrm-fs (~> 1.0)
|
738
|
+
train-habitat (0.1.1)
|
739
|
+
train (>= 1.7.5, < 3.0)
|
740
|
+
treetop (1.6.10)
|
741
|
+
polyglot (~> 0.3)
|
742
|
+
trollop (2.9.9)
|
743
|
+
tty-color (0.4.3)
|
744
|
+
tty-cursor (0.6.1)
|
745
|
+
tty-prompt (0.18.1)
|
746
|
+
necromancer (~> 0.4.0)
|
747
|
+
pastel (~> 0.7.0)
|
748
|
+
timers (~> 4.0)
|
749
|
+
tty-cursor (~> 0.6.0)
|
750
|
+
tty-reader (~> 0.5.0)
|
751
|
+
tty-reader (0.5.0)
|
752
|
+
tty-cursor (~> 0.6.0)
|
753
|
+
tty-screen (~> 0.6.4)
|
754
|
+
wisper (~> 2.0.0)
|
755
|
+
tty-screen (0.6.5)
|
756
|
+
tty-spinner (0.9.0)
|
757
|
+
tty-cursor (~> 0.6.0)
|
758
|
+
tty-table (0.10.0)
|
759
|
+
equatable (~> 0.5.0)
|
760
|
+
necromancer (~> 0.4.0)
|
761
|
+
pastel (~> 0.7.2)
|
762
|
+
strings (~> 0.1.0)
|
763
|
+
tty-screen (~> 0.6.4)
|
764
|
+
tzinfo (1.2.5)
|
765
|
+
thread_safe (~> 0.1)
|
766
|
+
uber (0.1.0)
|
767
|
+
ubuntu_ami (0.4.2)
|
768
|
+
unf (0.1.4)
|
769
|
+
unf_ext
|
770
|
+
unf_ext (0.0.7.6)
|
771
|
+
unicode-display_width (1.6.0)
|
772
|
+
unicode_utils (1.4.0)
|
773
|
+
uuidtools (2.1.5)
|
774
|
+
virtus (1.0.5)
|
775
|
+
axiom-types (~> 0.1)
|
776
|
+
coercible (~> 1.0)
|
777
|
+
descendants_tracker (~> 0.0, >= 0.0.3)
|
778
|
+
equalizer (~> 0.0, >= 0.0.9)
|
779
|
+
win32-api (1.5.3-universal-mingw32)
|
780
|
+
win32-certstore (0.3.0)
|
781
|
+
ffi
|
782
|
+
mixlib-shellout
|
783
|
+
win32-dir (0.5.1)
|
784
|
+
ffi (>= 1.0.0)
|
785
|
+
win32-event (0.6.3)
|
786
|
+
win32-ipc (>= 0.6.0)
|
787
|
+
win32-eventlog (0.6.3)
|
788
|
+
ffi
|
789
|
+
win32-ipc (0.7.0)
|
790
|
+
ffi
|
791
|
+
win32-mmap (0.4.2)
|
792
|
+
ffi
|
793
|
+
win32-mutex (0.4.3)
|
794
|
+
win32-ipc (>= 0.6.0)
|
795
|
+
win32-process (0.8.3)
|
796
|
+
ffi (>= 1.0.0)
|
797
|
+
win32-service (2.1.4)
|
798
|
+
ffi
|
799
|
+
ffi-win32-extensions
|
800
|
+
win32-taskscheduler (2.0.4)
|
801
|
+
ffi
|
802
|
+
structured_warnings
|
803
|
+
windows-api (0.4.4)
|
804
|
+
win32-api (>= 1.4.5)
|
805
|
+
windows-pr (1.2.6)
|
806
|
+
win32-api (>= 1.4.5)
|
807
|
+
windows-api (>= 0.4.0)
|
808
|
+
winrm (2.3.2)
|
809
|
+
builder (>= 2.1.2)
|
810
|
+
erubis (~> 2.7)
|
811
|
+
gssapi (~> 1.2)
|
812
|
+
gyoku (~> 1.0)
|
813
|
+
httpclient (~> 2.2, >= 2.2.0.2)
|
814
|
+
logging (>= 1.6.1, < 3.0)
|
815
|
+
nori (~> 2.0)
|
816
|
+
rubyntlm (~> 0.6.0, >= 0.6.1)
|
817
|
+
winrm-elevated (1.1.1)
|
818
|
+
winrm (~> 2.0)
|
819
|
+
winrm-fs (~> 1.0)
|
820
|
+
winrm-fs (1.3.2)
|
821
|
+
erubis (~> 2.7)
|
822
|
+
logging (>= 1.6.1, < 3.0)
|
823
|
+
rubyzip (~> 1.1)
|
824
|
+
winrm (~> 2.0)
|
825
|
+
wisper (2.0.0)
|
826
|
+
wmi-lite (1.0.2)
|
827
|
+
xmlrpc (0.3.0)
|
828
|
+
yard (0.9.19)
|
829
|
+
|
830
|
+
PLATFORMS
|
831
|
+
ruby
|
832
|
+
x64-mingw32
|
833
|
+
x86-mingw32
|
834
|
+
|
835
|
+
DEPENDENCIES
|
836
|
+
appbundler (>= 0.12)
|
837
|
+
artifactory
|
838
|
+
berkshelf (>= 7.0.5)
|
839
|
+
bundler
|
840
|
+
chef (= 14.12.9)
|
841
|
+
chef-apply
|
842
|
+
chef-dk!
|
843
|
+
chef-provisioning (>= 2.7.1)
|
844
|
+
chef-provisioning-aws (>= 3.0.2)
|
845
|
+
chef-provisioning-fog (>= 0.26.1)
|
846
|
+
chef-sugar
|
847
|
+
chef-vault (>= 3.4.1)
|
848
|
+
cheffish (>= 14.0.1)
|
849
|
+
chefspec (>= 7.3.0)
|
850
|
+
chefstyle
|
851
|
+
cookstyle (~> 3.0)
|
852
|
+
cucumber
|
853
|
+
dco
|
854
|
+
dep-selector-libgecode
|
855
|
+
dep_selector (>= 1.0.0)
|
856
|
+
fauxhai (~> 6.11)
|
857
|
+
ffi-libarchive (>= 0.4.0)
|
858
|
+
ffi-rzmq-core
|
859
|
+
foodcritic (< 16)
|
860
|
+
guard
|
861
|
+
inspec (~> 3.9)
|
862
|
+
kitchen-azurerm (>= 0.14)
|
863
|
+
kitchen-digitalocean (>= 0.10.0)
|
864
|
+
kitchen-dokken (>= 2.6.7)
|
865
|
+
kitchen-ec2 (>= 2.3, < 3.0)
|
866
|
+
kitchen-google (>= 2.0.0)
|
867
|
+
kitchen-hyperv (>= 0.5.1)
|
868
|
+
kitchen-inspec (>= 1.0)
|
869
|
+
kitchen-vagrant (>= 1.4)
|
870
|
+
knife-acl (>= 1.0.3)
|
871
|
+
knife-ec2 (>= 0.19.10)
|
872
|
+
knife-google (>= 3.3.3)
|
873
|
+
knife-opc (>= 0.4.0)
|
874
|
+
knife-push
|
875
|
+
knife-spork
|
876
|
+
knife-tidy (>= 1.2.0)
|
877
|
+
knife-vsphere (>= 2.1.1)
|
878
|
+
knife-windows (>= 1.9.1)
|
879
|
+
listen
|
880
|
+
minitest (<= 5.10.3)
|
881
|
+
mixlib-archive (>= 0.4.16)
|
882
|
+
mixlib-install
|
883
|
+
mixlib-versioning
|
884
|
+
net-ssh (>= 4.2.0)
|
885
|
+
nokogiri
|
886
|
+
ohai (~> 14.0)
|
887
|
+
opscode-pushy-client (>= 2.4.11)
|
888
|
+
pry
|
889
|
+
pry-byebug
|
890
|
+
pry-remote
|
891
|
+
pry-stack_explorer
|
892
|
+
rake (<= 12.3.0)
|
893
|
+
rb-readline
|
894
|
+
rdoc (<= 6.0.1)
|
895
|
+
rdp-ruby-wmi
|
896
|
+
rspec-core (~> 3.0)
|
897
|
+
rspec-expectations (~> 3.0)
|
898
|
+
rspec-mocks (~> 3.0)
|
899
|
+
rubocop
|
900
|
+
ruby-prof
|
901
|
+
ruby-shadow
|
902
|
+
stove
|
903
|
+
test-kitchen (>= 1.23.0, < 2)
|
904
|
+
win32-api
|
905
|
+
win32-dir
|
906
|
+
win32-event
|
907
|
+
win32-mutex
|
908
|
+
win32-process (~> 0.8.2)
|
909
|
+
win32-service
|
910
|
+
windows-api
|
911
|
+
windows-pr
|
912
|
+
winrm-elevated
|
913
|
+
winrm-fs
|
914
|
+
yard
|
915
|
+
|
916
|
+
BUNDLED WITH
|
917
|
+
1.17.3
|