chef-dk 3.0.36 → 3.1.0

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