chef-dk 0.13.21 → 0.14.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +186 -186
  3. data/Gemfile +37 -14
  4. data/Gemfile.lock +178 -72
  5. data/LICENSE +201 -201
  6. data/README.md +11 -148
  7. data/acceptance/.shared/kitchen_acceptance/.kitchen.digitalocean.yml +27 -27
  8. data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +288 -288
  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 +2 -1
  13. data/acceptance/Gemfile.lock +39 -42
  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/lib/chef-dk.rb +19 -19
  24. data/lib/chef-dk/authenticated_http.rb +40 -40
  25. data/lib/chef-dk/chef_runner.rb +107 -107
  26. data/lib/chef-dk/cli.rb +200 -200
  27. data/lib/chef-dk/command/base.rb +79 -79
  28. data/lib/chef-dk/command/clean_policy_cookbooks.rb +116 -116
  29. data/lib/chef-dk/command/clean_policy_revisions.rb +113 -113
  30. data/lib/chef-dk/command/delete_policy.rb +122 -122
  31. data/lib/chef-dk/command/delete_policy_group.rb +122 -122
  32. data/lib/chef-dk/command/diff.rb +316 -316
  33. data/lib/chef-dk/command/env.rb +90 -90
  34. data/lib/chef-dk/command/exec.rb +45 -45
  35. data/lib/chef-dk/command/export.rb +157 -157
  36. data/lib/chef-dk/command/gem.rb +47 -47
  37. data/lib/chef-dk/command/generate.rb +120 -120
  38. data/lib/chef-dk/command/generator_commands.rb +83 -80
  39. data/lib/chef-dk/command/generator_commands/app.rb +107 -107
  40. data/lib/chef-dk/command/generator_commands/attribute.rb +37 -37
  41. data/lib/chef-dk/command/generator_commands/base.rb +148 -148
  42. data/lib/chef-dk/command/generator_commands/cookbook.rb +153 -153
  43. data/lib/chef-dk/command/generator_commands/cookbook_code_file.rb +100 -100
  44. data/lib/chef-dk/command/generator_commands/cookbook_file.rb +45 -45
  45. data/lib/chef-dk/command/generator_commands/generator_generator.rb +177 -177
  46. data/lib/chef-dk/command/generator_commands/lwrp.rb +36 -36
  47. data/lib/chef-dk/command/generator_commands/policyfile.rb +127 -127
  48. data/lib/chef-dk/command/generator_commands/recipe.rb +36 -36
  49. data/lib/chef-dk/command/generator_commands/repo.rb +125 -125
  50. data/lib/chef-dk/command/generator_commands/template.rb +46 -46
  51. data/lib/chef-dk/command/install.rb +121 -121
  52. data/lib/chef-dk/command/provision.rb +438 -438
  53. data/lib/chef-dk/command/push.rb +118 -118
  54. data/lib/chef-dk/command/push_archive.rb +126 -126
  55. data/lib/chef-dk/command/shell_init.rb +180 -180
  56. data/lib/chef-dk/command/show_policy.rb +165 -165
  57. data/lib/chef-dk/command/undelete.rb +155 -155
  58. data/lib/chef-dk/command/update.rb +148 -148
  59. data/lib/chef-dk/command/verify.rb +106 -29
  60. data/lib/chef-dk/completions/bash.sh.erb +5 -5
  61. data/lib/chef-dk/completions/chef.fish.erb +10 -10
  62. data/lib/chef-dk/completions/zsh.zsh.erb +21 -21
  63. data/lib/chef-dk/component_test.rb +30 -1
  64. data/lib/chef-dk/configurable.rb +69 -69
  65. data/lib/chef-dk/cookbook_metadata.rb +45 -45
  66. data/lib/chef-dk/cookbook_omnifetch.rb +32 -32
  67. data/lib/chef-dk/cookbook_profiler/git.rb +151 -151
  68. data/lib/chef-dk/cookbook_profiler/identifiers.rb +72 -72
  69. data/lib/chef-dk/cookbook_profiler/null_scm.rb +32 -32
  70. data/lib/chef-dk/exceptions.rb +129 -129
  71. data/lib/chef-dk/generator.rb +163 -163
  72. data/lib/chef-dk/helpers.rb +159 -159
  73. data/lib/chef-dk/pager.rb +106 -106
  74. data/lib/chef-dk/policyfile/chef_repo_cookbook_source.rb +138 -138
  75. data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +54 -54
  76. data/lib/chef-dk/policyfile/community_cookbook_source.rb +97 -97
  77. data/lib/chef-dk/policyfile/comparison_base.rb +124 -124
  78. data/lib/chef-dk/policyfile/cookbook_location_specification.rb +154 -154
  79. data/lib/chef-dk/policyfile/cookbook_locks.rb +466 -466
  80. data/lib/chef-dk/policyfile/cookbook_sources.rb +22 -22
  81. data/lib/chef-dk/policyfile/delivery_supermarket_source.rb +90 -90
  82. data/lib/chef-dk/policyfile/differ.rb +266 -266
  83. data/lib/chef-dk/policyfile/dsl.rb +261 -261
  84. data/lib/chef-dk/policyfile/lister.rb +232 -232
  85. data/lib/chef-dk/policyfile/null_cookbook_source.rb +45 -45
  86. data/lib/chef-dk/policyfile/read_cookbook_for_compat_mode_upload.rb +124 -124
  87. data/lib/chef-dk/policyfile/reports/install.rb +70 -70
  88. data/lib/chef-dk/policyfile/reports/table_printer.rb +58 -58
  89. data/lib/chef-dk/policyfile/reports/upload.rb +70 -70
  90. data/lib/chef-dk/policyfile/solution_dependencies.rb +298 -298
  91. data/lib/chef-dk/policyfile/storage_config.rb +100 -100
  92. data/lib/chef-dk/policyfile/undo_record.rb +142 -142
  93. data/lib/chef-dk/policyfile/undo_stack.rb +130 -130
  94. data/lib/chef-dk/policyfile/uploader.rb +213 -213
  95. data/lib/chef-dk/policyfile_compiler.rb +419 -419
  96. data/lib/chef-dk/policyfile_lock.rb +552 -552
  97. data/lib/chef-dk/policyfile_services/clean_policies.rb +95 -95
  98. data/lib/chef-dk/policyfile_services/clean_policy_cookbooks.rb +125 -125
  99. data/lib/chef-dk/policyfile_services/export_repo.rb +421 -421
  100. data/lib/chef-dk/policyfile_services/install.rb +126 -126
  101. data/lib/chef-dk/policyfile_services/push.rb +114 -114
  102. data/lib/chef-dk/policyfile_services/push_archive.rb +204 -204
  103. data/lib/chef-dk/policyfile_services/rm_policy.rb +142 -142
  104. data/lib/chef-dk/policyfile_services/rm_policy_group.rb +86 -86
  105. data/lib/chef-dk/policyfile_services/show_policy.rb +237 -237
  106. data/lib/chef-dk/policyfile_services/undelete.rb +108 -108
  107. data/lib/chef-dk/policyfile_services/update_attributes.rb +104 -104
  108. data/lib/chef-dk/service_exception_inspectors.rb +25 -25
  109. data/lib/chef-dk/service_exception_inspectors/base.rb +40 -40
  110. data/lib/chef-dk/service_exception_inspectors/http.rb +121 -121
  111. data/lib/chef-dk/service_exceptions.rb +143 -143
  112. data/lib/chef-dk/shell_out.rb +36 -36
  113. data/lib/chef-dk/skeletons/code_generator/files/default/Berksfile +3 -3
  114. data/lib/chef-dk/skeletons/code_generator/files/default/chefignore +102 -102
  115. data/lib/chef-dk/skeletons/code_generator/files/default/cookbook_readmes/README-policy.md +9 -9
  116. data/lib/chef-dk/skeletons/code_generator/files/default/cookbook_readmes/README.md +54 -54
  117. data/lib/chef-dk/skeletons/code_generator/files/default/gitignore +16 -16
  118. data/lib/chef-dk/skeletons/code_generator/files/default/repo/README.md +28 -28
  119. data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/README.md +27 -27
  120. data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/attributes/default.rb +7 -7
  121. data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/metadata.rb +3 -3
  122. data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +8 -8
  123. data/lib/chef-dk/skeletons/code_generator/files/default/repo/data_bags/README.md +58 -58
  124. data/lib/chef-dk/skeletons/code_generator/files/default/repo/data_bags/example/example_item.json +3 -3
  125. data/lib/chef-dk/skeletons/code_generator/files/default/repo/dot-chef-repo.txt +6 -6
  126. data/lib/chef-dk/skeletons/code_generator/files/default/repo/environments/README.md +9 -9
  127. data/lib/chef-dk/skeletons/code_generator/files/default/repo/environments/example.json +12 -12
  128. data/lib/chef-dk/skeletons/code_generator/files/default/repo/policies/README.md +24 -24
  129. data/lib/chef-dk/skeletons/code_generator/files/default/repo/roles/README.md +9 -9
  130. data/lib/chef-dk/skeletons/code_generator/files/default/repo/roles/example.json +12 -12
  131. data/lib/chef-dk/skeletons/code_generator/files/default/serverspec_spec_helper.rb +8 -8
  132. data/lib/chef-dk/skeletons/code_generator/files/default/spec_helper.rb +2 -2
  133. data/lib/chef-dk/skeletons/code_generator/files/default/spec_helper_policyfile.rb +2 -2
  134. data/lib/chef-dk/skeletons/code_generator/metadata.rb +8 -8
  135. data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +97 -97
  136. data/lib/chef-dk/skeletons/code_generator/recipes/attribute.rb +12 -12
  137. data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +117 -117
  138. data/lib/chef-dk/skeletons/code_generator/recipes/cookbook_file.rb +24 -24
  139. data/lib/chef-dk/skeletons/code_generator/recipes/lwrp.rb +23 -23
  140. data/lib/chef-dk/skeletons/code_generator/recipes/policyfile.rb +8 -8
  141. data/lib/chef-dk/skeletons/code_generator/recipes/recipe.rb +27 -27
  142. data/lib/chef-dk/skeletons/code_generator/recipes/repo.rb +67 -67
  143. data/lib/chef-dk/skeletons/code_generator/recipes/template.rb +32 -32
  144. data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.all_rights.erb +3 -3
  145. data/lib/chef-dk/skeletons/code_generator/templates/default/{LICENSE.apache2.erb → LICENSE.apachev2.erb} +201 -201
  146. data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.gplv2.erb +339 -339
  147. data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.gplv3.erb +674 -674
  148. data/lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.mit.erb +21 -21
  149. data/lib/chef-dk/skeletons/code_generator/templates/default/Policyfile.rb.erb +25 -25
  150. data/lib/chef-dk/skeletons/code_generator/templates/default/README.md.erb +4 -4
  151. data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen.yml.erb +21 -21
  152. data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen_policyfile.yml.erb +32 -32
  153. data/lib/chef-dk/skeletons/code_generator/templates/default/metadata.rb.erb +7 -7
  154. data/lib/chef-dk/skeletons/code_generator/templates/default/recipe.rb.erb +5 -5
  155. data/lib/chef-dk/skeletons/code_generator/templates/default/recipe_spec.rb.erb +20 -20
  156. data/lib/chef-dk/skeletons/code_generator/templates/default/repo/gitignore.erb +11 -11
  157. data/lib/chef-dk/skeletons/code_generator/templates/default/serverspec_default_spec.rb.erb +9 -9
  158. data/lib/chef-dk/ui.rb +58 -58
  159. data/lib/chef-dk/version.rb +1 -1
  160. data/lib/kitchen/provisioner/policyfile_zero.rb +195 -195
  161. data/omnibus_overrides.rb +19 -11
  162. data/spec/shared/a_file_generator.rb +125 -125
  163. data/spec/shared/a_generated_file.rb +12 -12
  164. data/spec/shared/command_with_ui_object.rb +11 -11
  165. data/spec/shared/custom_generator_cookbook.rb +130 -130
  166. data/spec/shared/fixture_cookbook_checksums.rb +47 -47
  167. data/spec/shared/setup_git_cookbooks.rb +53 -53
  168. data/spec/spec_helper.rb +51 -51
  169. data/spec/test_helpers.rb +84 -84
  170. data/spec/unit/chef_runner_spec.rb +139 -139
  171. data/spec/unit/cli_spec.rb +357 -357
  172. data/spec/unit/command/base_spec.rb +173 -169
  173. data/spec/unit/command/clean_policy_cookbooks_spec.rb +181 -181
  174. data/spec/unit/command/clean_policy_revisions_spec.rb +181 -181
  175. data/spec/unit/command/delete_policy_group_spec.rb +207 -207
  176. data/spec/unit/command/delete_policy_spec.rb +207 -207
  177. data/spec/unit/command/diff_spec.rb +312 -312
  178. data/spec/unit/command/env_spec.rb +52 -52
  179. data/spec/unit/command/exec_spec.rb +179 -179
  180. data/spec/unit/command/export_spec.rb +200 -200
  181. data/spec/unit/command/generate_spec.rb +142 -142
  182. data/spec/unit/command/generator_commands/app_spec.rb +169 -169
  183. data/spec/unit/command/generator_commands/attribute_spec.rb +32 -32
  184. data/spec/unit/command/generator_commands/base_spec.rb +136 -136
  185. data/spec/unit/command/generator_commands/cookbook_file_spec.rb +32 -32
  186. data/spec/unit/command/generator_commands/cookbook_spec.rb +450 -450
  187. data/spec/unit/command/generator_commands/generator_generator_spec.rb +229 -229
  188. data/spec/unit/command/generator_commands/lwrp_spec.rb +32 -32
  189. data/spec/unit/command/generator_commands/policyfile_spec.rb +225 -225
  190. data/spec/unit/command/generator_commands/recipe_spec.rb +34 -34
  191. data/spec/unit/command/generator_commands/repo_spec.rb +374 -367
  192. data/spec/unit/command/generator_commands/template_spec.rb +32 -32
  193. data/spec/unit/command/install_spec.rb +179 -179
  194. data/spec/unit/command/provision_spec.rb +592 -592
  195. data/spec/unit/command/push_archive_spec.rb +153 -153
  196. data/spec/unit/command/push_spec.rb +199 -199
  197. data/spec/unit/command/shell_init_spec.rb +329 -329
  198. data/spec/unit/command/show_policy_spec.rb +235 -235
  199. data/spec/unit/command/undelete_spec.rb +246 -246
  200. data/spec/unit/command/update_spec.rb +275 -275
  201. data/spec/unit/command/verify_spec.rb +15 -6
  202. data/spec/unit/commands_map_spec.rb +57 -57
  203. data/spec/unit/component_test_spec.rb +128 -126
  204. data/spec/unit/configurable_spec.rb +41 -41
  205. data/spec/unit/cookbook_metadata_spec.rb +98 -98
  206. data/spec/unit/cookbook_profiler/git_spec.rb +176 -176
  207. data/spec/unit/cookbook_profiler/identifiers_spec.rb +83 -83
  208. data/spec/unit/fixtures/chef-runner-cookbooks/test_cookbook/recipes/recipe_one.rb +9 -9
  209. data/spec/unit/fixtures/chef-runner-cookbooks/test_cookbook/recipes/recipe_two.rb +9 -9
  210. data/spec/unit/fixtures/command/cli_test_command.rb +26 -26
  211. data/spec/unit/fixtures/command/explicit_path_example.rb +7 -7
  212. data/spec/unit/fixtures/configurable/test_config_loader.rb +5 -5
  213. data/spec/unit/fixtures/configurable/test_configurable.rb +10 -10
  214. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/.kitchen.yml +16 -16
  215. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/Berksfile +3 -3
  216. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/README.md +4 -4
  217. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/chefignore +96 -96
  218. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb +8 -8
  219. data/spec/unit/fixtures/cookbook_cache/baz-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb +8 -8
  220. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/.kitchen.yml +16 -16
  221. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/Berksfile +3 -3
  222. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/README.md +4 -4
  223. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/chefignore +96 -96
  224. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/metadata.rb +8 -8
  225. data/spec/unit/fixtures/cookbook_cache/dep_of_bar-1.2.3/recipes/default.rb +8 -8
  226. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/.kitchen.yml +16 -16
  227. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/Berksfile +3 -3
  228. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/README.md +4 -4
  229. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/chefignore +96 -96
  230. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/metadata.rb +8 -8
  231. data/spec/unit/fixtures/cookbook_cache/foo-1.0.0/recipes/default.rb +8 -8
  232. data/spec/unit/fixtures/cookbooks_api/pruned_small_universe.json +1321 -1321
  233. data/spec/unit/fixtures/cookbooks_api/small_universe.json +2987 -2987
  234. data/spec/unit/fixtures/cookbooks_api/universe.json +1 -1
  235. data/spec/unit/fixtures/cookbooks_api/update_fixtures.rb +36 -36
  236. data/spec/unit/fixtures/dev_cookbooks/README.md +16 -16
  237. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/integration_test +2 -2
  238. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/verify_me +5 -5
  239. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/chef/verify_me +3 -3
  240. data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/test-kitchen/verify_me +2 -2
  241. data/spec/unit/fixtures/example_cookbook/.gitignore +17 -17
  242. data/spec/unit/fixtures/example_cookbook/.kitchen.yml +16 -16
  243. data/spec/unit/fixtures/example_cookbook/Berksfile +3 -3
  244. data/spec/unit/fixtures/example_cookbook/README.md +4 -4
  245. data/spec/unit/fixtures/example_cookbook/chefignore +96 -96
  246. data/spec/unit/fixtures/example_cookbook/metadata.rb +8 -8
  247. data/spec/unit/fixtures/example_cookbook/recipes/default.rb +8 -8
  248. data/spec/unit/fixtures/example_cookbook_metadata_json_only/.gitignore +17 -17
  249. data/spec/unit/fixtures/example_cookbook_metadata_json_only/.kitchen.yml +16 -16
  250. data/spec/unit/fixtures/example_cookbook_metadata_json_only/Berksfile +3 -3
  251. data/spec/unit/fixtures/example_cookbook_metadata_json_only/README.md +4 -4
  252. data/spec/unit/fixtures/example_cookbook_metadata_json_only/chefignore +96 -96
  253. data/spec/unit/fixtures/example_cookbook_metadata_json_only/metadata.json +5 -5
  254. data/spec/unit/fixtures/example_cookbook_metadata_json_only/recipes/default.rb +8 -8
  255. data/spec/unit/fixtures/example_cookbook_no_metadata/.gitignore +17 -17
  256. data/spec/unit/fixtures/example_cookbook_no_metadata/.kitchen.yml +16 -16
  257. data/spec/unit/fixtures/example_cookbook_no_metadata/Berksfile +3 -3
  258. data/spec/unit/fixtures/example_cookbook_no_metadata/README.md +4 -4
  259. data/spec/unit/fixtures/example_cookbook_no_metadata/chefignore +96 -96
  260. data/spec/unit/fixtures/example_cookbook_no_metadata/recipes/default.rb +8 -8
  261. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/README.md +4 -4
  262. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/chefignore +96 -96
  263. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/metadata.rb +8 -8
  264. data/spec/unit/fixtures/local_path_cookbooks/another-local-cookbook/recipes/default.rb +8 -8
  265. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/Berksfile +3 -3
  266. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/README.md +4 -4
  267. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/chefignore +96 -96
  268. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/metadata.rb +9 -9
  269. data/spec/unit/fixtures/local_path_cookbooks/cookbook-with-a-dep/recipes/default.rb +8 -8
  270. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/.kitchen.yml +16 -16
  271. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/Berksfile +3 -3
  272. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/README.md +4 -4
  273. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/chefignore +96 -96
  274. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/metadata.rb +8 -8
  275. data/spec/unit/fixtures/local_path_cookbooks/local-cookbook/recipes/default.rb +8 -8
  276. data/spec/unit/fixtures/local_path_cookbooks/metadata-missing/README.md +2 -2
  277. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/.kitchen.yml +16 -16
  278. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/README.md +4 -4
  279. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/metadata.rb +8 -8
  280. data/spec/unit/fixtures/local_path_cookbooks/noignore-f59ee7a5bca6a4e606b67f7f856b768d847c39bb/recipes/default.rb +8 -8
  281. data/spec/unit/generator_spec.rb +119 -120
  282. data/spec/unit/helpers_spec.rb +92 -92
  283. data/spec/unit/pager_spec.rb +119 -119
  284. data/spec/unit/policyfile/chef_repo_cookbook_source_spec.rb +93 -93
  285. data/spec/unit/policyfile/chef_server_cookbook_source_spec.rb +34 -34
  286. data/spec/unit/policyfile/community_cookbook_source_spec.rb +84 -84
  287. data/spec/unit/policyfile/comparison_base_spec.rb +343 -343
  288. data/spec/unit/policyfile/cookbook_location_specification_spec.rb +277 -277
  289. data/spec/unit/policyfile/cookbook_locks_spec.rb +529 -529
  290. data/spec/unit/policyfile/delivery_supermarket_source_spec.rb +130 -130
  291. data/spec/unit/policyfile/differ_spec.rb +687 -687
  292. data/spec/unit/policyfile/lister_spec.rb +272 -272
  293. data/spec/unit/policyfile/null_cookbook_source_spec.rb +35 -35
  294. data/spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb +92 -92
  295. data/spec/unit/policyfile/reports/install_spec.rb +115 -115
  296. data/spec/unit/policyfile/reports/upload_spec.rb +96 -96
  297. data/spec/unit/policyfile/solution_dependencies_spec.rb +145 -145
  298. data/spec/unit/policyfile/storage_config_spec.rb +172 -172
  299. data/spec/unit/policyfile/undo_record_spec.rb +260 -260
  300. data/spec/unit/policyfile/undo_stack_spec.rb +266 -266
  301. data/spec/unit/policyfile/uploader_spec.rb +410 -410
  302. data/spec/unit/policyfile_demands_spec.rb +1203 -1203
  303. data/spec/unit/policyfile_evaluation_spec.rb +642 -642
  304. data/spec/unit/policyfile_lock_build_spec.rb +1056 -1056
  305. data/spec/unit/policyfile_lock_install_spec.rb +138 -138
  306. data/spec/unit/policyfile_lock_serialization_spec.rb +425 -425
  307. data/spec/unit/policyfile_lock_validation_spec.rb +611 -611
  308. data/spec/unit/policyfile_services/clean_policies_spec.rb +236 -236
  309. data/spec/unit/policyfile_services/clean_policy_cookbooks_spec.rb +275 -275
  310. data/spec/unit/policyfile_services/export_repo_spec.rb +481 -481
  311. data/spec/unit/policyfile_services/install_spec.rb +211 -211
  312. data/spec/unit/policyfile_services/push_archive_spec.rb +378 -378
  313. data/spec/unit/policyfile_services/push_spec.rb +233 -233
  314. data/spec/unit/policyfile_services/rm_policy_group_spec.rb +241 -241
  315. data/spec/unit/policyfile_services/rm_policy_spec.rb +266 -266
  316. data/spec/unit/policyfile_services/show_policy_spec.rb +889 -889
  317. data/spec/unit/policyfile_services/undelete_spec.rb +304 -304
  318. data/spec/unit/policyfile_services/update_attributes_spec.rb +217 -217
  319. data/spec/unit/service_exception_inspectors/base_spec.rb +43 -43
  320. data/spec/unit/service_exception_inspectors/http_spec.rb +140 -140
  321. data/spec/unit/shell_out_spec.rb +34 -34
  322. data/spec/unit/tasks/helpers_spec.rb +75 -0
  323. data/tasks/bin/bundle-platform +0 -0
  324. data/tasks/bin/bundle-platform.bat +0 -0
  325. data/tasks/bin/create-override-gemfile +110 -0
  326. data/tasks/bundle.rb +27 -11
  327. data/tasks/bundle_util.rb +6 -5
  328. data/tasks/dependencies.rb +97 -122
  329. data/tasks/gemfile_util.rb +357 -66
  330. data/tasks/helpers.rb +47 -0
  331. data/tasks/version.rb +1 -5
  332. data/version_policy.rb +66 -41
  333. data/warning.txt +9 -9
  334. metadata +7 -5
  335. data/Gemfile.windows +0 -34
  336. data/Gemfile.windows.lock +0 -936
data/tasks/helpers.rb ADDED
@@ -0,0 +1,47 @@
1
+ #
2
+ # Copyright:: Copyright (c) 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
+ # Putting this method in a module so it is easier to test
19
+ module RakeDependenciesTaskHelpers
20
+ def update_gemfile_from_stable(gemfile, product_name, gemfile_name, version_prefix="")
21
+ version = get_latest_version_for(product_name)
22
+ version = "#{version_prefix}#{version}"
23
+ found = gemfile.sub!(/^(\s*gem "#{gemfile_name}", github: "chef\/#{gemfile_name}", branch: ")([^"]*)(")$/m) do
24
+ if $2 != "#{version}"
25
+ puts "Setting #{product_name} version in Gemfile to #{version} (was #{$2})"
26
+ else
27
+ puts "#{product_name} version in Gemfile already at latest stable (#{$2})"
28
+ end
29
+ "#{$1}#{version}#{$3}"
30
+ end
31
+ unless found
32
+ raise "Gemfile does not have a line of the form 'gem \"#{gemfile_name}\", github: \"chef/#{gemfile_name}\", branch: \"<version>\"', so we didn't update it to latest stable (#{version})."
33
+ end
34
+ gemfile
35
+ end
36
+
37
+ def get_latest_version_for(product_name, channel_name = :stable)
38
+ require 'mixlib/install'
39
+ puts "Getting latest '#{channel_name}' channel #{product_name} version ..."
40
+ options = {
41
+ channel: channel_name.to_sym,
42
+ product_version: :latest,
43
+ product_name: product_name,
44
+ }
45
+ Mixlib::Install.new(options).artifact_info.first.version
46
+ end
47
+ end
data/tasks/version.rb CHANGED
@@ -17,11 +17,7 @@
17
17
 
18
18
  namespace :version do
19
19
  desc "Bump patch version in lib/chef-dk/version.rb and update Gemfile*.lock conservatively to include the new version. If Gemfile has changed, this will update modified constraints as well."
20
- task :bump => 'version:bump_patch' do
21
- # We need to update our Gemfile.lock(s) to include the new version. But let's
22
- # not upgrade other stuff at the same time ...
23
- Rake.application.invoke_task("dependencies:update[conservative]")
24
- end
20
+ task :bump => %w{version:bump_patch bundle:install}
25
21
 
26
22
  desc "Show the current version."
27
23
  task :show do
data/version_policy.rb CHANGED
@@ -18,27 +18,36 @@
18
18
  # Explicit omnibus overrides.
19
19
  OMNIBUS_OVERRIDES = {
20
20
  # Lower level library pins
21
- libedit: "20130712-3.1",
22
21
  ## according to comment in omnibus-sw, latest versions don't work on solaris
23
22
  # https://github.com/chef/omnibus-software/blob/aefb7e79d29ca746c3f843673ef5e317fa3cba54/config/software/libtool.rb#L23
24
- libtool: "2.4.2",
25
- libxslt: "1.1.28",
26
- makedepend: "1.0.5",
27
- ruby: "2.1.8",
28
- :"util-macros" => "1.19.0",
29
- xproto: "7.0.28",
30
- zlib: "1.2.8",
31
- # libffi: "3.2.1",
32
- # libiconv: "1.14",
33
- # liblzma: "5.2.2",
34
- # libxml2: "2.9.3",
35
- # ncurses: "5.9",
36
- # :"pkg-config-lite" => "0.28-1",
37
- # libyaml: "0.1.6",
23
+ "libffi" => "3.2.1",
24
+ "libiconv" => "1.14",
25
+ "liblzma" => "5.2.2",
26
+ ## according to comment in omnibus-sw, the very latest versions don't work on solaris
27
+ # https://github.com/chef/omnibus-software/blob/aefb7e79d29ca746c3f843673ef5e317fa3cba54/config/software/libtool.rb#L23
28
+ "libtool" => "2.4.2",
29
+ "libxml2" => "2.9.3",
30
+ "libxslt" => "1.1.28",
31
+ "libyaml" => "0.1.6",
32
+ "makedepend" => "1.0.5",
33
+ "ncurses" => "5.9",
34
+ "pkg-config-lite" => "0.28-1",
35
+ "ruby" => "2.1.8",
36
+ # Leave dev-kit pinned to 4.5 on 32-bit, because 4.7 is 20MB larger and we don't want
37
+ # to unnecessarily make the client any fatter. (Since it's different between
38
+ # 32 and 64, we have to do it in the project file still.)
39
+ # "ruby-windows-devkit" => "4.5.2-20111229-1559",
40
+ "ruby-windows-devkit-bash" => "3.1.23-4-msys-1.0.18",
41
+ "util-macros" => "1.19.0",
42
+ "xproto" => "7.0.28",
43
+ "zlib" => "1.2.8",
44
+ # The windows dependency (libzmq4x-windows) only has 1 version so far in
45
+ # software def so we don't need to override that
46
+ "libzmq" => "4.0.5",
38
47
 
39
48
  ## These can float as they are frequently updated in a way that works for us
40
- #override cacerts: "???",
41
- #override openssl: "???",
49
+ #override "cacerts" =>"???",
50
+ #override "openssl" =>"???",
42
51
  }
43
52
 
44
53
  #
@@ -50,7 +59,7 @@ OMNIBUS_OVERRIDES = {
50
59
  #
51
60
  OMNIBUS_RUBYGEMS_AT_LATEST_VERSION = {
52
61
  rubygems: "rubygems-update",
53
- bundler: "bundler"
62
+ bundler: "bundler",
54
63
  }
55
64
 
56
65
  #
@@ -61,26 +70,37 @@ OMNIBUS_RUBYGEMS_AT_LATEST_VERSION = {
61
70
  # add gems to the output of bundle outdated here and we'll parse it to get the
62
71
  # list of outdated gems.
63
72
  #
64
- # We're starting with debt here, but don't want it to get worse.
65
- #
66
- ACCEPTABLE_OUTDATED_GEMS = %w{
67
- celluloid
68
- celluloid-io
69
- docker-api
70
- fog-cloudatcost
71
- fog-google
72
- gherkin
73
- google-api-client
74
- jwt
75
- mime-types
76
- mini_portile2
77
- retriable
78
- rubocop
79
- slop
80
- timers
81
- unicode-display_width
82
- varia_model
83
- }
73
+ ACCEPTABLE_OUTDATED_GEMS = [
74
+ "celluloid",
75
+ "celluloid-io",
76
+ "docker-api",
77
+ "fog-cloudatcost",
78
+ "fog-google",
79
+ "gherkin", # fixed in cucumber-core > 1.4.0
80
+ "google-api-client",
81
+ "jwt", # fixed in oauth2 > 1.1.0
82
+ "listen",
83
+ "mime-types",
84
+ "mini_portile2", # dep removed in nokogiri > 1.6.7.2
85
+ "retriable",
86
+ "rubocop",
87
+ "slop", # deo removed in pry > 0.10.3
88
+ "timers",
89
+ "unicode-display_width",
90
+ "varia_model",
91
+ "httpclient",
92
+ # We have a task called update_stable_channel_gems which scans and pins to the
93
+ # latest released chef/chef-config/opscode-pushy-client but it pulls from the
94
+ # chef repo instead of from rubygems. Bundler currently considers any git
95
+ # source at the same version (or lower) than one available from rubygems as
96
+ # outdated and hence fails the outdated gem test, confusing Julia bot.
97
+
98
+ # Therefore.. turn checks on both of them off. If and when the rake task for
99
+ # update_stable_channel_gems changes, this exclusion can be revisited.
100
+ "chef",
101
+ "chef-config",
102
+ "opscode-pushy-client",
103
+ ]
84
104
 
85
105
  #
86
106
  # Some gems are part of our bundle (must be installed) but not important
@@ -94,6 +114,7 @@ GEMS_ALLOWED_TO_FLOAT = [
94
114
  "rubocop", # different projects disagree in their dev dependencies
95
115
  "unicode-display_width", # dep of rubocop
96
116
  "powerpack", # dep of rubocop
117
+ "cookstyle", # has a runtime dep on rubocop
97
118
  ]
98
119
 
99
120
  #
@@ -102,11 +123,15 @@ GEMS_ALLOWED_TO_FLOAT = [
102
123
  # have extra deps hiding in their Gemfiles.
103
124
  #
104
125
  INSTALL_WITHOUT_GROUPS = %w{
126
+ changelog
127
+ compat_testing
105
128
  development
106
- test
129
+ docgen
107
130
  guard
131
+ integration
108
132
  maintenance
133
+ test
109
134
  tools
110
- integration
111
- changelog
135
+ travis
136
+ style
112
137
  }
data/warning.txt CHANGED
@@ -1,9 +1,9 @@
1
- Thanks for installing chef-dk! Unfortunately, since Chef Development Kit is
2
- supposed to be installed as the omnibus binaries in order to support various
3
- platforms, this is not the official way to install chef-dk.
4
-
5
- Please download the latest version for your operating system from the URL below,
6
- and make sure you have uninstalled your chef-dk gem to avoid conflicts:
7
-
8
- https://downloads.chef.io/chef-dk/
9
-
1
+ Thanks for installing chef-dk! Unfortunately, since Chef Development Kit is
2
+ supposed to be installed as the omnibus binaries in order to support various
3
+ platforms, this is not the official way to install chef-dk.
4
+
5
+ Please download the latest version for your operating system from the URL below,
6
+ and make sure you have uninstalled your chef-dk gem to avoid conflicts:
7
+
8
+ https://downloads.chef.io/chef-dk/
9
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-dk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.21
4
+ version: 0.14.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel DeLeo
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-04-25 00:00:00.000000000 Z
13
+ date: 2016-05-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mixlib-cli
@@ -239,8 +239,6 @@ files:
239
239
  - CONTRIBUTING.md
240
240
  - Gemfile
241
241
  - Gemfile.lock
242
- - Gemfile.windows
243
- - Gemfile.windows.lock
244
242
  - LICENSE
245
243
  - README.md
246
244
  - Rakefile
@@ -385,7 +383,7 @@ files:
385
383
  - lib/chef-dk/skeletons/code_generator/recipes/repo.rb
386
384
  - lib/chef-dk/skeletons/code_generator/recipes/template.rb
387
385
  - lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.all_rights.erb
388
- - lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.apache2.erb
386
+ - lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.apachev2.erb
389
387
  - lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.gplv2.erb
390
388
  - lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.gplv3.erb
391
389
  - lib/chef-dk/skeletons/code_generator/templates/default/LICENSE.mit.erb
@@ -580,13 +578,16 @@ files:
580
578
  - spec/unit/service_exception_inspectors/base_spec.rb
581
579
  - spec/unit/service_exception_inspectors/http_spec.rb
582
580
  - spec/unit/shell_out_spec.rb
581
+ - spec/unit/tasks/helpers_spec.rb
583
582
  - tasks/bin/bundle-platform
584
583
  - tasks/bin/bundle-platform.bat
584
+ - tasks/bin/create-override-gemfile
585
585
  - tasks/bundle.rb
586
586
  - tasks/bundle_util.rb
587
587
  - tasks/dependencies.rb
588
588
  - tasks/gemfile_util.rb
589
589
  - tasks/github_changelog_generator.rb
590
+ - tasks/helpers.rb
590
591
  - tasks/version.rb
591
592
  - version_policy.rb
592
593
  - warning.txt
@@ -796,4 +797,5 @@ test_files:
796
797
  - spec/unit/service_exception_inspectors/base_spec.rb
797
798
  - spec/unit/service_exception_inspectors/http_spec.rb
798
799
  - spec/unit/shell_out_spec.rb
800
+ - spec/unit/tasks/helpers_spec.rb
799
801
  has_rdoc:
data/Gemfile.windows DELETED
@@ -1,34 +0,0 @@
1
- #
2
- # We ensure everything in windows is pinned to the same version as "generic"
3
- # by reading the generic Gemfile.lock and pinning to that version in the Gemfile.
4
- #
5
- # This could *almost* be accomplished by simply copying the lockfile and doing a
6
- # `bundle install` to add any windows dependencies, but bundler can still update
7
- # existing versions in a couple of cases:
8
- #
9
- # 1. When the source has changed since the main lockfile was built.
10
- # 2. When Windows-specific dependencies constrain our solution.
11
- #
12
- # We do NOT allow windows gem versions to differ from non-windows, so that our
13
- # packages are consistent across operating systems.
14
- #
15
- # At the end of this process, this `Gemfile`:
16
- #
17
- # ```
18
- # gem 'chef', github: 'chef/chef'
19
- # gem 'berkshelf'
20
- # ```
21
- #
22
- # Is transformed to something like this:
23
- #
24
- # ```
25
- # gem 'chef', github: 'chef/chef', ref: '23049723984237948023'
26
- # gem 'berkshelf', '= 2.0.5'
27
- # gem 'ohai', '= 12.9.30' # implicit dependency of chef
28
- # ```
29
- #
30
-
31
- require_relative "tasks/gemfile_util"
32
- extend GemfileUtil
33
- generic_gemfile = File.expand_path("../Gemfile", __FILE__)
34
- include_locked_gemfile(generic_gemfile)
data/Gemfile.windows.lock DELETED
@@ -1,936 +0,0 @@
1
- GIT
2
- remote: git://github.com/chef/appbundler.git
3
- revision: a8376ff735ec63d6f4e3cffe971223516890239c
4
- ref: a8376ff735ec63d6f4e3cffe971223516890239c
5
- specs:
6
- appbundler (0.9.0)
7
- mixlib-cli (~> 1.4)
8
-
9
- GIT
10
- remote: git://github.com/chef/chef.git
11
- revision: a0d98d2cfe6a3f1485fc562a0b5589ba4443e592
12
- ref: a0d98d2cfe6a3f1485fc562a0b5589ba4443e592
13
- specs:
14
- chef (12.9.41-universal-mingw32)
15
- bundler (>= 1.10)
16
- chef-config (= 12.9.41)
17
- chef-zero (~> 4.5)
18
- diff-lcs (~> 1.2, >= 1.2.4)
19
- erubis (~> 2.7)
20
- ffi (~> 1.9)
21
- ffi-yajl (~> 2.2)
22
- highline (~> 1.6, >= 1.6.9)
23
- mixlib-authentication (~> 1.4)
24
- mixlib-cli (~> 1.4)
25
- mixlib-log (~> 1.3)
26
- mixlib-shellout (~> 2.0)
27
- net-sftp (~> 2.1, >= 2.1.2)
28
- net-ssh (>= 2.9, < 4.0)
29
- net-ssh-multi (~> 1.1)
30
- ohai (>= 8.6.0.alpha.1, < 9)
31
- plist (~> 3.2)
32
- proxifier (~> 1.0)
33
- rspec-core (~> 3.4)
34
- rspec-expectations (~> 3.4)
35
- rspec-mocks (~> 3.4)
36
- rspec_junit_formatter (~> 0.2.0)
37
- serverspec (~> 2.7)
38
- specinfra (~> 2.10)
39
- syslog-logger (~> 1.6)
40
- uuidtools (~> 2.1.5)
41
- win32-api (~> 1.5.3)
42
- win32-dir (~> 0.5.0)
43
- win32-event (~> 0.6.1)
44
- win32-eventlog (= 0.6.3)
45
- win32-mmap (~> 0.4.1)
46
- win32-mutex (~> 0.4.2)
47
- win32-process (~> 0.8.2)
48
- win32-service (~> 0.8.7)
49
- windows-api (~> 0.4.4)
50
- wmi-lite (~> 1.0)
51
- chef-config (12.9.41)
52
- fuzzyurl (~> 0.8.0)
53
- mixlib-config (~> 2.0)
54
- mixlib-shellout (~> 2.0)
55
-
56
- PATH
57
- remote: .
58
- specs:
59
- chef-dk (0.13.21)
60
- chef (~> 12.5)
61
- chef-provisioning (~> 1.2)
62
- cookbook-omnifetch (~> 0.2, >= 0.2.2)
63
- diff-lcs (~> 1.0)
64
- ffi-yajl (>= 1.0, < 3.0)
65
- minitar (~> 0.5.4)
66
- mixlib-cli (~> 1.5)
67
- mixlib-shellout (~> 2.0)
68
- paint (~> 1.0)
69
- solve (~> 2.0, >= 2.0.1)
70
-
71
- GEM
72
- remote: https://rubygems.org/
73
- specs:
74
- CFPropertyList (2.3.2)
75
- activesupport (4.2.6)
76
- i18n (~> 0.7)
77
- json (~> 1.7, >= 1.7.7)
78
- minitest (~> 5.1)
79
- thread_safe (~> 0.3, >= 0.3.4)
80
- tzinfo (~> 1.1)
81
- addressable (2.4.0)
82
- app_conf (0.4.2)
83
- artifactory (2.3.2)
84
- ast (2.2.0)
85
- autoparse (0.3.3)
86
- addressable (>= 2.3.1)
87
- extlib (>= 0.9.15)
88
- multi_json (>= 1.0.0)
89
- aws-sdk (2.2.34)
90
- aws-sdk-resources (= 2.2.34)
91
- aws-sdk-core (2.2.34)
92
- jmespath (~> 1.0)
93
- aws-sdk-resources (2.2.34)
94
- aws-sdk-core (= 2.2.34)
95
- aws-sdk-v1 (1.66.0)
96
- json (~> 1.4)
97
- nokogiri (>= 1.4.4)
98
- berkshelf (4.3.2)
99
- addressable (~> 2.3, >= 2.3.4)
100
- berkshelf-api-client (~> 2.0, >= 2.0.2)
101
- buff-config (~> 1.0)
102
- buff-extensions (~> 1.0)
103
- buff-shell_out (~> 0.1)
104
- celluloid (= 0.16.0)
105
- celluloid-io (~> 0.16.1)
106
- cleanroom (~> 1.0)
107
- faraday (~> 0.9)
108
- httpclient (~> 2.7)
109
- minitar (~> 0.5, >= 0.5.4)
110
- octokit (~> 4.0)
111
- retryable (~> 2.0)
112
- ridley (~> 4.5)
113
- solve (~> 2.0)
114
- thor (~> 0.19)
115
- berkshelf-api-client (2.0.2)
116
- faraday (~> 0.9.1)
117
- httpclient (~> 2.7.0)
118
- ridley (~> 4.5)
119
- binding_of_caller (0.7.2)
120
- debug_inspector (>= 0.0.1)
121
- buff-config (1.0.1)
122
- buff-extensions (~> 1.0)
123
- varia_model (~> 0.4)
124
- buff-extensions (1.0.0)
125
- buff-ignore (1.1.1)
126
- buff-ruby_engine (0.1.0)
127
- buff-shell_out (0.2.0)
128
- buff-ruby_engine (~> 0.1.0)
129
- builder (3.2.2)
130
- byebug (8.2.4)
131
- celluloid (0.16.0)
132
- timers (~> 4.0.0)
133
- celluloid-io (0.16.2)
134
- celluloid (>= 0.16.0)
135
- nio4r (>= 1.1.0)
136
- chef-provisioning (1.7.0)
137
- cheffish (>= 1.3.1, < 3.0)
138
- inifile (>= 2.0.2)
139
- mixlib-install (~> 1.0)
140
- net-scp (~> 1.0)
141
- net-ssh (>= 2.9, < 4.0)
142
- net-ssh-gateway (~> 1.2.0)
143
- winrm (~> 1.3)
144
- chef-provisioning-aws (1.8.0)
145
- aws-sdk (>= 2.1.26, < 3.0)
146
- aws-sdk-v1 (>= 1.59.0)
147
- chef-provisioning (~> 1.4)
148
- retryable (~> 2.0, >= 2.0.1)
149
- ubuntu_ami (~> 0.4, >= 0.4.1)
150
- chef-provisioning-azure (0.5.0)
151
- chef-provisioning (~> 1.0)
152
- stuartpreston-azure-sdk-for-ruby (~> 0.7)
153
- chef-provisioning-fog (0.18.0)
154
- chef-provisioning (~> 1.0)
155
- fog (>= 1.38.0)
156
- fog-softlayer (~> 1.1.0)
157
- google-api-client (~> 0.8.0)
158
- retryable
159
- chef-provisioning-vagrant (0.11.0)
160
- chef-provisioning
161
- chef-vault (2.9.0)
162
- chef-zero (4.5.0)
163
- ffi-yajl (~> 2.2)
164
- hashie (>= 2.0, < 4.0)
165
- mixlib-log (~> 1.3)
166
- rack
167
- uuidtools (~> 2.1)
168
- cheffish (2.0.3)
169
- chef-zero (~> 4.3)
170
- compat_resource
171
- chefspec (4.6.1)
172
- chef (>= 11.14)
173
- fauxhai (~> 3.2)
174
- rspec (~> 3.0)
175
- childprocess (0.5.9)
176
- ffi (~> 1.0, >= 1.0.11)
177
- cleanroom (1.0.0)
178
- coderay (1.1.1)
179
- colorize (0.7.7)
180
- compat_resource (12.9.1)
181
- cookbook-omnifetch (0.2.2)
182
- minitar (~> 0.5.4)
183
- cucumber-core (1.4.0)
184
- gherkin (~> 3.2.0)
185
- debug_inspector (0.0.2)
186
- dep-selector-libgecode (1.2.0)
187
- dep_selector (1.0.3)
188
- dep-selector-libgecode (~> 1.0)
189
- ffi (~> 1.9)
190
- descendants_tracker (0.0.4)
191
- thread_safe (~> 0.3, >= 0.3.1)
192
- diff-lcs (1.2.5)
193
- diffy (3.1.0)
194
- docker-api (1.26.2)
195
- excon (>= 0.38.0)
196
- json
197
- erubis (2.7.0)
198
- excon (0.49.0)
199
- extlib (0.9.16)
200
- faraday (0.9.2)
201
- multipart-post (>= 1.2, < 3)
202
- fauxhai (3.2.0)
203
- net-ssh
204
- ffi (1.9.10-x86-mingw32)
205
- ffi-yajl (2.2.3)
206
- libyajl2 (~> 1.2)
207
- fission (0.5.0)
208
- CFPropertyList (~> 2.2)
209
- fog (1.38.0)
210
- fog-aliyun (>= 0.1.0)
211
- fog-atmos
212
- fog-aws (>= 0.6.0)
213
- fog-brightbox (~> 0.4)
214
- fog-cloudatcost (~> 0.1.0)
215
- fog-core (~> 1.32)
216
- fog-dynect (~> 0.0.2)
217
- fog-ecloud (~> 0.1)
218
- fog-google (<= 0.1.0)
219
- fog-json
220
- fog-local
221
- fog-openstack
222
- fog-powerdns (>= 0.1.1)
223
- fog-profitbricks
224
- fog-rackspace
225
- fog-radosgw (>= 0.0.2)
226
- fog-riakcs
227
- fog-sakuracloud (>= 0.0.4)
228
- fog-serverlove
229
- fog-softlayer
230
- fog-storm_on_demand
231
- fog-terremark
232
- fog-vmfusion
233
- fog-voxel
234
- fog-vsphere (>= 0.4.0)
235
- fog-xenserver
236
- fog-xml (~> 0.1.1)
237
- ipaddress (~> 0.5)
238
- fog-aliyun (0.1.0)
239
- fog-core (~> 1.27)
240
- fog-json (~> 1.0)
241
- ipaddress (~> 0.8)
242
- xml-simple (~> 1.1)
243
- fog-atmos (0.1.0)
244
- fog-core
245
- fog-xml
246
- fog-aws (0.9.2)
247
- fog-core (~> 1.27)
248
- fog-json (~> 1.0)
249
- fog-xml (~> 0.1)
250
- ipaddress (~> 0.8)
251
- fog-brightbox (0.10.1)
252
- fog-core (~> 1.22)
253
- fog-json
254
- inflecto (~> 0.0.2)
255
- fog-cloudatcost (0.1.2)
256
- fog-core (~> 1.36)
257
- fog-json (~> 1.0)
258
- fog-xml (~> 0.1)
259
- ipaddress (~> 0.8)
260
- fog-core (1.37.0)
261
- builder
262
- excon (~> 0.45)
263
- formatador (~> 0.2)
264
- fog-dynect (0.0.3)
265
- fog-core
266
- fog-json
267
- fog-xml
268
- fog-ecloud (0.3.0)
269
- fog-core
270
- fog-xml
271
- fog-google (0.1.0)
272
- fog-core
273
- fog-json
274
- fog-xml
275
- fog-json (1.0.2)
276
- fog-core (~> 1.0)
277
- multi_json (~> 1.10)
278
- fog-local (0.3.0)
279
- fog-core (~> 1.27)
280
- fog-openstack (0.1.2)
281
- fog-core (>= 1.35)
282
- fog-json (>= 1.0)
283
- fog-xml (>= 0.1)
284
- ipaddress (>= 0.8)
285
- fog-powerdns (0.1.1)
286
- fog-core (~> 1.27)
287
- fog-json (~> 1.0)
288
- fog-xml (~> 0.1)
289
- fog-profitbricks (0.0.5)
290
- fog-core
291
- fog-xml
292
- nokogiri
293
- fog-rackspace (0.1.1)
294
- fog-core (>= 1.35)
295
- fog-json (>= 1.0)
296
- fog-xml (>= 0.1)
297
- ipaddress (>= 0.8)
298
- fog-radosgw (0.0.5)
299
- fog-core (>= 1.21.0)
300
- fog-json
301
- fog-xml (>= 0.0.1)
302
- fog-riakcs (0.1.0)
303
- fog-core
304
- fog-json
305
- fog-xml
306
- fog-sakuracloud (1.7.5)
307
- fog-core
308
- fog-json
309
- fog-serverlove (0.1.2)
310
- fog-core
311
- fog-json
312
- fog-softlayer (1.1.0)
313
- fog-core
314
- fog-json
315
- fog-storm_on_demand (0.1.1)
316
- fog-core
317
- fog-json
318
- fog-terremark (0.1.0)
319
- fog-core
320
- fog-xml
321
- fog-vmfusion (0.1.0)
322
- fission
323
- fog-core
324
- fog-voxel (0.1.0)
325
- fog-core
326
- fog-xml
327
- fog-vsphere (0.6.3)
328
- fog-core
329
- rbvmomi (~> 1.8)
330
- fog-xenserver (0.2.3)
331
- fog-core
332
- fog-xml
333
- fog-xml (0.1.2)
334
- fog-core
335
- nokogiri (~> 1.5, >= 1.5.11)
336
- foodcritic (6.1.1)
337
- cucumber-core (>= 1.3)
338
- erubis
339
- nokogiri (>= 1.5, < 2.0)
340
- rake
341
- rufus-lru (~> 1.0)
342
- treetop (~> 1.4)
343
- yajl-ruby (~> 1.1)
344
- formatador (0.2.5)
345
- fuzzyurl (0.8.0)
346
- gherkin (3.2.0)
347
- git (1.3.0)
348
- github_api (0.13.1)
349
- addressable (~> 2.4.0)
350
- descendants_tracker (~> 0.0.4)
351
- faraday (~> 0.8, < 0.10)
352
- hashie (>= 3.4)
353
- multi_json (>= 1.7.5, < 2.0)
354
- oauth2
355
- github_changelog_generator (1.12.0)
356
- bundler (>= 1.7)
357
- colorize (~> 0.7)
358
- github_api (~> 0.12)
359
- overcommit (>= 0.31)
360
- rake (>= 10.0)
361
- rspec (>= 3.2)
362
- rubocop (>= 0.31)
363
- google-api-client (0.8.6)
364
- activesupport (>= 3.2)
365
- addressable (~> 2.3)
366
- autoparse (~> 0.3)
367
- extlib (~> 0.9)
368
- faraday (~> 0.9)
369
- googleauth (~> 0.3)
370
- launchy (~> 2.4)
371
- multi_json (~> 1.10)
372
- retriable (~> 1.4)
373
- signet (~> 0.6)
374
- googleauth (0.5.1)
375
- faraday (~> 0.9)
376
- jwt (~> 1.4)
377
- logging (~> 2.0)
378
- memoist (~> 0.12)
379
- multi_json (~> 1.11)
380
- os (~> 0.9)
381
- signet (~> 0.7)
382
- gssapi (1.2.0)
383
- ffi (>= 1.0.1)
384
- guard (2.13.0)
385
- formatador (>= 0.2.4)
386
- listen (>= 2.7, <= 4.0)
387
- lumberjack (~> 1.0)
388
- nenv (~> 0.1)
389
- notiffany (~> 0.0)
390
- pry (>= 0.9.12)
391
- shellany (~> 0.0)
392
- thor (>= 0.18.1)
393
- gyoku (1.3.1)
394
- builder (>= 2.1.2)
395
- hashie (3.4.3)
396
- highline (1.7.8)
397
- hitimes (1.2.3-x86-mingw32)
398
- httpclient (2.7.1)
399
- i18n (0.7.0)
400
- inflecto (0.0.2)
401
- inifile (3.0.0)
402
- iniparse (1.4.2)
403
- inspec (0.18.0)
404
- json (~> 1.8)
405
- method_source (~> 0.8)
406
- pry (~> 0)
407
- r-train (~> 0.10.4)
408
- rainbow (~> 2)
409
- rspec (~> 3.3)
410
- rspec-its (~> 1.2)
411
- rubyzip (~> 1.1)
412
- thor (~> 0.19)
413
- ipaddress (0.8.3)
414
- jmespath (1.2.4)
415
- json_pure (>= 1.8.1)
416
- json (1.8.3)
417
- json_pure (1.8.3)
418
- jwt (1.5.1)
419
- kitchen-ec2 (1.0.0)
420
- aws-sdk (~> 2)
421
- excon
422
- multi_json
423
- retryable (~> 2.0)
424
- test-kitchen (~> 1.4, >= 1.4.1)
425
- kitchen-inspec (0.12.5)
426
- inspec (>= 0.14.1, < 1.0.0)
427
- test-kitchen (~> 1.6)
428
- kitchen-vagrant (0.20.0)
429
- test-kitchen (~> 1.4)
430
- knife-spork (1.6.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.4.0)
436
- winrm (~> 1.7)
437
- launchy (2.4.3)
438
- addressable (~> 2.3)
439
- libyajl2 (1.2.0)
440
- listen (3.0.6)
441
- rb-fsevent (>= 0.9.3)
442
- rb-inotify (>= 0.9.7)
443
- little-plugger (1.1.4)
444
- logging (2.1.0)
445
- little-plugger (~> 1.1)
446
- multi_json (~> 1.10)
447
- lumberjack (1.0.10)
448
- macaddr (1.7.1)
449
- systemu (~> 2.6.2)
450
- memoist (0.14.0)
451
- method_source (0.8.2)
452
- mime-types (2.99.1)
453
- mini_portile2 (2.0.0)
454
- minitar (0.5.4)
455
- minitest (5.8.4)
456
- mixlib-authentication (1.4.0)
457
- mixlib-log
458
- rspec-core (~> 3.2)
459
- rspec-expectations (~> 3.2)
460
- rspec-mocks (~> 3.2)
461
- mixlib-cli (1.5.0)
462
- mixlib-config (2.2.1)
463
- mixlib-install (1.0.6)
464
- artifactory (>= 2.3.0)
465
- mixlib-shellout (>= 2.2.6)
466
- mixlib-versioning (>= 1.1.0)
467
- mixlib-log (1.6.0)
468
- mixlib-shellout (2.2.6-universal-mingw32)
469
- win32-process (~> 0.8.2)
470
- wmi-lite (~> 1.0)
471
- mixlib-versioning (1.1.0)
472
- molinillo (0.4.4)
473
- multi_json (1.11.2)
474
- multi_xml (0.5.5)
475
- multipart-post (2.0.0)
476
- nenv (0.3.0)
477
- net-scp (1.2.1)
478
- net-ssh (>= 2.6.5)
479
- net-sftp (2.1.2)
480
- net-ssh (>= 2.6.5)
481
- net-ssh (3.1.1)
482
- net-ssh-gateway (1.2.0)
483
- net-ssh (>= 2.6.5)
484
- net-ssh-multi (1.2.1)
485
- net-ssh (>= 2.6.5)
486
- net-ssh-gateway (>= 1.2.0)
487
- net-telnet (0.1.1)
488
- nio4r (1.2.1)
489
- nokogiri (1.6.7.2-x86-mingw32)
490
- mini_portile2 (~> 2.0.0.rc2)
491
- nori (2.6.0)
492
- notiffany (0.0.8)
493
- nenv (~> 0.1)
494
- shellany (~> 0.0)
495
- oauth2 (1.1.0)
496
- faraday (>= 0.8, < 0.10)
497
- jwt (~> 1.0, < 1.5.2)
498
- multi_json (~> 1.3)
499
- multi_xml (~> 0.5)
500
- rack (>= 1.2, < 3)
501
- octokit (4.3.0)
502
- sawyer (~> 0.7.0, >= 0.5.3)
503
- ohai (8.14.0)
504
- chef-config (>= 12.5.0.alpha.1, < 13)
505
- ffi (~> 1.9)
506
- ffi-yajl (~> 2.2)
507
- ipaddress
508
- mixlib-cli
509
- mixlib-config (~> 2.0)
510
- mixlib-log
511
- mixlib-shellout (~> 2.0)
512
- plist (~> 3.1)
513
- systemu (~> 2.6.4)
514
- wmi-lite (~> 1.0)
515
- os (0.9.6)
516
- overcommit (0.33.0)
517
- childprocess (~> 0.5.8)
518
- iniparse (~> 1.4)
519
- paint (1.0.1)
520
- parser (2.3.0.7)
521
- ast (~> 2.2)
522
- plist (3.2.0)
523
- polyglot (0.3.5)
524
- powerpack (0.1.1)
525
- proxifier (1.0.3)
526
- pry (0.10.3)
527
- coderay (~> 1.1.0)
528
- method_source (~> 0.8.1)
529
- slop (~> 3.4)
530
- pry-byebug (3.3.0)
531
- byebug (~> 8.0)
532
- pry (~> 0.10)
533
- pry-remote (0.1.8)
534
- pry (~> 0.9)
535
- slop (~> 3.0)
536
- pry-stack_explorer (0.4.9.2)
537
- binding_of_caller (>= 0.7)
538
- pry (>= 0.9.11)
539
- r-train (0.10.4)
540
- docker-api (~> 1.26.2)
541
- json (~> 1.8)
542
- mixlib-shellout (~> 2.1)
543
- net-scp (~> 1.2)
544
- net-ssh (>= 2.9, < 4.0)
545
- winrm (~> 1.6)
546
- winrm-fs (~> 0.3)
547
- rack (1.6.4)
548
- rainbow (2.1.0)
549
- rake (11.1.2)
550
- rb-fsevent (0.9.7)
551
- rb-inotify (0.9.7)
552
- ffi (>= 0.5.0)
553
- rb-readline (0.5.3)
554
- rbvmomi (1.8.2)
555
- builder
556
- nokogiri (>= 1.4.1)
557
- trollop
558
- rdoc (4.2.2)
559
- json (~> 1.4)
560
- retriable (1.4.1)
561
- retryable (2.0.3)
562
- ridley (4.5.0)
563
- addressable
564
- buff-config (~> 1.0)
565
- buff-extensions (~> 1.0)
566
- buff-ignore (~> 1.1)
567
- buff-shell_out (~> 0.1)
568
- celluloid (~> 0.16.0)
569
- celluloid-io (~> 0.16.1)
570
- chef-config (>= 12.5.0)
571
- erubis
572
- faraday (~> 0.9.0)
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 (~> 1.1)
579
- varia_model (~> 0.4.0)
580
- rspec (3.4.0)
581
- rspec-core (~> 3.4.0)
582
- rspec-expectations (~> 3.4.0)
583
- rspec-mocks (~> 3.4.0)
584
- rspec-core (3.4.4)
585
- rspec-support (~> 3.4.0)
586
- rspec-expectations (3.4.0)
587
- diff-lcs (>= 1.2.0, < 2.0)
588
- rspec-support (~> 3.4.0)
589
- rspec-its (1.2.0)
590
- rspec-core (>= 3.0.0)
591
- rspec-expectations (>= 3.0.0)
592
- rspec-mocks (3.4.1)
593
- diff-lcs (>= 1.2.0, < 2.0)
594
- rspec-support (~> 3.4.0)
595
- rspec-support (3.4.1)
596
- rspec_junit_formatter (0.2.3)
597
- builder (< 4)
598
- rspec-core (>= 2, < 4, != 2.12.0)
599
- rubocop (0.37.2)
600
- parser (>= 2.3.0.4, < 3.0)
601
- powerpack (~> 0.1)
602
- rainbow (>= 1.99.1, < 3.0)
603
- ruby-progressbar (~> 1.7)
604
- unicode-display_width (~> 0.3)
605
- ruby-prof (0.15.9)
606
- ruby-progressbar (1.7.5)
607
- ruby-shadow (2.5.0)
608
- rubyntlm (0.6.0)
609
- rubyzip (1.2.0)
610
- rufus-lru (1.0.5)
611
- safe_yaml (1.0.4)
612
- sawyer (0.7.0)
613
- addressable (>= 2.3.5, < 2.5)
614
- faraday (~> 0.8, < 0.10)
615
- semverse (1.2.1)
616
- serverspec (2.31.1)
617
- multi_json
618
- rspec (~> 3.0)
619
- rspec-its
620
- specinfra (~> 2.53)
621
- sfl (2.2)
622
- shellany (0.0.1)
623
- signet (0.7.2)
624
- addressable (~> 2.3)
625
- faraday (~> 0.9)
626
- jwt (~> 1.5)
627
- multi_json (~> 1.10)
628
- slop (3.6.0)
629
- solve (2.0.3)
630
- molinillo (~> 0.4.2)
631
- semverse (~> 1.1)
632
- specinfra (2.56.1)
633
- net-scp
634
- net-ssh (>= 2.7, < 4.0)
635
- net-telnet
636
- sfl
637
- stuartpreston-azure-sdk-for-ruby (0.7.1)
638
- json (~> 1.8)
639
- mime-types (~> 2.0)
640
- nokogiri (~> 1.5)
641
- systemu (~> 2.6)
642
- uuid (~> 2.0)
643
- syslog-logger (1.6.8)
644
- systemu (2.6.5)
645
- test-kitchen (1.7.3)
646
- mixlib-install (~> 1.0, >= 1.0.4)
647
- mixlib-shellout (>= 1.2, < 3.0)
648
- net-scp (~> 1.1)
649
- net-ssh (>= 2.9, < 4.0)
650
- safe_yaml (~> 1.0)
651
- thor (~> 0.18)
652
- thor (0.19.1)
653
- thread_safe (0.3.5)
654
- timers (4.0.4)
655
- hitimes
656
- treetop (1.6.5)
657
- polyglot (~> 0.3)
658
- trollop (2.1.2)
659
- tzinfo (1.2.2)
660
- thread_safe (~> 0.1)
661
- ubuntu_ami (0.4.1)
662
- unicode-display_width (0.3.1)
663
- uuid (2.3.8)
664
- macaddr (~> 1.0)
665
- uuidtools (2.1.5)
666
- varia_model (0.4.1)
667
- buff-extensions (~> 1.0)
668
- hashie (>= 2.0.2, < 4.0.0)
669
- win32-api (1.5.3-universal-mingw32)
670
- win32-dir (0.5.1)
671
- ffi (>= 1.0.0)
672
- win32-event (0.6.3)
673
- win32-ipc (>= 0.6.0)
674
- win32-eventlog (0.6.3)
675
- ffi
676
- win32-ipc (0.6.6)
677
- ffi
678
- win32-mmap (0.4.2)
679
- ffi
680
- win32-mutex (0.4.3)
681
- win32-ipc (>= 0.6.0)
682
- win32-process (0.8.3)
683
- ffi (>= 1.0.0)
684
- win32-service (0.8.7)
685
- ffi
686
- windows-api (0.4.4)
687
- win32-api (>= 1.4.5)
688
- winrm (1.7.3)
689
- builder (>= 2.1.2)
690
- gssapi (~> 1.2)
691
- gyoku (~> 1.0)
692
- httpclient (~> 2.2, >= 2.2.0.2)
693
- logging (>= 1.6.1, < 3.0)
694
- nori (~> 2.0)
695
- rubyntlm (~> 0.6.0)
696
- winrm-fs (0.4.2)
697
- erubis (~> 2.7)
698
- logging (>= 1.6.1, < 3.0)
699
- rubyzip (~> 1.1)
700
- winrm (~> 1.5)
701
- wmi-lite (1.0.0)
702
- xml-simple (1.1.5)
703
- yajl-ruby (1.2.1)
704
- yard (0.8.7.6)
705
-
706
- PLATFORMS
707
- x86-mingw32
708
-
709
- DEPENDENCIES
710
- CFPropertyList (= 2.3.2)
711
- activesupport (= 4.2.6)
712
- addressable (= 2.4.0)
713
- app_conf (= 0.4.2)
714
- appbundler!
715
- artifactory (= 2.3.2)
716
- ast (= 2.2.0)
717
- autoparse (= 0.3.3)
718
- aws-sdk (= 2.2.34)
719
- aws-sdk-core (= 2.2.34)
720
- aws-sdk-resources (= 2.2.34)
721
- aws-sdk-v1 (= 1.66.0)
722
- berkshelf (= 4.3.2)
723
- berkshelf-api-client (= 2.0.2)
724
- binding_of_caller (= 0.7.2)
725
- buff-config (= 1.0.1)
726
- buff-extensions (= 1.0.0)
727
- buff-ignore (= 1.1.1)
728
- buff-ruby_engine (= 0.1.0)
729
- buff-shell_out (= 0.2.0)
730
- builder (= 3.2.2)
731
- byebug (= 8.2.4)
732
- celluloid (= 0.16.0)
733
- celluloid-io (= 0.16.2)
734
- chef!
735
- chef-config!
736
- chef-dk!
737
- chef-provisioning (= 1.7.0)
738
- chef-provisioning-aws (= 1.8.0)
739
- chef-provisioning-azure (= 0.5.0)
740
- chef-provisioning-fog (= 0.18.0)
741
- chef-provisioning-vagrant (= 0.11.0)
742
- chef-vault (= 2.9.0)
743
- chef-zero (= 4.5.0)
744
- cheffish (= 2.0.3)
745
- chefspec (= 4.6.1)
746
- childprocess (= 0.5.9)
747
- cleanroom (= 1.0.0)
748
- coderay (= 1.1.1)
749
- colorize (= 0.7.7)
750
- compat_resource (= 12.9.1)
751
- cookbook-omnifetch (= 0.2.2)
752
- cucumber-core (= 1.4.0)
753
- debug_inspector (= 0.0.2)
754
- dep-selector-libgecode (= 1.2.0)
755
- dep_selector (= 1.0.3)
756
- descendants_tracker (= 0.0.4)
757
- diff-lcs (= 1.2.5)
758
- diffy (= 3.1.0)
759
- docker-api (= 1.26.2)
760
- erubis (= 2.7.0)
761
- excon (= 0.49.0)
762
- extlib (= 0.9.16)
763
- faraday (= 0.9.2)
764
- fauxhai (= 3.2.0)
765
- ffi (= 1.9.10)
766
- ffi-yajl (= 2.2.3)
767
- fission (= 0.5.0)
768
- fog (= 1.38.0)
769
- fog-aliyun (= 0.1.0)
770
- fog-atmos (= 0.1.0)
771
- fog-aws (= 0.9.2)
772
- fog-brightbox (= 0.10.1)
773
- fog-cloudatcost (= 0.1.2)
774
- fog-core (= 1.37.0)
775
- fog-dynect (= 0.0.3)
776
- fog-ecloud (= 0.3.0)
777
- fog-google (= 0.1.0)
778
- fog-json (= 1.0.2)
779
- fog-local (= 0.3.0)
780
- fog-openstack (= 0.1.2)
781
- fog-powerdns (= 0.1.1)
782
- fog-profitbricks (= 0.0.5)
783
- fog-rackspace (= 0.1.1)
784
- fog-radosgw (= 0.0.5)
785
- fog-riakcs (= 0.1.0)
786
- fog-sakuracloud (= 1.7.5)
787
- fog-serverlove (= 0.1.2)
788
- fog-softlayer (= 1.1.0)
789
- fog-storm_on_demand (= 0.1.1)
790
- fog-terremark (= 0.1.0)
791
- fog-vmfusion (= 0.1.0)
792
- fog-voxel (= 0.1.0)
793
- fog-vsphere (= 0.6.3)
794
- fog-xenserver (= 0.2.3)
795
- fog-xml (= 0.1.2)
796
- foodcritic (= 6.1.1)
797
- formatador (= 0.2.5)
798
- fuzzyurl (= 0.8.0)
799
- gherkin (= 3.2.0)
800
- git (= 1.3.0)
801
- github_api (= 0.13.1)
802
- github_changelog_generator (= 1.12.0)
803
- google-api-client (= 0.8.6)
804
- googleauth (= 0.5.1)
805
- gssapi (= 1.2.0)
806
- guard (= 2.13.0)
807
- gyoku (= 1.3.1)
808
- hashie (= 3.4.3)
809
- highline (= 1.7.8)
810
- hitimes (= 1.2.3)
811
- httpclient (= 2.7.1)
812
- i18n (= 0.7.0)
813
- inflecto (= 0.0.2)
814
- inifile (= 3.0.0)
815
- iniparse (= 1.4.2)
816
- inspec (= 0.18.0)
817
- ipaddress (= 0.8.3)
818
- jmespath (= 1.2.4)
819
- json (= 1.8.3)
820
- json_pure (= 1.8.3)
821
- jwt (= 1.5.1)
822
- kitchen-ec2 (= 1.0.0)
823
- kitchen-inspec (= 0.12.5)
824
- kitchen-vagrant (= 0.20.0)
825
- knife-spork (= 1.6.1)
826
- knife-windows (= 1.4.0)
827
- launchy (= 2.4.3)
828
- libyajl2 (= 1.2.0)
829
- listen (= 3.0.6)
830
- little-plugger (= 1.1.4)
831
- logging (= 2.1.0)
832
- lumberjack (= 1.0.10)
833
- macaddr (= 1.7.1)
834
- memoist (= 0.14.0)
835
- method_source (= 0.8.2)
836
- mime-types (= 2.99.1)
837
- mini_portile2 (= 2.0.0)
838
- minitar (= 0.5.4)
839
- minitest (= 5.8.4)
840
- mixlib-authentication (= 1.4.0)
841
- mixlib-cli (= 1.5.0)
842
- mixlib-config (= 2.2.1)
843
- mixlib-install (= 1.0.6)
844
- mixlib-log (= 1.6.0)
845
- mixlib-shellout (= 2.2.6)
846
- mixlib-versioning (= 1.1.0)
847
- molinillo (= 0.4.4)
848
- multi_json (= 1.11.2)
849
- multi_xml (= 0.5.5)
850
- multipart-post (= 2.0.0)
851
- nenv (= 0.3.0)
852
- net-scp (= 1.2.1)
853
- net-sftp (= 2.1.2)
854
- net-ssh (= 3.1.1)
855
- net-ssh-gateway (= 1.2.0)
856
- net-ssh-multi (= 1.2.1)
857
- net-telnet (= 0.1.1)
858
- nio4r (= 1.2.1)
859
- nokogiri (= 1.6.7.2)
860
- nori (= 2.6.0)
861
- notiffany (= 0.0.8)
862
- oauth2 (= 1.1.0)
863
- octokit (= 4.3.0)
864
- ohai (= 8.14.0)
865
- os (= 0.9.6)
866
- overcommit (= 0.33.0)
867
- paint (= 1.0.1)
868
- parser (= 2.3.0.7)
869
- plist (= 3.2.0)
870
- polyglot (= 0.3.5)
871
- powerpack (= 0.1.1)
872
- proxifier (= 1.0.3)
873
- pry (= 0.10.3)
874
- pry-byebug (= 3.3.0)
875
- pry-remote (= 0.1.8)
876
- pry-stack_explorer (= 0.4.9.2)
877
- r-train (= 0.10.4)
878
- rack (= 1.6.4)
879
- rainbow (= 2.1.0)
880
- rake (= 11.1.2)
881
- rb-fsevent (= 0.9.7)
882
- rb-inotify (= 0.9.7)
883
- rb-readline (= 0.5.3)
884
- rbvmomi (= 1.8.2)
885
- rdoc (= 4.2.2)
886
- retriable (= 1.4.1)
887
- retryable (= 2.0.3)
888
- ridley (= 4.5.0)
889
- rspec (= 3.4.0)
890
- rspec-core (= 3.4.4)
891
- rspec-expectations (= 3.4.0)
892
- rspec-its (= 1.2.0)
893
- rspec-mocks (= 3.4.1)
894
- rspec-support (= 3.4.1)
895
- rspec_junit_formatter (= 0.2.3)
896
- rubocop (= 0.37.2)
897
- ruby-prof (= 0.15.9)
898
- ruby-progressbar (= 1.7.5)
899
- ruby-shadow (= 2.5.0)
900
- rubyntlm (= 0.6.0)
901
- rubyzip (= 1.2.0)
902
- rufus-lru (= 1.0.5)
903
- safe_yaml (= 1.0.4)
904
- sawyer (= 0.7.0)
905
- semverse (= 1.2.1)
906
- serverspec (= 2.31.1)
907
- sfl (= 2.2)
908
- shellany (= 0.0.1)
909
- signet (= 0.7.2)
910
- slop (= 3.6.0)
911
- solve (= 2.0.3)
912
- specinfra (= 2.56.1)
913
- stuartpreston-azure-sdk-for-ruby (= 0.7.1)
914
- syslog-logger (= 1.6.8)
915
- systemu (= 2.6.5)
916
- test-kitchen (= 1.7.3)
917
- thor (= 0.19.1)
918
- thread_safe (= 0.3.5)
919
- timers (= 4.0.4)
920
- treetop (= 1.6.5)
921
- trollop (= 2.1.2)
922
- tzinfo (= 1.2.2)
923
- ubuntu_ami (= 0.4.1)
924
- unicode-display_width (= 0.3.1)
925
- uuid (= 2.3.8)
926
- uuidtools (= 2.1.5)
927
- varia_model (= 0.4.1)
928
- winrm (= 1.7.3)
929
- winrm-fs (= 0.4.2)
930
- wmi-lite (= 1.0.0)
931
- xml-simple (= 1.1.5)
932
- yajl-ruby (= 1.2.1)
933
- yard (= 0.8.7.6)
934
-
935
- BUNDLED WITH
936
- 1.11.2