chef-dk 2.4.17 → 2.5.3

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