chef-dk 2.6.2 → 3.0.36

Sign up to get free protection for your applications and to get access to all the features.
Files changed (377) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +126 -121
  3. data/Gemfile.lock +812 -807
  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 -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 +152 -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 +151 -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 +104 -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 +167 -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/git_lock_fetcher.rb +265 -0
  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 -123
  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 -122
  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 -312
  108. data/lib/chef-dk/policyfile/source_uri.rb +57 -57
  109. data/lib/chef-dk/policyfile/storage_config.rb +112 -102
  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 -420
  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 -200
  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 -236
  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 -107
  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 -54
  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 -152
  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 -0
  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 -756
  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 -0
  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 -638
  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 -478
  359. data/spec/unit/policyfile_services/install_spec.rb +209 -209
  360. data/spec/unit/policyfile_services/push_archive_spec.rb +359 -374
  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 +9 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 787c6f5c02eaa3426b2760eaa83509b9055b738e394265502dadb46c8754cadb
4
- data.tar.gz: 154355bcfb506f59f22cde96bb712234e923b269cc1cb293d9c528ecbccc09a9
3
+ metadata.gz: 1f1b550a352e3cfe3047595da0a303623a1ee196d5a13e725e3e24167d92c7b3
4
+ data.tar.gz: ccba8533bb971851181e7d859051e29308df4a01a58d22832d41a7685a64ab56
5
5
  SHA512:
6
- metadata.gz: 6a400bc0dfca255c455ce380a09b5f8b11b1dc8467896af9bfcad3093bf78b8a22d8262df0cf3fbb1cd5e0a62fc45fc2cb50384142b18d842b234604ba304dd5
7
- data.tar.gz: 637e9ae6b3b3829d1d67e5f0618fbc9e41ea91dc6af62ddfcca91aa550df559238859ee3bea2f4e1cd18a1d50fe011c4a8e1c1f924bb6a3ac491457558221644
6
+ metadata.gz: ce940a63dc83bb2e10afdb2dcdaf3baafcd89aa7ab9514ba9d8d58c5485da1ba5f0f2fae197302da51fc8fcb76ebb2749bb2665e7c7a45ed1cf074d71b8ead78
7
+ data.tar.gz: b321a2f3c243f97def1f9b32d897b9791da32765191ca2b2e05cc692682b700c558b071448f6678afd5d3a3d64efe3dc5a0582c0d9013e965b3c088fc6368f4a
data/Gemfile CHANGED
@@ -1,121 +1,126 @@
1
- #
2
- # Copyright:: Copyright (c) 2014-2016 Chef Software Inc.
3
- # License:: Apache License, Version 2.0
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License");
6
- # you may not use this file except in compliance with the License.
7
- # You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
- #
17
-
18
- source "https://rubygems.org"
19
-
20
- gemspec
21
-
22
- 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"
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.12.3"
51
- gem "cheffish", ">= 13.1.0"
52
- gem "chefspec", ">= 7.1.0", "< 7.3.0"
53
- gem "fauxhai", "~> 5.4"
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"
67
- # net-ssh 4.2.0 explodes the world. FIXME
68
- gem "net-ssh", "= 4.1.0"
69
- gem "test-kitchen", "~> 1.22.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
+ #
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,807 +1,812 @@
1
- PATH
2
- remote: .
3
- specs:
4
- chef-dk (2.6.2)
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.2.1)
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.162)
34
- aws-sdk-resources (= 2.11.162)
35
- aws-sdk-core (2.11.162)
36
- aws-sigv4 (~> 1.0)
37
- jmespath (~> 1.0)
38
- aws-sdk-resources (2.11.162)
39
- aws-sdk-core (= 2.11.162)
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
- backports (3.11.4)
46
- berkshelf (6.3.4)
47
- buff-config (~> 2.0)
48
- buff-extensions (~> 2.0)
49
- chef (>= 12.7.2, < 14.0)
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.2)
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.12.3)
80
- addressable
81
- bundler (>= 1.10)
82
- chef-config (= 13.12.3)
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.12.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.4)
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, < 3.8)
102
- rspec-expectations (~> 3.5, < 3.8)
103
- rspec-mocks (~> 3.5, < 3.8)
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.12.3-universal-mingw32)
110
- addressable
111
- bundler (>= 1.10)
112
- chef-config (= 13.12.3)
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.12.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.4)
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, < 3.8)
133
- rspec-expectations (~> 3.5, < 3.8)
134
- rspec-mocks (~> 3.5, < 3.8)
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 (~> 1.0)
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.12.3)
154
- addressable
155
- fuzzyurl
156
- mixlib-config (>= 2.2.12, < 3.0)
157
- mixlib-shellout (~> 2.0)
158
- tomlrb (~> 1.2)
159
- chef-provisioning (2.7.2)
160
- cheffish (>= 4.0, < 15.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.6)
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.1)
175
- chef-provisioning (>= 1.0, < 3.0)
176
- cheffish (>= 13.1.0, < 15.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.1.0)
187
- chef-vault (3.4.3)
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.2.1)
198
- chef (>= 12.14.89)
199
- fauxhai (>= 4)
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.2)
213
- builder (>= 2.1.2)
214
- cucumber-core (~> 3.2.0)
215
- cucumber-expressions (~> 6.0.1)
216
- cucumber-wire (~> 0.0.1)
217
- diff-lcs (~> 1.3)
218
- gherkin (~> 5.1.0)
219
- multi_json (>= 1.7.5, < 2.0)
220
- multi_test (>= 0.1.2)
221
- cucumber-core (3.2.1)
222
- backports (>= 3.8.0)
223
- cucumber-tag_expressions (~> 1.1.0)
224
- gherkin (~> 5.0)
225
- cucumber-expressions (6.0.1)
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
- declarative (0.0.10)
233
- declarative-option (0.1.0)
234
- dep-selector-libgecode (1.3.1)
235
- dep_selector (1.0.6)
236
- dep-selector-libgecode (~> 1.0)
237
- ffi (~> 1.9)
238
- descendants_tracker (0.0.4)
239
- thread_safe (~> 0.3, >= 0.3.1)
240
- diff-lcs (1.3)
241
- diffy (3.2.1)
242
- docker-api (1.34.2)
243
- excon (>= 0.47.0)
244
- multi_json
245
- droplet_kit (2.6.0)
246
- activesupport (> 3.0, < 6)
247
- faraday (~> 0.9)
248
- kartograph (~> 0.2.3)
249
- resource_kit (~> 0.1.5)
250
- virtus (~> 1.0.3)
251
- equalizer (0.0.11)
252
- erubis (2.7.0)
253
- excon (0.62.0)
254
- faraday (0.15.3)
255
- multipart-post (>= 1.2, < 3)
256
- fauxhai (5.6.0)
257
- net-ssh
258
- ffi (1.9.25)
259
- ffi (1.9.25-x64-mingw32)
260
- ffi (1.9.25-x86-mingw32)
261
- ffi-rzmq (2.0.6)
262
- ffi-rzmq-core (>= 1.0.6)
263
- ffi-rzmq-core (1.0.6)
264
- ffi
265
- ffi-win32-extensions (1.0.3)
266
- ffi
267
- ffi-yajl (2.3.1)
268
- libyajl2 (~> 1.2)
269
- fog-aws (2.0.1)
270
- fog-core (~> 1.38)
271
- fog-json (~> 1.0)
272
- fog-xml (~> 0.1)
273
- ipaddress (~> 0.8)
274
- fog-core (1.45.0)
275
- builder
276
- excon (~> 0.58)
277
- formatador (~> 0.2)
278
- fog-digitalocean (0.4.0)
279
- fog-core
280
- fog-json
281
- fog-xml
282
- ipaddress (>= 0.5)
283
- fog-joyent (0.0.1)
284
- fog-core (~> 1.42)
285
- fog-json (>= 1.0)
286
- fog-json (1.2.0)
287
- fog-core
288
- multi_json (~> 1.10)
289
- fog-openstack (0.3.8)
290
- fog-core (>= 1.45, <= 2.1.0)
291
- fog-json (>= 1.0)
292
- ipaddress (>= 0.8)
293
- fog-rackspace (0.1.6)
294
- fog-core (>= 1.35)
295
- fog-json (>= 1.0)
296
- fog-xml (>= 0.1)
297
- ipaddress (>= 0.8)
298
- fog-scaleway (0.5.0)
299
- fog-core (~> 1.42)
300
- fog-json (~> 1.0)
301
- fog-softlayer (1.1.4)
302
- fog-core
303
- fog-json
304
- fog-xenserver (1.0.0)
305
- fog-core
306
- fog-xml
307
- xmlrpc
308
- fog-xml (0.1.3)
309
- fog-core
310
- nokogiri (>= 1.5.11, < 2.0.0)
311
- foodcritic (12.3.0)
312
- cucumber-core (>= 1.3)
313
- erubis
314
- ffi-yajl (~> 2.0)
315
- nokogiri (>= 1.5, < 2.0)
316
- rake
317
- rufus-lru (~> 1.0)
318
- treetop (~> 1.4)
319
- formatador (0.2.5)
320
- fuzzyurl (0.9.0)
321
- gcewinpass (1.1.0)
322
- google-api-client (~> 0.13)
323
- gherkin (5.1.0)
324
- git (1.5.0)
325
- google-api-client (0.24.3)
326
- addressable (~> 2.5, >= 2.5.1)
327
- googleauth (>= 0.5, < 0.7.0)
328
- httpclient (>= 2.8.1, < 3.0)
329
- mime-types (~> 3.0)
330
- representable (~> 3.0)
331
- retriable (>= 2.0, < 4.0)
332
- signet (~> 0.10)
333
- googleauth (0.6.7)
334
- faraday (~> 0.12)
335
- jwt (>= 1.4, < 3.0)
336
- memoist (~> 0.16)
337
- multi_json (~> 1.11)
338
- os (>= 0.9, < 2.0)
339
- signet (~> 0.7)
340
- gssapi (1.2.0)
341
- ffi (>= 1.0.1)
342
- guard (2.14.2)
343
- formatador (>= 0.2.4)
344
- listen (>= 2.7, < 4.0)
345
- lumberjack (>= 1.0.12, < 2.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.6.0)
354
- highline (1.7.10)
355
- hitimes (1.3.0)
356
- hitimes (1.3.0-x64-mingw32)
357
- hitimes (1.3.0-x86-mingw32)
358
- htmlentities (4.3.4)
359
- httpclient (2.8.3)
360
- i18n (1.1.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.51.25)
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
- rspec (~> 3)
377
- rspec-its (~> 1.2)
378
- rubyzip (~> 1.1)
379
- semverse
380
- sslshake (~> 1.2)
381
- thor (~> 0.19)
382
- tomlrb (~> 1.2)
383
- train (~> 0.32)
384
- ipaddress (0.8.3)
385
- iso8601 (0.12.1)
386
- jmespath (1.4.0)
387
- json (2.1.0)
388
- jwt (2.1.0)
389
- kartograph (0.2.7)
390
- kitchen-digitalocean (0.10.1)
391
- droplet_kit (~> 2.3)
392
- test-kitchen (~> 1.17)
393
- kitchen-dokken (2.6.7)
394
- docker-api (~> 1.33)
395
- lockfile (~> 2.1)
396
- test-kitchen (~> 1.15)
397
- kitchen-ec2 (2.3.1)
398
- aws-sdk (~> 2)
399
- excon
400
- multi_json
401
- retryable (~> 2.0)
402
- test-kitchen (~> 1.4, >= 1.4.1)
403
- kitchen-google (2.0.0)
404
- gcewinpass (~> 1.1)
405
- google-api-client (~> 0.19)
406
- test-kitchen
407
- kitchen-hyperv (0.5.2)
408
- test-kitchen (~> 1.4)
409
- kitchen-inspec (0.25.0)
410
- hashie (~> 3.4)
411
- inspec (>= 0.34.0, < 4.0.0)
412
- test-kitchen (~> 1.6)
413
- kitchen-vagrant (1.3.6)
414
- test-kitchen (~> 1.4)
415
- knife-cloud (1.2.1)
416
- chef (>= 0.10.10)
417
- knife-windows (>= 0.5.14)
418
- mixlib-shellout
419
- knife-ec2 (0.19.10)
420
- fog-aws (>= 1, < 4)
421
- knife-windows (~> 1.0)
422
- knife-google (3.3.3)
423
- gcewinpass (~> 1.1)
424
- google-api-client (>= 0.19.8, < 0.25)
425
- knife-cloud (~> 1.2.0)
426
- knife-opc (0.4.0)
427
- knife-push (1.0.3)
428
- chef (>= 12.7.2)
429
- knife-spork (1.7.2)
430
- app_conf (>= 0.4.0)
431
- chef (>= 11.0.0)
432
- diffy (>= 3.0.1)
433
- git (>= 1.2.5)
434
- knife-windows (1.9.6)
435
- winrm (~> 2.1)
436
- winrm-elevated (~> 1.0)
437
- libyajl2 (1.2.0)
438
- listen (3.1.5)
439
- rb-fsevent (~> 0.9, >= 0.9.4)
440
- rb-inotify (~> 0.9, >= 0.9.7)
441
- ruby_dep (~> 1.2)
442
- little-plugger (1.1.4)
443
- lockfile (2.1.3)
444
- logging (2.2.2)
445
- little-plugger (~> 1.1)
446
- multi_json (~> 1.10)
447
- logify (0.2.0)
448
- lumberjack (1.0.13)
449
- memoist (0.16.0)
450
- method_source (0.9.1)
451
- mime-types (3.2.2)
452
- mime-types-data (~> 3.2015)
453
- mime-types-data (3.2018.0812)
454
- mini_portile2 (2.3.0)
455
- minitar (0.7)
456
- minitest (5.11.3)
457
- mixlib-archive (0.4.18)
458
- mixlib-log
459
- mixlib-archive (0.4.18-universal-mingw32)
460
- mixlib-log
461
- mixlib-authentication (1.4.2)
462
- mixlib-cli (1.7.0)
463
- mixlib-config (2.2.13)
464
- tomlrb
465
- mixlib-install (3.11.5)
466
- mixlib-shellout
467
- mixlib-versioning
468
- thor
469
- mixlib-log (1.7.1)
470
- mixlib-shellout (2.4.0)
471
- mixlib-shellout (2.4.0-universal-mingw32)
472
- win32-process (~> 0.8.2)
473
- wmi-lite (~> 1.0)
474
- mixlib-versioning (1.2.2)
475
- molinillo (0.6.6)
476
- multi_json (1.13.1)
477
- multi_test (0.1.2)
478
- multipart-post (2.0.0)
479
- nenv (0.3.0)
480
- net-scp (1.2.1)
481
- net-ssh (>= 2.6.5)
482
- net-sftp (2.1.2)
483
- net-ssh (>= 2.6.5)
484
- net-ssh (4.1.0)
485
- net-ssh-gateway (1.3.0)
486
- net-ssh (>= 2.6.5)
487
- net-ssh-multi (1.2.1)
488
- net-ssh (>= 2.6.5)
489
- net-ssh-gateway (>= 1.2.0)
490
- net-telnet (0.1.1)
491
- nio4r (2.3.1)
492
- nokogiri (1.8.5)
493
- mini_portile2 (~> 2.3.0)
494
- nokogiri (1.8.5-x64-mingw32)
495
- mini_portile2 (~> 2.3.0)
496
- nokogiri (1.8.5-x86-mingw32)
497
- mini_portile2 (~> 2.3.0)
498
- nori (2.6.0)
499
- notiffany (0.1.1)
500
- nenv (~> 0.1)
501
- shellany (~> 0.0)
502
- octokit (4.13.0)
503
- sawyer (~> 0.8.0, >= 0.5.3)
504
- ohai (13.12.4)
505
- chef-config (>= 12.5.0.alpha.1, < 14)
506
- ffi (~> 1.9)
507
- ffi-yajl (~> 2.2)
508
- ipaddress
509
- mixlib-cli
510
- mixlib-config (~> 2.0)
511
- mixlib-log (>= 1.7.1, < 2.0)
512
- mixlib-shellout (~> 2.0)
513
- plist (~> 3.1)
514
- systemu (~> 2.6.4)
515
- wmi-lite (~> 1.0)
516
- opscode-pushy-client (2.4.11)
517
- chef (>= 12.19, < 15.0)
518
- ffi-rzmq
519
- ohai (>= 8.23, < 15.0)
520
- uuidtools
521
- os (1.0.0)
522
- paint (1.0.1)
523
- parallel (1.12.1)
524
- parser (2.5.3.0)
525
- ast (~> 2.4.0)
526
- parslet (1.8.2)
527
- plist (3.4.0)
528
- polyglot (0.3.5)
529
- powerpack (0.1.2)
530
- proxifier (1.0.3)
531
- pry (0.11.3)
532
- coderay (~> 1.1.0)
533
- method_source (~> 0.9.0)
534
- pry-byebug (3.6.0)
535
- byebug (~> 10.0)
536
- pry (~> 0.10)
537
- pry-remote (0.1.8)
538
- pry (~> 0.9)
539
- slop (~> 3.0)
540
- pry-stack_explorer (0.4.9.2)
541
- binding_of_caller (>= 0.7)
542
- pry (>= 0.9.11)
543
- public_suffix (3.0.3)
544
- rack (2.0.5)
545
- rainbow (2.2.2)
546
- rake
547
- rake (12.3.1)
548
- rb-fsevent (0.10.3)
549
- rb-inotify (0.9.10)
550
- ffi (>= 0.5.0, < 2)
551
- rb-readline (0.5.5)
552
- rdoc (6.0.4)
553
- rdp-ruby-wmi (0.3.1)
554
- representable (3.0.4)
555
- declarative (< 0.1.0)
556
- declarative-option (< 0.2.0)
557
- uber (< 0.2.0)
558
- resource_kit (0.1.7)
559
- addressable (>= 2.3.6, < 3.0.0)
560
- retriable (3.1.2)
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.1)
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.1)
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.17.0)
607
- ruby-progressbar (1.10.0)
608
- ruby-shadow (2.5.0)
609
- ruby_dep (1.5.0)
610
- rubyntlm (0.6.2)
611
- rubyzip (1.2.2)
612
- rufus-lru (1.1.0)
613
- sawyer (0.8.1)
614
- addressable (>= 2.3.5, < 2.6)
615
- faraday (~> 0.8, < 1.0)
616
- semverse (2.0.0)
617
- serverspec (2.41.3)
618
- multi_json
619
- rspec (~> 3.0)
620
- rspec-its
621
- specinfra (~> 2.72)
622
- sfl (2.3)
623
- shellany (0.0.1)
624
- signet (0.11.0)
625
- addressable (~> 2.3)
626
- faraday (~> 0.9)
627
- jwt (>= 1.5, < 3.0)
628
- multi_json (~> 1.10)
629
- slop (3.6.0)
630
- solve (4.0.0)
631
- molinillo (~> 0.6)
632
- semverse (>= 1.1, < 3.0)
633
- specinfra (2.76.3)
634
- net-scp
635
- net-ssh (>= 2.7)
636
- net-telnet (= 0.1.1)
637
- sfl
638
- sslshake (1.2.0)
639
- stove (6.0.0)
640
- chef-api (~> 0.5)
641
- logify (~> 0.2)
642
- syslog-logger (1.6.8)
643
- systemu (2.6.5)
644
- test-kitchen (1.22.1)
645
- mixlib-install (~> 3.6)
646
- mixlib-shellout (>= 1.2, < 3.0)
647
- net-scp (~> 1.1)
648
- net-ssh (>= 2.9, < 5.0)
649
- net-ssh-gateway (~> 1.2)
650
- thor (~> 0.19)
651
- winrm (~> 2.0)
652
- winrm-elevated (~> 1.0)
653
- winrm-fs (~> 1.1)
654
- thor (0.19.1)
655
- thread_safe (0.3.6)
656
- timers (4.0.4)
657
- hitimes
658
- tomlrb (1.2.7)
659
- train (0.32.0)
660
- docker-api (~> 1.26)
661
- json (>= 1.8, < 3.0)
662
- mixlib-shellout (~> 2.0)
663
- net-scp (~> 1.2)
664
- net-ssh (>= 2.9, < 5.0)
665
- winrm (~> 2.0)
666
- winrm-fs (~> 1.0)
667
- treetop (1.6.10)
668
- polyglot (~> 0.3)
669
- tzinfo (1.2.5)
670
- thread_safe (~> 0.1)
671
- uber (0.1.0)
672
- ubuntu_ami (0.4.1)
673
- unicode-display_width (1.4.0)
674
- uuidtools (2.1.5)
675
- varia_model (0.6.0)
676
- buff-extensions (~> 2.0)
677
- hashie (>= 2.0.2, < 4.0.0)
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 (1.0.1)
699
- ffi
700
- ffi-win32-extensions
701
- windows-api (0.4.4)
702
- win32-api (>= 1.4.5)
703
- windows-pr (1.2.6)
704
- win32-api (>= 1.4.5)
705
- windows-api (>= 0.4.0)
706
- winrm (2.3.0)
707
- builder (>= 2.1.2)
708
- erubis (~> 2.7)
709
- gssapi (~> 1.2)
710
- gyoku (~> 1.0)
711
- httpclient (~> 2.2, >= 2.2.0.2)
712
- logging (>= 1.6.1, < 3.0)
713
- nori (~> 2.0)
714
- rubyntlm (~> 0.6.0, >= 0.6.1)
715
- winrm-elevated (1.1.0)
716
- winrm (~> 2.0)
717
- winrm-fs (~> 1.0)
718
- winrm-fs (1.3.1)
719
- erubis (~> 2.7)
720
- logging (>= 1.6.1, < 3.0)
721
- rubyzip (~> 1.1)
722
- winrm (~> 2.0)
723
- wmi-lite (1.0.0)
724
- xmlrpc (0.3.0)
725
- yard (0.9.16)
726
-
727
- PLATFORMS
728
- ruby
729
- x64-mingw32
730
- x86-mingw32
731
-
732
- DEPENDENCIES
733
- appbundler
734
- artifactory
735
- berkshelf (~> 6.3.1)
736
- bundler
737
- chef (= 13.12.3)
738
- chef-dk!
739
- chef-provisioning (>= 2.4.0)
740
- chef-provisioning-aws (>= 3.0.0)
741
- chef-provisioning-fog (>= 0.26.0)
742
- chef-sugar
743
- chef-vault (>= 3.3.0)
744
- cheffish (>= 13.1.0)
745
- chefspec (>= 7.1.0, < 7.3.0)
746
- chefstyle
747
- cookstyle (~> 2.0)
748
- cucumber
749
- dco
750
- dep-selector-libgecode
751
- dep_selector
752
- fauxhai (~> 5.4)
753
- ffi
754
- ffi-rzmq-core
755
- foodcritic (~> 12.1)
756
- guard
757
- inspec (~> 1.42)
758
- kitchen-digitalocean (>= 0.9.8)
759
- kitchen-dokken (>= 2.5.0)
760
- kitchen-ec2 (>= 1.3.2)
761
- kitchen-google (>= 1.4.0)
762
- kitchen-hyperv (>= 0.5.1)
763
- kitchen-inspec (>= 0.19.0)
764
- kitchen-vagrant (>= 1.3.0)
765
- knife-ec2 (>= 0.15.0)
766
- knife-google (>= 3.2.0)
767
- knife-opc (>= 0.3.2)
768
- knife-push
769
- knife-spork
770
- knife-windows (>= 1.9.0)
771
- listen
772
- mixlib-install
773
- mixlib-versioning
774
- net-ssh (= 4.1.0)
775
- nokogiri
776
- ohai (~> 13.1)
777
- opscode-pushy-client (>= 2.3.0)
778
- pry
779
- pry-byebug
780
- pry-remote
781
- pry-stack_explorer
782
- rake
783
- rb-readline
784
- rdoc
785
- rdp-ruby-wmi
786
- rspec-core (~> 3.0)
787
- rspec-expectations (~> 3.0)
788
- rspec-mocks (~> 3.0)
789
- rubocop
790
- ruby-prof
791
- ruby-shadow
792
- stove
793
- test-kitchen (~> 1.22.0)
794
- win32-api
795
- win32-dir
796
- win32-event
797
- win32-mutex
798
- win32-process (~> 0.8.2)
799
- win32-service
800
- windows-api
801
- windows-pr
802
- winrm-elevated
803
- winrm-fs
804
- yard
805
-
806
- BUNDLED WITH
807
- 1.16.6
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