cloud-toaster 1.1.2

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 (515) hide show
  1. checksums.yaml +15 -0
  2. data/LICENSE +202 -0
  3. data/README.md +54 -0
  4. data/Rakefile +51 -0
  5. data/VERSION +1 -0
  6. data/bin/strace-4.8_patched/strace-i686 +0 -0
  7. data/bin/strace-4.8_patched/strace-x86_64 +0 -0
  8. data/bin/toaster +74 -0
  9. data/chef/cookbooks/chef-solo-search/CHANGELOG +16 -0
  10. data/chef/cookbooks/chef-solo-search/Gemfile +8 -0
  11. data/chef/cookbooks/chef-solo-search/LICENSE +202 -0
  12. data/chef/cookbooks/chef-solo-search/NOTICE +18 -0
  13. data/chef/cookbooks/chef-solo-search/README.md +143 -0
  14. data/chef/cookbooks/chef-solo-search/Rakefile +10 -0
  15. data/chef/cookbooks/chef-solo-search/libraries/search/overrides.rb +100 -0
  16. data/chef/cookbooks/chef-solo-search/libraries/search/parser.rb +222 -0
  17. data/chef/cookbooks/chef-solo-search/libraries/search.rb +75 -0
  18. data/chef/cookbooks/chef-solo-search/libraries/vendor/chef/solr_query/lucene.treetop +150 -0
  19. data/chef/cookbooks/chef-solo-search/libraries/vendor/chef/solr_query/lucene_nodes.rb +285 -0
  20. data/chef/cookbooks/chef-solo-search/libraries/vendor/chef/solr_query/query_transform.rb +65 -0
  21. data/chef/cookbooks/chef-solo-search/metadata.rb +11 -0
  22. data/chef/cookbooks/chef-solo-search/recipes/default.rb +3 -0
  23. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/node/alpha.json +10 -0
  24. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/node/beta.json +10 -0
  25. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/node/without_json_class.json +7 -0
  26. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/users/jerry.json +8 -0
  27. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/users/lea.json +10 -0
  28. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/users/mike.json +13 -0
  29. data/chef/cookbooks/chef-solo-search/tests/data/data_bags/users/tom.json +10 -0
  30. data/chef/cookbooks/chef-solo-search/tests/gemfiles/Gemfile.10 +4 -0
  31. data/chef/cookbooks/chef-solo-search/tests/gemfiles/Gemfile.11 +5 -0
  32. data/chef/cookbooks/chef-solo-search/tests/test_data_bags.rb +45 -0
  33. data/chef/cookbooks/chef-solo-search/tests/test_search.rb +244 -0
  34. data/chef/cookbooks/lxc/attributes/create_lxc.rb +8 -0
  35. data/chef/cookbooks/lxc/attributes/general.rb +15 -0
  36. data/chef/cookbooks/lxc/attributes/init_bare_os.rb +15 -0
  37. data/chef/cookbooks/lxc/attributes/init_proto.rb +18 -0
  38. data/chef/cookbooks/lxc/attributes/install_ruby.rb +51 -0
  39. data/chef/cookbooks/lxc/attributes/mount_volume.rb +11 -0
  40. data/chef/cookbooks/lxc/attributes/setup_host.rb +9 -0
  41. data/chef/cookbooks/lxc/attributes/setup_proxy.rb +3 -0
  42. data/chef/cookbooks/lxc/attributes/start_lxc.rb +11 -0
  43. data/chef/cookbooks/lxc/attributes/stop_lxc.rb +3 -0
  44. data/chef/cookbooks/lxc/files/install.chef.sh +78 -0
  45. data/chef/cookbooks/lxc/metadata.json +6 -0
  46. data/chef/cookbooks/lxc/recipes/create_lxc.rb +106 -0
  47. data/chef/cookbooks/lxc/recipes/init_bare_os.rb +82 -0
  48. data/chef/cookbooks/lxc/recipes/init_proto.rb +417 -0
  49. data/chef/cookbooks/lxc/recipes/install_docker.rb +61 -0
  50. data/chef/cookbooks/lxc/recipes/install_ruby.rb +28 -0
  51. data/chef/cookbooks/lxc/recipes/mount_volume.rb +63 -0
  52. data/chef/cookbooks/lxc/recipes/setup_database.rb +22 -0
  53. data/chef/cookbooks/lxc/recipes/setup_host.rb +179 -0
  54. data/chef/cookbooks/lxc/recipes/setup_proxy.rb +157 -0
  55. data/chef/cookbooks/lxc/recipes/start_lxc.rb +180 -0
  56. data/chef/cookbooks/lxc/recipes/stop_lxc.rb +86 -0
  57. data/chef/cookbooks/mysql/CHANGELOG.md +391 -0
  58. data/chef/cookbooks/mysql/README.md +211 -0
  59. data/chef/cookbooks/mysql/attributes/default.rb +22 -0
  60. data/chef/cookbooks/mysql/libraries/helpers.rb +277 -0
  61. data/chef/cookbooks/mysql/libraries/matchers.rb +17 -0
  62. data/chef/cookbooks/mysql/libraries/provider_mysql_client.rb +10 -0
  63. data/chef/cookbooks/mysql/libraries/provider_mysql_client_debian.rb +37 -0
  64. data/chef/cookbooks/mysql/libraries/provider_mysql_client_fedora.rb +38 -0
  65. data/chef/cookbooks/mysql/libraries/provider_mysql_client_freebsd.rb +33 -0
  66. data/chef/cookbooks/mysql/libraries/provider_mysql_client_omnios.rb +41 -0
  67. data/chef/cookbooks/mysql/libraries/provider_mysql_client_rhel.rb +42 -0
  68. data/chef/cookbooks/mysql/libraries/provider_mysql_client_smartos.rb +33 -0
  69. data/chef/cookbooks/mysql/libraries/provider_mysql_client_suse.rb +37 -0
  70. data/chef/cookbooks/mysql/libraries/provider_mysql_client_ubuntu.rb +37 -0
  71. data/chef/cookbooks/mysql/libraries/provider_mysql_service.rb +10 -0
  72. data/chef/cookbooks/mysql/libraries/provider_mysql_service_debian.rb +193 -0
  73. data/chef/cookbooks/mysql/libraries/provider_mysql_service_fedora.rb +157 -0
  74. data/chef/cookbooks/mysql/libraries/provider_mysql_service_freebsd.rb +151 -0
  75. data/chef/cookbooks/mysql/libraries/provider_mysql_service_omnios.rb +232 -0
  76. data/chef/cookbooks/mysql/libraries/provider_mysql_service_rhel.rb +318 -0
  77. data/chef/cookbooks/mysql/libraries/provider_mysql_service_smartos.rb +216 -0
  78. data/chef/cookbooks/mysql/libraries/provider_mysql_service_suse.rb +170 -0
  79. data/chef/cookbooks/mysql/libraries/provider_mysql_service_ubuntu.rb +218 -0
  80. data/chef/cookbooks/mysql/libraries/resource_mysql_client.rb +11 -0
  81. data/chef/cookbooks/mysql/libraries/resource_mysql_service.rb +194 -0
  82. data/chef/cookbooks/mysql/metadata.json +40 -0
  83. data/chef/cookbooks/mysql/metadata.rb +20 -0
  84. data/chef/cookbooks/mysql/recipes/client.rb +22 -0
  85. data/chef/cookbooks/mysql/recipes/server.rb +33 -0
  86. data/chef/cookbooks/mysql/recipes/server_deprecated.rb +23 -0
  87. data/chef/cookbooks/mysql/templates/default/5.0/my.cnf.erb +38 -0
  88. data/chef/cookbooks/mysql/templates/default/5.1/my.cnf.erb +38 -0
  89. data/chef/cookbooks/mysql/templates/default/5.5/my.cnf.erb +38 -0
  90. data/chef/cookbooks/mysql/templates/default/5.6/my.cnf.erb +39 -0
  91. data/chef/cookbooks/mysql/templates/default/apparmor/usr.sbin.mysqld.erb +40 -0
  92. data/chef/cookbooks/mysql/templates/default/debian/debian.cnf.erb +12 -0
  93. data/chef/cookbooks/mysql/templates/default/debian/mysql-server.seed.erb +10 -0
  94. data/chef/cookbooks/mysql/templates/default/deprecated/my.cnf.erb +374 -0
  95. data/chef/cookbooks/mysql/templates/default/grants/grants.sql.erb +27 -0
  96. data/chef/cookbooks/mysql/templates/default/omnios/mysql.xml.erb +26 -0
  97. data/chef/cookbooks/mysql/templates/default/omnios/svc.method.mysqld.erb +29 -0
  98. data/chef/cookbooks/mysql/templates/default/smartos/mysql.xml.erb +32 -0
  99. data/chef/cookbooks/mysql/templates/default/smartos/svc.method.mysqld.erb +29 -0
  100. data/chef/cookbooks/openssl/README.md +37 -0
  101. data/chef/cookbooks/openssl/libraries/secure_password.rb +37 -0
  102. data/chef/cookbooks/openssl/metadata.json +30 -0
  103. data/chef/cookbooks/openssl/metadata.rb +8 -0
  104. data/chef/cookbooks/openssl/recipes/default.rb +19 -0
  105. data/chef/cookbooks/ssh/attributes/default.rb +8 -0
  106. data/chef/cookbooks/ssh/recipes/authorize_key.rb +20 -0
  107. data/chef/cookbooks/toaster/attributes/testing.rb +37 -0
  108. data/chef/cookbooks/toaster/libraries/default.rb +61 -0
  109. data/chef/cookbooks/toaster/recipes/post__cakephp__default.rb +27 -0
  110. data/chef/cookbooks/toaster/recipes/post__cube__default.rb +26 -0
  111. data/chef/cookbooks/toaster/recipes/post__drupal__default.rb +16 -0
  112. data/chef/cookbooks/toaster/recipes/post__icinga__default.rb +9 -0
  113. data/chef/cookbooks/toaster/recipes/post__node__default.rb +16 -0
  114. data/chef/cookbooks/toaster/recipes/post__virtualbox__default.rb +12 -0
  115. data/chef/cookbooks/toaster/recipes/post__wordpress__default.rb +12 -0
  116. data/chef/cookbooks/toaster/recipes/pre__aegir__default.rb +12 -0
  117. data/chef/cookbooks/toaster/recipes/pre__app__default.rb +3 -0
  118. data/chef/cookbooks/toaster/recipes/pre__cakephp__default.rb +24 -0
  119. data/chef/cookbooks/toaster/recipes/pre__cube__default.rb +9 -0
  120. data/chef/cookbooks/toaster/recipes/pre__disco__default.rb +21 -0
  121. data/chef/cookbooks/toaster/recipes/pre__drbd__default.rb +7 -0
  122. data/chef/cookbooks/toaster/recipes/pre__eaccelerator__default.rb +2 -0
  123. data/chef/cookbooks/toaster/recipes/pre__elasticsearch-head__default.rb +11 -0
  124. data/chef/cookbooks/toaster/recipes/pre__elasticsearch__default.rb +6 -0
  125. data/chef/cookbooks/toaster/recipes/pre__gitosis__default.rb +17 -0
  126. data/chef/cookbooks/toaster/recipes/pre__kafka__default.rb +3 -0
  127. data/chef/cookbooks/toaster/recipes/pre__munin__server.rb +6 -0
  128. data/chef/cookbooks/toaster/recipes/pre__mysql__server.rb +4 -0
  129. data/chef/cookbooks/toaster/recipes/pre__nagios__default.rb +3 -0
  130. data/chef/cookbooks/toaster/recipes/pre__netkernel__default.rb +24 -0
  131. data/chef/cookbooks/toaster/recipes/pre__php__default.rb +2 -0
  132. data/chef/cookbooks/toaster/recipes/pre__postgresql__server.rb +3 -0
  133. data/chef/cookbooks/toaster/recipes/pre__pxe_dust__default.rb +9 -0
  134. data/chef/cookbooks/toaster/recipes/pre__pxe_install_server__default.rb +6 -0
  135. data/chef/cookbooks/toaster/recipes/pre__riak__default.rb +40 -0
  136. data/chef/cookbooks/toaster/recipes/pre__sensu__default.rb +9 -0
  137. data/chef/cookbooks/toaster/recipes/pre__sol__default.rb +2 -0
  138. data/chef/cookbooks/toaster/recipes/pre__solr__default.rb +6 -0
  139. data/chef/cookbooks/toaster/recipes/pre__sonar__default.rb +2 -0
  140. data/chef/cookbooks/toaster/recipes/pre__storm__default.rb +3 -0
  141. data/chef/cookbooks/toaster/recipes/pre__vmware__tools.rb +4 -0
  142. data/chef/cookbooks/toaster/recipes/pre__wordpress__default.rb +17 -0
  143. data/chef/cookbooks/toaster/recipes/pre__xen__default.rb +7 -0
  144. data/chef/cookbooks/toaster/recipes/pre__znc__default.rb +7 -0
  145. data/chef/cookbooks/toaster/recipes/testing.rb +241 -0
  146. data/chef/cookbooks/toaster/recipes/testing_post.rb +36 -0
  147. data/chef/cookbooks/yum/CHANGELOG.md +212 -0
  148. data/chef/cookbooks/yum/README.md +268 -0
  149. data/chef/cookbooks/yum/attributes/main.rb +97 -0
  150. data/chef/cookbooks/yum/libraries/matchers.rb +27 -0
  151. data/chef/cookbooks/yum/metadata.json +34 -0
  152. data/chef/cookbooks/yum/metadata.rb +13 -0
  153. data/chef/cookbooks/yum/providers/globalconfig.rb +37 -0
  154. data/chef/cookbooks/yum/providers/repository.rb +85 -0
  155. data/chef/cookbooks/yum/recipes/default.rb +34 -0
  156. data/chef/cookbooks/yum/resources/globalconfig.rb +105 -0
  157. data/chef/cookbooks/yum/resources/repository.rb +63 -0
  158. data/chef/cookbooks/yum/templates/default/main.erb +251 -0
  159. data/chef/cookbooks/yum/templates/default/repo.erb +109 -0
  160. data/chef/cookbooks/yum-mysql-community/CHANGELOG.md +67 -0
  161. data/chef/cookbooks/yum-mysql-community/README.md +137 -0
  162. data/chef/cookbooks/yum-mysql-community/attributes/mysql-connectors-community.rb +31 -0
  163. data/chef/cookbooks/yum-mysql-community/attributes/mysql55-community.rb +29 -0
  164. data/chef/cookbooks/yum-mysql-community/attributes/mysql56-community.rb +31 -0
  165. data/chef/cookbooks/yum-mysql-community/files/default/mysql_pubkey.asc +33 -0
  166. data/chef/cookbooks/yum-mysql-community/metadata.json +30 -0
  167. data/chef/cookbooks/yum-mysql-community/metadata.rb +8 -0
  168. data/chef/cookbooks/yum-mysql-community/recipes/connectors.rb +48 -0
  169. data/chef/cookbooks/yum-mysql-community/recipes/mysql55.rb +48 -0
  170. data/chef/cookbooks/yum-mysql-community/recipes/mysql56.rb +48 -0
  171. data/config.json +34 -0
  172. data/lib/toaster/api.rb +447 -0
  173. data/lib/toaster/chef/chef_listener.rb +514 -0
  174. data/lib/toaster/chef/chef_node_inspector.rb +165 -0
  175. data/lib/toaster/chef/chef_util.rb +865 -0
  176. data/lib/toaster/chef/failsafe_resource_parser.rb +140 -0
  177. data/lib/toaster/chef/resource_inspector.rb +536 -0
  178. data/lib/toaster/db/cache.rb +98 -0
  179. data/lib/toaster/db/cached_db.rb +53 -0
  180. data/lib/toaster/db/cgi_session_cache.rb +209 -0
  181. data/lib/toaster/db/db.rb +98 -0
  182. data/lib/toaster/db/mysql.rb +18 -0
  183. data/lib/toaster/db/ram_cache.rb +203 -0
  184. data/lib/toaster/markup/jdom-1.1.jar +0 -0
  185. data/lib/toaster/markup/jdom-b7.jar +0 -0
  186. data/lib/toaster/markup/markup_util.rb +437 -0
  187. data/lib/toaster/markup/vmtools-utils-0.5.jar +0 -0
  188. data/lib/toaster/markup/xmldiff.sh +5 -0
  189. data/lib/toaster/model/additional_property.rb +11 -0
  190. data/lib/toaster/model/automation.rb +218 -0
  191. data/lib/toaster/model/automation_attribute.rb +13 -0
  192. data/lib/toaster/model/automation_run.rb +104 -0
  193. data/lib/toaster/model/ignore_property.rb +11 -0
  194. data/lib/toaster/model/key_value_pair.rb +59 -0
  195. data/lib/toaster/model/run_attribute.rb +17 -0
  196. data/lib/toaster/model/state.rb +17 -0
  197. data/lib/toaster/model/state_change.rb +79 -0
  198. data/lib/toaster/model/task.rb +292 -0
  199. data/lib/toaster/model/task_execution.rb +76 -0
  200. data/lib/toaster/model/task_parameter.rb +66 -0
  201. data/lib/toaster/model/user.rb +32 -0
  202. data/lib/toaster/ohai/_disabled_/network_ports.rb +81 -0
  203. data/lib/toaster/ohai/apache/apache.rb +48 -0
  204. data/lib/toaster/ohai/cron/cron.rb +32 -0
  205. data/lib/toaster/ohai/files/_meta.rb +30 -0
  206. data/lib/toaster/ohai/files/files.rb +20 -0
  207. data/lib/toaster/ohai/gems/gems.rb +19 -0
  208. data/lib/toaster/ohai/groups/groups.rb +20 -0
  209. data/lib/toaster/ohai/iptables/iptables.rb +48 -0
  210. data/lib/toaster/ohai/mounts/mounts.rb +26 -0
  211. data/lib/toaster/ohai/mysql/mysql.rb +31 -0
  212. data/lib/toaster/ohai/packages/_meta.rb +86 -0
  213. data/lib/toaster/ohai/packages/packages.rb +33 -0
  214. data/lib/toaster/ohai/ports/ports.rb +21 -0
  215. data/lib/toaster/ohai/routes/routes.rb +25 -0
  216. data/lib/toaster/ohai/services/services.rb +42 -0
  217. data/lib/toaster/ohai/users/users.rb +17 -0
  218. data/lib/toaster/state/convergence.rb +197 -0
  219. data/lib/toaster/state/idempotence.rb +192 -0
  220. data/lib/toaster/state/ptrace_util.rb +48 -0
  221. data/lib/toaster/state/state_node.rb +105 -0
  222. data/lib/toaster/state/state_transition.rb +38 -0
  223. data/lib/toaster/state/state_transition_graph.rb +701 -0
  224. data/lib/toaster/state/syscall_tracer.rb +317 -0
  225. data/lib/toaster/state/system_state.rb +349 -0
  226. data/lib/toaster/state/transition_edge.rb +65 -0
  227. data/lib/toaster/test/test_attribute.rb +19 -0
  228. data/lib/toaster/test/test_case.rb +175 -0
  229. data/lib/toaster/test/test_coverage.rb +147 -0
  230. data/lib/toaster/test/test_coverage_goal.rb +108 -0
  231. data/lib/toaster/test/test_generator.rb +246 -0
  232. data/lib/toaster/test/test_orchestrator.rb +165 -0
  233. data/lib/toaster/test/test_result.rb +73 -0
  234. data/lib/toaster/test/test_runner.rb +394 -0
  235. data/lib/toaster/test/test_suite.rb +151 -0
  236. data/lib/toaster/test_manager.rb +281 -0
  237. data/lib/toaster/toaster_app_service.rb +141 -0
  238. data/lib/toaster/util/blocking_map.rb +80 -0
  239. data/lib/toaster/util/combinatorial.rb +58 -0
  240. data/lib/toaster/util/config.rb +103 -0
  241. data/lib/toaster/util/docker.rb +71 -0
  242. data/lib/toaster/util/logging.rb +19 -0
  243. data/lib/toaster/util/lxc.rb +383 -0
  244. data/lib/toaster/util/mem_dump.rb +38 -0
  245. data/lib/toaster/util/proxy.rb +23 -0
  246. data/lib/toaster/util/timestamp.rb +131 -0
  247. data/lib/toaster/util/util.rb +437 -0
  248. data/lib/toaster/web_ui.rb +7 -0
  249. data/webapp/Gemfile +46 -0
  250. data/webapp/Gemfile.lock +237 -0
  251. data/webapp/Rakefile +6 -0
  252. data/webapp/app/assets/fonts/font.woff +0 -0
  253. data/webapp/app/assets/images/final_state.gif +0 -0
  254. data/webapp/app/assets/images/initial_state.gif +0 -0
  255. data/webapp/app/assets/images/loading.gif +0 -0
  256. data/webapp/app/assets/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  257. data/webapp/app/assets/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  258. data/webapp/app/assets/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  259. data/webapp/app/assets/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  260. data/webapp/app/assets/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  261. data/webapp/app/assets/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  262. data/webapp/app/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  263. data/webapp/app/assets/images/ui-icons_222222_256x240.png +0 -0
  264. data/webapp/app/assets/javascripts/analysis.js.coffee +3 -0
  265. data/webapp/app/assets/javascripts/application.js +16 -0
  266. data/webapp/app/assets/javascripts/execs.js.coffee +3 -0
  267. data/webapp/app/assets/javascripts/graph.js +441 -0
  268. data/webapp/app/assets/javascripts/jquery-1.7.2.js +9404 -0
  269. data/webapp/app/assets/javascripts/jquery-ui-1.8.22.js +11529 -0
  270. data/webapp/app/assets/javascripts/jquery.cookie.js +96 -0
  271. data/webapp/app/assets/javascripts/jquery.hotkeys.js +99 -0
  272. data/webapp/app/assets/javascripts/jquery.jstree.js +4551 -0
  273. data/webapp/app/assets/javascripts/jsPlumb/jquery.jsPlumb-1.3.14-all-min.js +1 -0
  274. data/webapp/app/assets/javascripts/jstree.util.js +53 -0
  275. data/webapp/app/assets/javascripts/scripts.js.coffee +3 -0
  276. data/webapp/app/assets/javascripts/settings.js.coffee +3 -0
  277. data/webapp/app/assets/javascripts/test.js.coffee +3 -0
  278. data/webapp/app/assets/javascripts/util.js.coffee +3 -0
  279. data/webapp/app/assets/stylesheets/analysis.css.scss +3 -0
  280. data/webapp/app/assets/stylesheets/application.css +49 -0
  281. data/webapp/app/assets/stylesheets/execs.css.scss +3 -0
  282. data/webapp/app/assets/stylesheets/graph.css +159 -0
  283. data/webapp/app/assets/stylesheets/jquery-ui-1.8.6.custom.css +572 -0
  284. data/webapp/app/assets/stylesheets/layout.css +151 -0
  285. data/webapp/app/assets/stylesheets/menu.css +186 -0
  286. data/webapp/app/assets/stylesheets/reset.css +41 -0
  287. data/webapp/app/assets/stylesheets/scripts.css.scss +3 -0
  288. data/webapp/app/assets/stylesheets/settings.css.scss +3 -0
  289. data/webapp/app/assets/stylesheets/test.css.scss +3 -0
  290. data/webapp/app/assets/stylesheets/util.css.scss +3 -0
  291. data/webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.eot +0 -0
  292. data/webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.svg +1 -0
  293. data/webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.ttf +0 -0
  294. data/webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.woff +0 -0
  295. data/webapp/app/controllers/analysis_controller.rb +7 -0
  296. data/webapp/app/controllers/application_controller.rb +14 -0
  297. data/webapp/app/controllers/base_controller.rb +91 -0
  298. data/webapp/app/controllers/execs_controller.rb +59 -0
  299. data/webapp/app/controllers/graph_controller.rb +17 -0
  300. data/webapp/app/controllers/scripts_controller.rb +166 -0
  301. data/webapp/app/controllers/settings_controller.rb +10 -0
  302. data/webapp/app/controllers/test_controller.rb +127 -0
  303. data/webapp/app/controllers/util_controller.rb +6 -0
  304. data/webapp/app/helpers/analysis_helper.rb +2 -0
  305. data/webapp/app/helpers/application_helper.rb +2 -0
  306. data/webapp/app/helpers/automations_helper.rb +2 -0
  307. data/webapp/app/helpers/execs_helper.rb +2 -0
  308. data/webapp/app/helpers/scripts_helper.rb +2 -0
  309. data/webapp/app/helpers/settings_helper.rb +2 -0
  310. data/webapp/app/helpers/test_helper.rb +2 -0
  311. data/webapp/app/helpers/util_helper.rb +2 -0
  312. data/webapp/app/views/analysis/convergence.html.erb +156 -0
  313. data/webapp/app/views/analysis/idempotence.html.erb +2 -0
  314. data/webapp/app/views/execs/automation_runs.html.erb +98 -0
  315. data/webapp/app/views/execs/task_executions.html.erb +154 -0
  316. data/webapp/app/views/graph/graph_frame.html +101 -0
  317. data/webapp/app/views/layouts/application.html.erb +114 -0
  318. data/webapp/app/views/scripts/edit.html.erb +58 -0
  319. data/webapp/app/views/scripts/graph.html.erb +75 -0
  320. data/webapp/app/views/scripts/import_chef.html.erb +104 -0
  321. data/webapp/app/views/scripts/scripts.html.erb +116 -0
  322. data/webapp/app/views/scripts/tasks.html.erb +139 -0
  323. data/webapp/app/views/settings/containers.html.erb +161 -0
  324. data/webapp/app/views/settings/index.html.erb +51 -0
  325. data/webapp/app/views/test/cases.html.erb +2 -0
  326. data/webapp/app/views/test/gen.html.erb +229 -0
  327. data/webapp/app/views/test/suites.html.erb +205 -0
  328. data/webapp/app/views/util/chef.html.erb +53 -0
  329. data/webapp/bin/bundle +3 -0
  330. data/webapp/bin/rails +4 -0
  331. data/webapp/bin/rake +4 -0
  332. data/webapp/config/application.rb +28 -0
  333. data/webapp/config/boot.rb +18 -0
  334. data/webapp/config/database.yml +42 -0
  335. data/webapp/config/environment.rb +5 -0
  336. data/webapp/config/environments/development.rb +35 -0
  337. data/webapp/config/environments/production.rb +80 -0
  338. data/webapp/config/environments/test.rb +36 -0
  339. data/webapp/config/initializers/backtrace_silencers.rb +7 -0
  340. data/webapp/config/initializers/devise.rb +256 -0
  341. data/webapp/config/initializers/filter_parameter_logging.rb +4 -0
  342. data/webapp/config/initializers/inflections.rb +16 -0
  343. data/webapp/config/initializers/mime_types.rb +5 -0
  344. data/webapp/config/initializers/patches.rb +13 -0
  345. data/webapp/config/initializers/secret_token.rb +12 -0
  346. data/webapp/config/initializers/session_store.rb +6 -0
  347. data/webapp/config/initializers/wrap_parameters.rb +16 -0
  348. data/webapp/config/locales/devise.en.yml +59 -0
  349. data/webapp/config/locales/en.yml +23 -0
  350. data/webapp/config/routes.rb +113 -0
  351. data/webapp/config.ru +4 -0
  352. data/webapp/db/development.sqlite3 +0 -0
  353. data/webapp/db/migrate/20140624002037_devise_create_users.rb +42 -0
  354. data/webapp/db/migrate/20140628002058_create_all_tables.rb +159 -0
  355. data/webapp/db/schema.rb +162 -0
  356. data/webapp/db/seeds.rb +7 -0
  357. data/webapp/log/development.log +167823 -0
  358. data/webapp/public/404.html +58 -0
  359. data/webapp/public/422.html +58 -0
  360. data/webapp/public/500.html +57 -0
  361. data/webapp/public/favicon.ico +0 -0
  362. data/webapp/public/robots.txt +5 -0
  363. data/webapp/test/controllers/analysis_controller_test.rb +14 -0
  364. data/webapp/test/controllers/automations_controller_test.rb +49 -0
  365. data/webapp/test/controllers/execs_controller_test.rb +9 -0
  366. data/webapp/test/controllers/executions_controller_test.rb +9 -0
  367. data/webapp/test/controllers/runs_controller_test.rb +7 -0
  368. data/webapp/test/controllers/scripts_controller_test.rb +9 -0
  369. data/webapp/test/controllers/settings_controller_test.rb +9 -0
  370. data/webapp/test/controllers/test_controller_test.rb +14 -0
  371. data/webapp/test/controllers/util_controller_test.rb +9 -0
  372. data/webapp/test/fixtures/users.yml +11 -0
  373. data/webapp/test/helpers/analysis_helper_test.rb +4 -0
  374. data/webapp/test/helpers/automations_helper_test.rb +4 -0
  375. data/webapp/test/helpers/execs_helper_test.rb +4 -0
  376. data/webapp/test/helpers/executions_helper_test.rb +4 -0
  377. data/webapp/test/helpers/runs_helper_test.rb +4 -0
  378. data/webapp/test/helpers/scripts_helper_test.rb +4 -0
  379. data/webapp/test/helpers/settings_helper_test.rb +4 -0
  380. data/webapp/test/helpers/test_helper_test.rb +4 -0
  381. data/webapp/test/helpers/util_helper_test.rb +4 -0
  382. data/webapp/test/models/user_test.rb +7 -0
  383. data/webapp/test/test_helper.rb +15 -0
  384. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/analysis.css.scssc +0 -0
  385. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/automations.css.scssc +0 -0
  386. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/execs.css.scssc +0 -0
  387. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/executions.css.scssc +0 -0
  388. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/scripts.css.scssc +0 -0
  389. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/settings.css.scssc +0 -0
  390. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/test.css.scssc +0 -0
  391. data/webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/util.css.scssc +0 -0
  392. data/webapp/tmp/cache/assets/development/sprockets/06a1cdb3d5472dd126cffc18f548c342 +0 -0
  393. data/webapp/tmp/cache/assets/development/sprockets/0dc0562647e703ca0535da3b9fcad796 +0 -0
  394. data/webapp/tmp/cache/assets/development/sprockets/113f1c71cb0f2a786729477989122982 +0 -0
  395. data/webapp/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  396. data/webapp/tmp/cache/assets/development/sprockets/151a1c6b128721d8923ba0c380a2af17 +0 -0
  397. data/webapp/tmp/cache/assets/development/sprockets/1722fb8a6daad566c8a6d5ef31969459 +0 -0
  398. data/webapp/tmp/cache/assets/development/sprockets/1a05555c46560c6b246aa0a996679bc6 +0 -0
  399. data/webapp/tmp/cache/assets/development/sprockets/1cb7fb6aa8bd1c2b7df8f7c52442e345 +0 -0
  400. data/webapp/tmp/cache/assets/development/sprockets/1d76f803b0a83adc5ea7e7c848657967 +0 -0
  401. data/webapp/tmp/cache/assets/development/sprockets/200152f95fc464d69c425ed8fdc2fbcc +0 -0
  402. data/webapp/tmp/cache/assets/development/sprockets/2049c8927ebd046c8a3291f81041d5f1 +0 -0
  403. data/webapp/tmp/cache/assets/development/sprockets/207907100aabd08a6767e39a95b364e3 +0 -0
  404. data/webapp/tmp/cache/assets/development/sprockets/249e2d4db815922fc72419c4a1407caf +0 -0
  405. data/webapp/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  406. data/webapp/tmp/cache/assets/development/sprockets/3034e4c334b1ebed9433e33050555f18 +0 -0
  407. data/webapp/tmp/cache/assets/development/sprockets/316c88d859cc3666044e51b1dd89e872 +0 -0
  408. data/webapp/tmp/cache/assets/development/sprockets/347f43d816178c8ba11a28a771696924 +0 -0
  409. data/webapp/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  410. data/webapp/tmp/cache/assets/development/sprockets/36ab92a3b8d527ed1eff0944b5f1263d +0 -0
  411. data/webapp/tmp/cache/assets/development/sprockets/3893b852ff196f05ff6ca8e38bb2237f +0 -0
  412. data/webapp/tmp/cache/assets/development/sprockets/3c358bd5fa32d151c7aa44971dd9b96f +0 -0
  413. data/webapp/tmp/cache/assets/development/sprockets/3ce88fad85146e0bed233f5419c24d29 +0 -0
  414. data/webapp/tmp/cache/assets/development/sprockets/3dabcb7c89677292e1e019a9bac446e5 +0 -0
  415. data/webapp/tmp/cache/assets/development/sprockets/4116fac01e6d379ede37af725a592477 +0 -0
  416. data/webapp/tmp/cache/assets/development/sprockets/42628e032b8f0b16a5ba01a1fcc7b6d7 +0 -0
  417. data/webapp/tmp/cache/assets/development/sprockets/437b258a98e8fe2c87fa8e24b7ce9abf +0 -0
  418. data/webapp/tmp/cache/assets/development/sprockets/43e98ed206f05738ae305e7e1b09a840 +0 -0
  419. data/webapp/tmp/cache/assets/development/sprockets/468da8933ba442b88b2f4b0e40c2ac30 +0 -0
  420. data/webapp/tmp/cache/assets/development/sprockets/48ef3fa68e9084c7cfa84e525decc318 +0 -0
  421. data/webapp/tmp/cache/assets/development/sprockets/4b68dcc030691297629a7156361018dc +0 -0
  422. data/webapp/tmp/cache/assets/development/sprockets/50368b1bd77c9130d821cbad89ab83ac +0 -0
  423. data/webapp/tmp/cache/assets/development/sprockets/511a980807b8d16fc3fb839991041865 +0 -0
  424. data/webapp/tmp/cache/assets/development/sprockets/516a0973874a73d0d15feec9448f7466 +0 -0
  425. data/webapp/tmp/cache/assets/development/sprockets/569e21b0ca1a230c7880f8d7a8b1febf +0 -0
  426. data/webapp/tmp/cache/assets/development/sprockets/5b5543d2ed5bed100f1739fc12ebf2c5 +0 -0
  427. data/webapp/tmp/cache/assets/development/sprockets/5c10dbffb918651dc0498579ba9a6853 +0 -0
  428. data/webapp/tmp/cache/assets/development/sprockets/5c366b5370316b3e9c03d1a58cb5eb44 +0 -0
  429. data/webapp/tmp/cache/assets/development/sprockets/5fcb9466e0d5cb0e31b35957fe2d3901 +0 -0
  430. data/webapp/tmp/cache/assets/development/sprockets/61da396fb86c5ecd844a2d83ac759b4b +0 -0
  431. data/webapp/tmp/cache/assets/development/sprockets/624ba87170059068845a4651b3cd2c7c +0 -0
  432. data/webapp/tmp/cache/assets/development/sprockets/6391f61b6121feda70da6d0a22520fdd +0 -0
  433. data/webapp/tmp/cache/assets/development/sprockets/653a981829c12a52bd57b7918168a148 +0 -0
  434. data/webapp/tmp/cache/assets/development/sprockets/66479793d9e5683d9f7fa67522d1962d +0 -0
  435. data/webapp/tmp/cache/assets/development/sprockets/69c589bd224ee0df5ab02e4568e0ab39 +0 -0
  436. data/webapp/tmp/cache/assets/development/sprockets/6dd7c564897b7e66eecbb180baeef2c6 +0 -0
  437. data/webapp/tmp/cache/assets/development/sprockets/6e2b92a4e6966cb78e63207bc7888391 +0 -0
  438. data/webapp/tmp/cache/assets/development/sprockets/70adb410f59a0edc5aea8c2b2ef8a441 +0 -0
  439. data/webapp/tmp/cache/assets/development/sprockets/72cbfd5bf33945bcce154f7a4feaf04d +0 -0
  440. data/webapp/tmp/cache/assets/development/sprockets/740ee9d355ada8cf5e9beb620f2cd5cc +0 -0
  441. data/webapp/tmp/cache/assets/development/sprockets/74770a22b5d1b0b3bc3527da83706f96 +0 -0
  442. data/webapp/tmp/cache/assets/development/sprockets/759bf97655af50852816720db7b59fcb +0 -0
  443. data/webapp/tmp/cache/assets/development/sprockets/76e9c19246c684413a02af695fa2b0bc +0 -0
  444. data/webapp/tmp/cache/assets/development/sprockets/7728beeace48ca12e336d2bce0158871 +0 -0
  445. data/webapp/tmp/cache/assets/development/sprockets/77f49730c7b689f75a2e174fbd3ace2a +0 -0
  446. data/webapp/tmp/cache/assets/development/sprockets/78021a57030fd36cf82699aad9910b26 +0 -0
  447. data/webapp/tmp/cache/assets/development/sprockets/796b349b06da691fe5f069f9e3947fcb +0 -0
  448. data/webapp/tmp/cache/assets/development/sprockets/79e7505c70697cc7d34d4a8351c3b840 +0 -0
  449. data/webapp/tmp/cache/assets/development/sprockets/7b2b7d9034fc7b77daf5da1436667e6f +0 -0
  450. data/webapp/tmp/cache/assets/development/sprockets/7c2ea2ca2cdd89b062bf23f44e8f599c +0 -0
  451. data/webapp/tmp/cache/assets/development/sprockets/7ea112af55e6df12cdff377052b71420 +0 -0
  452. data/webapp/tmp/cache/assets/development/sprockets/7f27632588dd316836b009a621c0176c +0 -0
  453. data/webapp/tmp/cache/assets/development/sprockets/7fcef9f644290dea8d0e4bf13f6bb8e9 +0 -0
  454. data/webapp/tmp/cache/assets/development/sprockets/81c6bf67419a29257ed79f442c24907d +0 -0
  455. data/webapp/tmp/cache/assets/development/sprockets/83656ce9260eb473c1654420e0180167 +0 -0
  456. data/webapp/tmp/cache/assets/development/sprockets/83e8bdddefc2dce069b56e6650135397 +0 -0
  457. data/webapp/tmp/cache/assets/development/sprockets/880c796f41e5d67ae68ed239acfc91e3 +0 -0
  458. data/webapp/tmp/cache/assets/development/sprockets/8c1c39dd537d2c9990fe9c70a5646b06 +0 -0
  459. data/webapp/tmp/cache/assets/development/sprockets/8d763042da5254015767385ce324b348 +0 -0
  460. data/webapp/tmp/cache/assets/development/sprockets/91e1ccbf65ff4d9b0f42b1159796bcf2 +0 -0
  461. data/webapp/tmp/cache/assets/development/sprockets/92cdfac7698b6bb68983cf317c1cedef +0 -0
  462. data/webapp/tmp/cache/assets/development/sprockets/94cab8cbc120e152ce4c444492a3fc1d +0 -0
  463. data/webapp/tmp/cache/assets/development/sprockets/96b918c3c041b6a089c8adc870fa3aaa +0 -0
  464. data/webapp/tmp/cache/assets/development/sprockets/97cbe306627b432ab3bfb52416690d1d +0 -0
  465. data/webapp/tmp/cache/assets/development/sprockets/98da83d396c0c00eb03937ecbc2e6bfa +0 -0
  466. data/webapp/tmp/cache/assets/development/sprockets/9db04db20ec9c4a0f84ed01caa5e6e2b +0 -0
  467. data/webapp/tmp/cache/assets/development/sprockets/9dc1c251f50c828fae95d6107619c53e +0 -0
  468. data/webapp/tmp/cache/assets/development/sprockets/9e91711ab34bbf89ad1cfb4351027d36 +0 -0
  469. data/webapp/tmp/cache/assets/development/sprockets/9f587881f98b328b656e6456178418b5 +0 -0
  470. data/webapp/tmp/cache/assets/development/sprockets/9fc981560caba00621bb95d0974ad076 +0 -0
  471. data/webapp/tmp/cache/assets/development/sprockets/9fd4385f8fda99f3ddd3f133a89231d1 +0 -0
  472. data/webapp/tmp/cache/assets/development/sprockets/a32ab71649e3db15eca95bcc3a7588da +0 -0
  473. data/webapp/tmp/cache/assets/development/sprockets/a497c976969bdbb1f69875358d39d3b5 +0 -0
  474. data/webapp/tmp/cache/assets/development/sprockets/b06058d455770c1d9db6b6670bc4bf4d +0 -0
  475. data/webapp/tmp/cache/assets/development/sprockets/b3da405f1e68470ad6146a1322f2438c +0 -0
  476. data/webapp/tmp/cache/assets/development/sprockets/b4ba5853663f6721d15942ce08dd76bf +0 -0
  477. data/webapp/tmp/cache/assets/development/sprockets/b6f1534bcdbff92a16c85487f363235a +0 -0
  478. data/webapp/tmp/cache/assets/development/sprockets/b9c57b9750f8af3551b1a5d9e27f0a92 +0 -0
  479. data/webapp/tmp/cache/assets/development/sprockets/bb5be6a0ee889a15214e2442aee8c6e1 +0 -0
  480. data/webapp/tmp/cache/assets/development/sprockets/bc80a81b2d67b5ad40f3c7a2bb6e6f22 +0 -0
  481. data/webapp/tmp/cache/assets/development/sprockets/bfaba27d5ce71d292f453659b0755511 +0 -0
  482. data/webapp/tmp/cache/assets/development/sprockets/bfac6cd2984fbd5e0d762389e3c37164 +0 -0
  483. data/webapp/tmp/cache/assets/development/sprockets/c17bec9e3b5db6d8385c3d6eb362e628 +0 -0
  484. data/webapp/tmp/cache/assets/development/sprockets/c1a9eceddc0a1e41eb2992e9204f71e6 +0 -0
  485. data/webapp/tmp/cache/assets/development/sprockets/c50cd87be040044504b5c3fde1047e24 +0 -0
  486. data/webapp/tmp/cache/assets/development/sprockets/c5907cfd07b24ad19b8c80e8af618a57 +0 -0
  487. data/webapp/tmp/cache/assets/development/sprockets/c8da5594caf845a183dd1c6cd45c5433 +0 -0
  488. data/webapp/tmp/cache/assets/development/sprockets/cbc6968ed49fa14db439a64dd0a46abc +0 -0
  489. data/webapp/tmp/cache/assets/development/sprockets/cedf710ee090647b81c08675583eca62 +0 -0
  490. data/webapp/tmp/cache/assets/development/sprockets/cf1e3cebfad43293c3c470a5e437ebc9 +0 -0
  491. data/webapp/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  492. data/webapp/tmp/cache/assets/development/sprockets/d5a14f86bb4b422fdd8eb4722d966c9a +0 -0
  493. data/webapp/tmp/cache/assets/development/sprockets/d66b9cdd3230f9e5354e495e17097c49 +0 -0
  494. data/webapp/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  495. data/webapp/tmp/cache/assets/development/sprockets/dfa0ed87d851222fe58ada385e3f037d +0 -0
  496. data/webapp/tmp/cache/assets/development/sprockets/e1aa402390382db4d97b27cb094485fa +0 -0
  497. data/webapp/tmp/cache/assets/development/sprockets/e4f1db35ef9d9fbbf53252a44e381eb8 +0 -0
  498. data/webapp/tmp/cache/assets/development/sprockets/e57eb6c1ad51fd8c13afc0e719a259b5 +0 -0
  499. data/webapp/tmp/cache/assets/development/sprockets/e7c37b542e914e392ec326190cea1aa2 +0 -0
  500. data/webapp/tmp/cache/assets/development/sprockets/e923d7e19c216d4a924831f3896e007a +0 -0
  501. data/webapp/tmp/cache/assets/development/sprockets/e96a414a621483bbc89e73f11be5e7b4 +0 -0
  502. data/webapp/tmp/cache/assets/development/sprockets/eafcfc3d2561c18743c1b32f0f710c68 +0 -0
  503. data/webapp/tmp/cache/assets/development/sprockets/ecdd630f5466d45a2afa7515aaa5fc3b +0 -0
  504. data/webapp/tmp/cache/assets/development/sprockets/ee60a0a35d60cff425373970547694bd +0 -0
  505. data/webapp/tmp/cache/assets/development/sprockets/eee2c36b75709b0c3797c2a151fdd5d3 +0 -0
  506. data/webapp/tmp/cache/assets/development/sprockets/f104b66c0f89b453d0c8c73980fbab18 +0 -0
  507. data/webapp/tmp/cache/assets/development/sprockets/f26d1bc86590415685e9836ad75d1774 +0 -0
  508. data/webapp/tmp/cache/assets/development/sprockets/f4081e868eb565527099dba2c9d8c4de +0 -0
  509. data/webapp/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  510. data/webapp/tmp/cache/assets/development/sprockets/f813030b97e30415ad276bbd1f7e1fb4 +0 -0
  511. data/webapp/tmp/cache/assets/development/sprockets/f8e3e28bc9640c25da58aea46c3ac4b3 +0 -0
  512. data/webapp/tmp/cache/assets/development/sprockets/f9169d0a8b70eaf95de52b3c6ad51105 +0 -0
  513. data/webapp/tmp/cache/assets/development/sprockets/f939450f7a481e3fbeb158b81b39c624 +0 -0
  514. data/webapp/tmp/cache/assets/development/sprockets/fce73296b8298ac4c74b3e95cde4dfdb +0 -0
  515. metadata +941 -0
metadata ADDED
@@ -0,0 +1,941 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cloud-toaster
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Waldemar Hummer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: uglifier
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: coffee-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ! '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jquery-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: turbolinks
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: jbuilder
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: sdoc
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ! '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ! '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: devise
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ! '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ! '>='
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: thin
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ! '>='
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ! '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: hashdiff
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :runtime
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ! '>='
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: json
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ! '>='
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ! '>='
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: jsonpath
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ! '>='
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ! '>='
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ - !ruby/object:Gem::Dependency
210
+ name: open4
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ! '>='
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ! '>='
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ - !ruby/object:Gem::Dependency
224
+ name: chef
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ! '>='
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ! '>='
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: ohai
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ! '>='
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ type: :runtime
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - ! '>='
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
251
+ - !ruby/object:Gem::Dependency
252
+ name: rspec
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ! '>='
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ type: :runtime
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ! '>='
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
265
+ - !ruby/object:Gem::Dependency
266
+ name: ruby_parser
267
+ requirement: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - ! '>='
270
+ - !ruby/object:Gem::Version
271
+ version: '0'
272
+ type: :runtime
273
+ prerelease: false
274
+ version_requirements: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - ! '>='
277
+ - !ruby/object:Gem::Version
278
+ version: '0'
279
+ - !ruby/object:Gem::Dependency
280
+ name: bson_ext
281
+ requirement: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - ! '>='
284
+ - !ruby/object:Gem::Version
285
+ version: '0'
286
+ type: :runtime
287
+ prerelease: false
288
+ version_requirements: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - ! '>='
291
+ - !ruby/object:Gem::Version
292
+ version: '0'
293
+ - !ruby/object:Gem::Dependency
294
+ name: tidy
295
+ requirement: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - ! '>='
298
+ - !ruby/object:Gem::Version
299
+ version: '0'
300
+ type: :runtime
301
+ prerelease: false
302
+ version_requirements: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - ! '>='
305
+ - !ruby/object:Gem::Version
306
+ version: '0'
307
+ - !ruby/object:Gem::Dependency
308
+ name: diffy
309
+ requirement: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - ! '>='
312
+ - !ruby/object:Gem::Version
313
+ version: '0'
314
+ type: :runtime
315
+ prerelease: false
316
+ version_requirements: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - ! '>='
319
+ - !ruby/object:Gem::Version
320
+ version: '0'
321
+ - !ruby/object:Gem::Dependency
322
+ name: mysql2
323
+ requirement: !ruby/object:Gem::Requirement
324
+ requirements:
325
+ - - ! '>='
326
+ - !ruby/object:Gem::Version
327
+ version: '0'
328
+ type: :runtime
329
+ prerelease: false
330
+ version_requirements: !ruby/object:Gem::Requirement
331
+ requirements:
332
+ - - ! '>='
333
+ - !ruby/object:Gem::Version
334
+ version: '0'
335
+ - !ruby/object:Gem::Dependency
336
+ name: therubyracer
337
+ requirement: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - ! '>='
340
+ - !ruby/object:Gem::Version
341
+ version: '0'
342
+ type: :runtime
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - ! '>='
347
+ - !ruby/object:Gem::Version
348
+ version: '0'
349
+ - !ruby/object:Gem::Dependency
350
+ name: railties
351
+ requirement: !ruby/object:Gem::Requirement
352
+ requirements:
353
+ - - ! '>='
354
+ - !ruby/object:Gem::Version
355
+ version: '0'
356
+ type: :runtime
357
+ prerelease: false
358
+ version_requirements: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - ! '>='
361
+ - !ruby/object:Gem::Version
362
+ version: '0'
363
+ - !ruby/object:Gem::Dependency
364
+ name: activesupport
365
+ requirement: !ruby/object:Gem::Requirement
366
+ requirements:
367
+ - - ! '>='
368
+ - !ruby/object:Gem::Version
369
+ version: '0'
370
+ type: :runtime
371
+ prerelease: false
372
+ version_requirements: !ruby/object:Gem::Requirement
373
+ requirements:
374
+ - - ! '>='
375
+ - !ruby/object:Gem::Version
376
+ version: '0'
377
+ - !ruby/object:Gem::Dependency
378
+ name: bundler
379
+ requirement: !ruby/object:Gem::Requirement
380
+ requirements:
381
+ - - ! '>='
382
+ - !ruby/object:Gem::Version
383
+ version: '0'
384
+ type: :runtime
385
+ prerelease: false
386
+ version_requirements: !ruby/object:Gem::Requirement
387
+ requirements:
388
+ - - ! '>='
389
+ - !ruby/object:Gem::Version
390
+ version: '0'
391
+ description: A tool for automated testing and debugging of automation scripts (e.g.,
392
+ Chef).
393
+ email:
394
+ - hummer@infosys.tuwien.ac.at
395
+ executables:
396
+ - toaster
397
+ extensions: []
398
+ extra_rdoc_files:
399
+ - LICENSE
400
+ - Rakefile
401
+ - README.md
402
+ - VERSION
403
+ files:
404
+ - lib/toaster/chef/chef_node_inspector.rb
405
+ - lib/toaster/chef/chef_util.rb
406
+ - lib/toaster/chef/failsafe_resource_parser.rb
407
+ - lib/toaster/chef/resource_inspector.rb
408
+ - lib/toaster/chef/chef_listener.rb
409
+ - lib/toaster/ohai/iptables/iptables.rb
410
+ - lib/toaster/ohai/mounts/mounts.rb
411
+ - lib/toaster/ohai/ports/ports.rb
412
+ - lib/toaster/ohai/services/services.rb
413
+ - lib/toaster/ohai/mysql/mysql.rb
414
+ - lib/toaster/ohai/files/files.rb
415
+ - lib/toaster/ohai/files/_meta.rb
416
+ - lib/toaster/ohai/routes/routes.rb
417
+ - lib/toaster/ohai/cron/cron.rb
418
+ - lib/toaster/ohai/_disabled_/network_ports.rb
419
+ - lib/toaster/ohai/packages/packages.rb
420
+ - lib/toaster/ohai/packages/_meta.rb
421
+ - lib/toaster/ohai/groups/groups.rb
422
+ - lib/toaster/ohai/gems/gems.rb
423
+ - lib/toaster/ohai/users/users.rb
424
+ - lib/toaster/ohai/apache/apache.rb
425
+ - lib/toaster/util/proxy.rb
426
+ - lib/toaster/util/combinatorial.rb
427
+ - lib/toaster/util/logging.rb
428
+ - lib/toaster/util/blocking_map.rb
429
+ - lib/toaster/util/config.rb
430
+ - lib/toaster/util/docker.rb
431
+ - lib/toaster/util/mem_dump.rb
432
+ - lib/toaster/util/util.rb
433
+ - lib/toaster/util/lxc.rb
434
+ - lib/toaster/util/timestamp.rb
435
+ - lib/toaster/test/test_result.rb
436
+ - lib/toaster/test/test_attribute.rb
437
+ - lib/toaster/test/test_case.rb
438
+ - lib/toaster/test/test_runner.rb
439
+ - lib/toaster/test/test_generator.rb
440
+ - lib/toaster/test/test_coverage.rb
441
+ - lib/toaster/test/test_orchestrator.rb
442
+ - lib/toaster/test/test_coverage_goal.rb
443
+ - lib/toaster/test/test_suite.rb
444
+ - lib/toaster/test_manager.rb
445
+ - lib/toaster/model/automation.rb
446
+ - lib/toaster/model/ignore_property.rb
447
+ - lib/toaster/model/additional_property.rb
448
+ - lib/toaster/model/task_execution.rb
449
+ - lib/toaster/model/automation_attribute.rb
450
+ - lib/toaster/model/key_value_pair.rb
451
+ - lib/toaster/model/task.rb
452
+ - lib/toaster/model/automation_run.rb
453
+ - lib/toaster/model/run_attribute.rb
454
+ - lib/toaster/model/user.rb
455
+ - lib/toaster/model/state_change.rb
456
+ - lib/toaster/model/task_parameter.rb
457
+ - lib/toaster/model/state.rb
458
+ - lib/toaster/db/cached_db.rb
459
+ - lib/toaster/db/cgi_session_cache.rb
460
+ - lib/toaster/db/ram_cache.rb
461
+ - lib/toaster/db/db.rb
462
+ - lib/toaster/db/cache.rb
463
+ - lib/toaster/db/mysql.rb
464
+ - lib/toaster/web_ui.rb
465
+ - lib/toaster/markup/vmtools-utils-0.5.jar
466
+ - lib/toaster/markup/jdom-b7.jar
467
+ - lib/toaster/markup/xmldiff.sh
468
+ - lib/toaster/markup/jdom-1.1.jar
469
+ - lib/toaster/markup/markup_util.rb
470
+ - lib/toaster/toaster_app_service.rb
471
+ - lib/toaster/state/ptrace_util.rb
472
+ - lib/toaster/state/idempotence.rb
473
+ - lib/toaster/state/state_transition.rb
474
+ - lib/toaster/state/system_state.rb
475
+ - lib/toaster/state/syscall_tracer.rb
476
+ - lib/toaster/state/convergence.rb
477
+ - lib/toaster/state/state_node.rb
478
+ - lib/toaster/state/state_transition_graph.rb
479
+ - lib/toaster/state/transition_edge.rb
480
+ - lib/toaster/api.rb
481
+ - bin/toaster
482
+ - bin/strace-4.8_patched/strace-x86_64
483
+ - bin/strace-4.8_patched/strace-i686
484
+ - chef/cookbooks/toaster/recipes/pre__drbd__default.rb
485
+ - chef/cookbooks/toaster/recipes/testing_post.rb
486
+ - chef/cookbooks/toaster/recipes/pre__php__default.rb
487
+ - chef/cookbooks/toaster/recipes/pre__disco__default.rb
488
+ - chef/cookbooks/toaster/recipes/post__node__default.rb
489
+ - chef/cookbooks/toaster/recipes/pre__munin__server.rb
490
+ - chef/cookbooks/toaster/recipes/pre__riak__default.rb
491
+ - chef/cookbooks/toaster/recipes/pre__solr__default.rb
492
+ - chef/cookbooks/toaster/recipes/pre__aegir__default.rb
493
+ - chef/cookbooks/toaster/recipes/pre__sensu__default.rb
494
+ - chef/cookbooks/toaster/recipes/pre__pxe_install_server__default.rb
495
+ - chef/cookbooks/toaster/recipes/pre__elasticsearch-head__default.rb
496
+ - chef/cookbooks/toaster/recipes/pre__cube__default.rb
497
+ - chef/cookbooks/toaster/recipes/pre__postgresql__server.rb
498
+ - chef/cookbooks/toaster/recipes/pre__wordpress__default.rb
499
+ - chef/cookbooks/toaster/recipes/pre__eaccelerator__default.rb
500
+ - chef/cookbooks/toaster/recipes/pre__mysql__server.rb
501
+ - chef/cookbooks/toaster/recipes/post__icinga__default.rb
502
+ - chef/cookbooks/toaster/recipes/pre__znc__default.rb
503
+ - chef/cookbooks/toaster/recipes/pre__app__default.rb
504
+ - chef/cookbooks/toaster/recipes/post__drupal__default.rb
505
+ - chef/cookbooks/toaster/recipes/pre__kafka__default.rb
506
+ - chef/cookbooks/toaster/recipes/pre__cakephp__default.rb
507
+ - chef/cookbooks/toaster/recipes/pre__xen__default.rb
508
+ - chef/cookbooks/toaster/recipes/post__cakephp__default.rb
509
+ - chef/cookbooks/toaster/recipes/pre__storm__default.rb
510
+ - chef/cookbooks/toaster/recipes/pre__sol__default.rb
511
+ - chef/cookbooks/toaster/recipes/post__cube__default.rb
512
+ - chef/cookbooks/toaster/recipes/pre__gitosis__default.rb
513
+ - chef/cookbooks/toaster/recipes/post__virtualbox__default.rb
514
+ - chef/cookbooks/toaster/recipes/testing.rb
515
+ - chef/cookbooks/toaster/recipes/pre__elasticsearch__default.rb
516
+ - chef/cookbooks/toaster/recipes/pre__netkernel__default.rb
517
+ - chef/cookbooks/toaster/recipes/pre__pxe_dust__default.rb
518
+ - chef/cookbooks/toaster/recipes/pre__sonar__default.rb
519
+ - chef/cookbooks/toaster/recipes/pre__vmware__tools.rb
520
+ - chef/cookbooks/toaster/recipes/pre__nagios__default.rb
521
+ - chef/cookbooks/toaster/recipes/post__wordpress__default.rb
522
+ - chef/cookbooks/toaster/libraries/default.rb
523
+ - chef/cookbooks/toaster/attributes/testing.rb
524
+ - chef/cookbooks/yum-mysql-community/metadata.rb
525
+ - chef/cookbooks/yum-mysql-community/recipes/connectors.rb
526
+ - chef/cookbooks/yum-mysql-community/recipes/mysql55.rb
527
+ - chef/cookbooks/yum-mysql-community/recipes/mysql56.rb
528
+ - chef/cookbooks/yum-mysql-community/files/default/mysql_pubkey.asc
529
+ - chef/cookbooks/yum-mysql-community/attributes/mysql56-community.rb
530
+ - chef/cookbooks/yum-mysql-community/attributes/mysql55-community.rb
531
+ - chef/cookbooks/yum-mysql-community/attributes/mysql-connectors-community.rb
532
+ - chef/cookbooks/yum-mysql-community/metadata.json
533
+ - chef/cookbooks/yum-mysql-community/CHANGELOG.md
534
+ - chef/cookbooks/yum-mysql-community/README.md
535
+ - chef/cookbooks/mysql/metadata.rb
536
+ - chef/cookbooks/mysql/recipes/client.rb
537
+ - chef/cookbooks/mysql/recipes/server_deprecated.rb
538
+ - chef/cookbooks/mysql/recipes/server.rb
539
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_omnios.rb
540
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_smartos.rb
541
+ - chef/cookbooks/mysql/libraries/provider_mysql_service.rb
542
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_freebsd.rb
543
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_fedora.rb
544
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_suse.rb
545
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_freebsd.rb
546
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_ubuntu.rb
547
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_rhel.rb
548
+ - chef/cookbooks/mysql/libraries/resource_mysql_service.rb
549
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_suse.rb
550
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_debian.rb
551
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_smartos.rb
552
+ - chef/cookbooks/mysql/libraries/provider_mysql_client.rb
553
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_debian.rb
554
+ - chef/cookbooks/mysql/libraries/matchers.rb
555
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_fedora.rb
556
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_omnios.rb
557
+ - chef/cookbooks/mysql/libraries/helpers.rb
558
+ - chef/cookbooks/mysql/libraries/provider_mysql_service_rhel.rb
559
+ - chef/cookbooks/mysql/libraries/resource_mysql_client.rb
560
+ - chef/cookbooks/mysql/libraries/provider_mysql_client_ubuntu.rb
561
+ - chef/cookbooks/mysql/templates/default/5.6/my.cnf.erb
562
+ - chef/cookbooks/mysql/templates/default/omnios/mysql.xml.erb
563
+ - chef/cookbooks/mysql/templates/default/omnios/svc.method.mysqld.erb
564
+ - chef/cookbooks/mysql/templates/default/grants/grants.sql.erb
565
+ - chef/cookbooks/mysql/templates/default/debian/mysql-server.seed.erb
566
+ - chef/cookbooks/mysql/templates/default/debian/debian.cnf.erb
567
+ - chef/cookbooks/mysql/templates/default/5.0/my.cnf.erb
568
+ - chef/cookbooks/mysql/templates/default/5.5/my.cnf.erb
569
+ - chef/cookbooks/mysql/templates/default/smartos/mysql.xml.erb
570
+ - chef/cookbooks/mysql/templates/default/smartos/svc.method.mysqld.erb
571
+ - chef/cookbooks/mysql/templates/default/apparmor/usr.sbin.mysqld.erb
572
+ - chef/cookbooks/mysql/templates/default/5.1/my.cnf.erb
573
+ - chef/cookbooks/mysql/templates/default/deprecated/my.cnf.erb
574
+ - chef/cookbooks/mysql/attributes/default.rb
575
+ - chef/cookbooks/mysql/metadata.json
576
+ - chef/cookbooks/mysql/CHANGELOG.md
577
+ - chef/cookbooks/mysql/README.md
578
+ - chef/cookbooks/yum/providers/globalconfig.rb
579
+ - chef/cookbooks/yum/providers/repository.rb
580
+ - chef/cookbooks/yum/resources/globalconfig.rb
581
+ - chef/cookbooks/yum/resources/repository.rb
582
+ - chef/cookbooks/yum/metadata.rb
583
+ - chef/cookbooks/yum/recipes/default.rb
584
+ - chef/cookbooks/yum/libraries/matchers.rb
585
+ - chef/cookbooks/yum/templates/default/repo.erb
586
+ - chef/cookbooks/yum/templates/default/main.erb
587
+ - chef/cookbooks/yum/attributes/main.rb
588
+ - chef/cookbooks/yum/metadata.json
589
+ - chef/cookbooks/yum/CHANGELOG.md
590
+ - chef/cookbooks/yum/README.md
591
+ - chef/cookbooks/ssh/recipes/authorize_key.rb
592
+ - chef/cookbooks/ssh/attributes/default.rb
593
+ - chef/cookbooks/openssl/metadata.rb
594
+ - chef/cookbooks/openssl/recipes/default.rb
595
+ - chef/cookbooks/openssl/libraries/secure_password.rb
596
+ - chef/cookbooks/openssl/metadata.json
597
+ - chef/cookbooks/openssl/README.md
598
+ - chef/cookbooks/lxc/recipes/init_bare_os.rb
599
+ - chef/cookbooks/lxc/recipes/setup_host.rb
600
+ - chef/cookbooks/lxc/recipes/setup_database.rb
601
+ - chef/cookbooks/lxc/recipes/mount_volume.rb
602
+ - chef/cookbooks/lxc/recipes/install_ruby.rb
603
+ - chef/cookbooks/lxc/recipes/create_lxc.rb
604
+ - chef/cookbooks/lxc/recipes/install_docker.rb
605
+ - chef/cookbooks/lxc/recipes/init_proto.rb
606
+ - chef/cookbooks/lxc/recipes/stop_lxc.rb
607
+ - chef/cookbooks/lxc/recipes/start_lxc.rb
608
+ - chef/cookbooks/lxc/recipes/setup_proxy.rb
609
+ - chef/cookbooks/lxc/files/install.chef.sh
610
+ - chef/cookbooks/lxc/attributes/init_bare_os.rb
611
+ - chef/cookbooks/lxc/attributes/general.rb
612
+ - chef/cookbooks/lxc/attributes/setup_host.rb
613
+ - chef/cookbooks/lxc/attributes/mount_volume.rb
614
+ - chef/cookbooks/lxc/attributes/install_ruby.rb
615
+ - chef/cookbooks/lxc/attributes/create_lxc.rb
616
+ - chef/cookbooks/lxc/attributes/init_proto.rb
617
+ - chef/cookbooks/lxc/attributes/stop_lxc.rb
618
+ - chef/cookbooks/lxc/attributes/start_lxc.rb
619
+ - chef/cookbooks/lxc/attributes/setup_proxy.rb
620
+ - chef/cookbooks/lxc/metadata.json
621
+ - chef/cookbooks/chef-solo-search/Gemfile
622
+ - chef/cookbooks/chef-solo-search/metadata.rb
623
+ - chef/cookbooks/chef-solo-search/Rakefile
624
+ - chef/cookbooks/chef-solo-search/CHANGELOG
625
+ - chef/cookbooks/chef-solo-search/tests/gemfiles/Gemfile.11
626
+ - chef/cookbooks/chef-solo-search/tests/gemfiles/Gemfile.10
627
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/node/alpha.json
628
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/node/without_json_class.json
629
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/node/beta.json
630
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/users/tom.json
631
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/users/jerry.json
632
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/users/lea.json
633
+ - chef/cookbooks/chef-solo-search/tests/data/data_bags/users/mike.json
634
+ - chef/cookbooks/chef-solo-search/tests/test_data_bags.rb
635
+ - chef/cookbooks/chef-solo-search/tests/test_search.rb
636
+ - chef/cookbooks/chef-solo-search/recipes/default.rb
637
+ - chef/cookbooks/chef-solo-search/libraries/search.rb
638
+ - chef/cookbooks/chef-solo-search/libraries/vendor/chef/solr_query/query_transform.rb
639
+ - chef/cookbooks/chef-solo-search/libraries/vendor/chef/solr_query/lucene.treetop
640
+ - chef/cookbooks/chef-solo-search/libraries/vendor/chef/solr_query/lucene_nodes.rb
641
+ - chef/cookbooks/chef-solo-search/libraries/search/parser.rb
642
+ - chef/cookbooks/chef-solo-search/libraries/search/overrides.rb
643
+ - chef/cookbooks/chef-solo-search/NOTICE
644
+ - chef/cookbooks/chef-solo-search/LICENSE
645
+ - chef/cookbooks/chef-solo-search/README.md
646
+ - webapp/Gemfile
647
+ - webapp/Rakefile
648
+ - webapp/app/views/analysis/idempotence.html.erb
649
+ - webapp/app/views/analysis/convergence.html.erb
650
+ - webapp/app/views/settings/containers.html.erb
651
+ - webapp/app/views/settings/index.html.erb
652
+ - webapp/app/views/util/chef.html.erb
653
+ - webapp/app/views/test/suites.html.erb
654
+ - webapp/app/views/test/gen.html.erb
655
+ - webapp/app/views/test/cases.html.erb
656
+ - webapp/app/views/scripts/tasks.html.erb
657
+ - webapp/app/views/scripts/import_chef.html.erb
658
+ - webapp/app/views/scripts/scripts.html.erb
659
+ - webapp/app/views/scripts/graph.html.erb
660
+ - webapp/app/views/scripts/edit.html.erb
661
+ - webapp/app/views/layouts/application.html.erb
662
+ - webapp/app/views/graph/graph_frame.html
663
+ - webapp/app/views/execs/task_executions.html.erb
664
+ - webapp/app/views/execs/automation_runs.html.erb
665
+ - webapp/app/helpers/settings_helper.rb
666
+ - webapp/app/helpers/execs_helper.rb
667
+ - webapp/app/helpers/util_helper.rb
668
+ - webapp/app/helpers/test_helper.rb
669
+ - webapp/app/helpers/analysis_helper.rb
670
+ - webapp/app/helpers/automations_helper.rb
671
+ - webapp/app/helpers/application_helper.rb
672
+ - webapp/app/helpers/scripts_helper.rb
673
+ - webapp/app/assets/images/ui-bg_glass_75_e6e6e6_1x400.png
674
+ - webapp/app/assets/images/ui-icons_222222_256x240.png
675
+ - webapp/app/assets/images/loading.gif
676
+ - webapp/app/assets/images/initial_state.gif
677
+ - webapp/app/assets/images/ui-bg_flat_75_ffffff_40x100.png
678
+ - webapp/app/assets/images/final_state.gif
679
+ - webapp/app/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png
680
+ - webapp/app/assets/images/ui-bg_glass_65_ffffff_1x400.png
681
+ - webapp/app/assets/images/ui-bg_glass_75_dadada_1x400.png
682
+ - webapp/app/assets/images/ui-bg_glass_55_fbf9ee_1x400.png
683
+ - webapp/app/assets/images/ui-bg_glass_95_fef1ec_1x400.png
684
+ - webapp/app/assets/fonts/font.woff
685
+ - webapp/app/assets/stylesheets/settings.css.scss
686
+ - webapp/app/assets/stylesheets/util.css.scss
687
+ - webapp/app/assets/stylesheets/menu.css
688
+ - webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.ttf
689
+ - webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.eot
690
+ - webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.svg
691
+ - webapp/app/assets/stylesheets/websymbols/websymbols-regular-webfont.woff
692
+ - webapp/app/assets/stylesheets/test.css.scss
693
+ - webapp/app/assets/stylesheets/graph.css
694
+ - webapp/app/assets/stylesheets/execs.css.scss
695
+ - webapp/app/assets/stylesheets/layout.css
696
+ - webapp/app/assets/stylesheets/scripts.css.scss
697
+ - webapp/app/assets/stylesheets/jquery-ui-1.8.6.custom.css
698
+ - webapp/app/assets/stylesheets/application.css
699
+ - webapp/app/assets/stylesheets/reset.css
700
+ - webapp/app/assets/stylesheets/analysis.css.scss
701
+ - webapp/app/assets/javascripts/jquery.cookie.js
702
+ - webapp/app/assets/javascripts/execs.js.coffee
703
+ - webapp/app/assets/javascripts/test.js.coffee
704
+ - webapp/app/assets/javascripts/jstree.util.js
705
+ - webapp/app/assets/javascripts/jsPlumb/jquery.jsPlumb-1.3.14-all-min.js
706
+ - webapp/app/assets/javascripts/util.js.coffee
707
+ - webapp/app/assets/javascripts/jquery.jstree.js
708
+ - webapp/app/assets/javascripts/analysis.js.coffee
709
+ - webapp/app/assets/javascripts/jquery-ui-1.8.22.js
710
+ - webapp/app/assets/javascripts/settings.js.coffee
711
+ - webapp/app/assets/javascripts/graph.js
712
+ - webapp/app/assets/javascripts/scripts.js.coffee
713
+ - webapp/app/assets/javascripts/jquery-1.7.2.js
714
+ - webapp/app/assets/javascripts/application.js
715
+ - webapp/app/assets/javascripts/jquery.hotkeys.js
716
+ - webapp/app/controllers/test_controller.rb
717
+ - webapp/app/controllers/util_controller.rb
718
+ - webapp/app/controllers/graph_controller.rb
719
+ - webapp/app/controllers/settings_controller.rb
720
+ - webapp/app/controllers/execs_controller.rb
721
+ - webapp/app/controllers/application_controller.rb
722
+ - webapp/app/controllers/scripts_controller.rb
723
+ - webapp/app/controllers/base_controller.rb
724
+ - webapp/app/controllers/analysis_controller.rb
725
+ - webapp/public/500.html
726
+ - webapp/public/robots.txt
727
+ - webapp/public/favicon.ico
728
+ - webapp/public/404.html
729
+ - webapp/public/422.html
730
+ - webapp/test/fixtures/users.yml
731
+ - webapp/test/models/user_test.rb
732
+ - webapp/test/helpers/executions_helper_test.rb
733
+ - webapp/test/helpers/automations_helper_test.rb
734
+ - webapp/test/helpers/test_helper_test.rb
735
+ - webapp/test/helpers/settings_helper_test.rb
736
+ - webapp/test/helpers/util_helper_test.rb
737
+ - webapp/test/helpers/runs_helper_test.rb
738
+ - webapp/test/helpers/execs_helper_test.rb
739
+ - webapp/test/helpers/scripts_helper_test.rb
740
+ - webapp/test/helpers/analysis_helper_test.rb
741
+ - webapp/test/test_helper.rb
742
+ - webapp/test/controllers/execs_controller_test.rb
743
+ - webapp/test/controllers/settings_controller_test.rb
744
+ - webapp/test/controllers/analysis_controller_test.rb
745
+ - webapp/test/controllers/executions_controller_test.rb
746
+ - webapp/test/controllers/scripts_controller_test.rb
747
+ - webapp/test/controllers/util_controller_test.rb
748
+ - webapp/test/controllers/runs_controller_test.rb
749
+ - webapp/test/controllers/automations_controller_test.rb
750
+ - webapp/test/controllers/test_controller_test.rb
751
+ - webapp/db/development.sqlite3
752
+ - webapp/db/seeds.rb
753
+ - webapp/db/migrate/20140624002037_devise_create_users.rb
754
+ - webapp/db/migrate/20140628002058_create_all_tables.rb
755
+ - webapp/db/schema.rb
756
+ - webapp/config.ru
757
+ - webapp/log/development.log
758
+ - webapp/bin/rails
759
+ - webapp/bin/rake
760
+ - webapp/bin/bundle
761
+ - webapp/tmp/cache/assets/development/sprockets/b9c57b9750f8af3551b1a5d9e27f0a92
762
+ - webapp/tmp/cache/assets/development/sprockets/8c1c39dd537d2c9990fe9c70a5646b06
763
+ - webapp/tmp/cache/assets/development/sprockets/cbc6968ed49fa14db439a64dd0a46abc
764
+ - webapp/tmp/cache/assets/development/sprockets/96b918c3c041b6a089c8adc870fa3aaa
765
+ - webapp/tmp/cache/assets/development/sprockets/e96a414a621483bbc89e73f11be5e7b4
766
+ - webapp/tmp/cache/assets/development/sprockets/0dc0562647e703ca0535da3b9fcad796
767
+ - webapp/tmp/cache/assets/development/sprockets/69c589bd224ee0df5ab02e4568e0ab39
768
+ - webapp/tmp/cache/assets/development/sprockets/516a0973874a73d0d15feec9448f7466
769
+ - webapp/tmp/cache/assets/development/sprockets/b6f1534bcdbff92a16c85487f363235a
770
+ - webapp/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
771
+ - webapp/tmp/cache/assets/development/sprockets/77f49730c7b689f75a2e174fbd3ace2a
772
+ - webapp/tmp/cache/assets/development/sprockets/b4ba5853663f6721d15942ce08dd76bf
773
+ - webapp/tmp/cache/assets/development/sprockets/eee2c36b75709b0c3797c2a151fdd5d3
774
+ - webapp/tmp/cache/assets/development/sprockets/f939450f7a481e3fbeb158b81b39c624
775
+ - webapp/tmp/cache/assets/development/sprockets/3ce88fad85146e0bed233f5419c24d29
776
+ - webapp/tmp/cache/assets/development/sprockets/316c88d859cc3666044e51b1dd89e872
777
+ - webapp/tmp/cache/assets/development/sprockets/70adb410f59a0edc5aea8c2b2ef8a441
778
+ - webapp/tmp/cache/assets/development/sprockets/511a980807b8d16fc3fb839991041865
779
+ - webapp/tmp/cache/assets/development/sprockets/d66b9cdd3230f9e5354e495e17097c49
780
+ - webapp/tmp/cache/assets/development/sprockets/f813030b97e30415ad276bbd1f7e1fb4
781
+ - webapp/tmp/cache/assets/development/sprockets/1cb7fb6aa8bd1c2b7df8f7c52442e345
782
+ - webapp/tmp/cache/assets/development/sprockets/81c6bf67419a29257ed79f442c24907d
783
+ - webapp/tmp/cache/assets/development/sprockets/fce73296b8298ac4c74b3e95cde4dfdb
784
+ - webapp/tmp/cache/assets/development/sprockets/97cbe306627b432ab3bfb52416690d1d
785
+ - webapp/tmp/cache/assets/development/sprockets/91e1ccbf65ff4d9b0f42b1159796bcf2
786
+ - webapp/tmp/cache/assets/development/sprockets/880c796f41e5d67ae68ed239acfc91e3
787
+ - webapp/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
788
+ - webapp/tmp/cache/assets/development/sprockets/bfac6cd2984fbd5e0d762389e3c37164
789
+ - webapp/tmp/cache/assets/development/sprockets/e57eb6c1ad51fd8c13afc0e719a259b5
790
+ - webapp/tmp/cache/assets/development/sprockets/66479793d9e5683d9f7fa67522d1962d
791
+ - webapp/tmp/cache/assets/development/sprockets/7fcef9f644290dea8d0e4bf13f6bb8e9
792
+ - webapp/tmp/cache/assets/development/sprockets/e7c37b542e914e392ec326190cea1aa2
793
+ - webapp/tmp/cache/assets/development/sprockets/78021a57030fd36cf82699aad9910b26
794
+ - webapp/tmp/cache/assets/development/sprockets/42628e032b8f0b16a5ba01a1fcc7b6d7
795
+ - webapp/tmp/cache/assets/development/sprockets/7c2ea2ca2cdd89b062bf23f44e8f599c
796
+ - webapp/tmp/cache/assets/development/sprockets/cf1e3cebfad43293c3c470a5e437ebc9
797
+ - webapp/tmp/cache/assets/development/sprockets/4116fac01e6d379ede37af725a592477
798
+ - webapp/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
799
+ - webapp/tmp/cache/assets/development/sprockets/94cab8cbc120e152ce4c444492a3fc1d
800
+ - webapp/tmp/cache/assets/development/sprockets/9db04db20ec9c4a0f84ed01caa5e6e2b
801
+ - webapp/tmp/cache/assets/development/sprockets/cedf710ee090647b81c08675583eca62
802
+ - webapp/tmp/cache/assets/development/sprockets/e1aa402390382db4d97b27cb094485fa
803
+ - webapp/tmp/cache/assets/development/sprockets/5c10dbffb918651dc0498579ba9a6853
804
+ - webapp/tmp/cache/assets/development/sprockets/b3da405f1e68470ad6146a1322f2438c
805
+ - webapp/tmp/cache/assets/development/sprockets/ee60a0a35d60cff425373970547694bd
806
+ - webapp/tmp/cache/assets/development/sprockets/113f1c71cb0f2a786729477989122982
807
+ - webapp/tmp/cache/assets/development/sprockets/a32ab71649e3db15eca95bcc3a7588da
808
+ - webapp/tmp/cache/assets/development/sprockets/83656ce9260eb473c1654420e0180167
809
+ - webapp/tmp/cache/assets/development/sprockets/759bf97655af50852816720db7b59fcb
810
+ - webapp/tmp/cache/assets/development/sprockets/e4f1db35ef9d9fbbf53252a44e381eb8
811
+ - webapp/tmp/cache/assets/development/sprockets/98da83d396c0c00eb03937ecbc2e6bfa
812
+ - webapp/tmp/cache/assets/development/sprockets/249e2d4db815922fc72419c4a1407caf
813
+ - webapp/tmp/cache/assets/development/sprockets/c50cd87be040044504b5c3fde1047e24
814
+ - webapp/tmp/cache/assets/development/sprockets/74770a22b5d1b0b3bc3527da83706f96
815
+ - webapp/tmp/cache/assets/development/sprockets/d5a14f86bb4b422fdd8eb4722d966c9a
816
+ - webapp/tmp/cache/assets/development/sprockets/c1a9eceddc0a1e41eb2992e9204f71e6
817
+ - webapp/tmp/cache/assets/development/sprockets/653a981829c12a52bd57b7918168a148
818
+ - webapp/tmp/cache/assets/development/sprockets/dfa0ed87d851222fe58ada385e3f037d
819
+ - webapp/tmp/cache/assets/development/sprockets/7b2b7d9034fc7b77daf5da1436667e6f
820
+ - webapp/tmp/cache/assets/development/sprockets/3034e4c334b1ebed9433e33050555f18
821
+ - webapp/tmp/cache/assets/development/sprockets/740ee9d355ada8cf5e9beb620f2cd5cc
822
+ - webapp/tmp/cache/assets/development/sprockets/151a1c6b128721d8923ba0c380a2af17
823
+ - webapp/tmp/cache/assets/development/sprockets/c8da5594caf845a183dd1c6cd45c5433
824
+ - webapp/tmp/cache/assets/development/sprockets/c5907cfd07b24ad19b8c80e8af618a57
825
+ - webapp/tmp/cache/assets/development/sprockets/9e91711ab34bbf89ad1cfb4351027d36
826
+ - webapp/tmp/cache/assets/development/sprockets/f4081e868eb565527099dba2c9d8c4de
827
+ - webapp/tmp/cache/assets/development/sprockets/9fc981560caba00621bb95d0974ad076
828
+ - webapp/tmp/cache/assets/development/sprockets/2049c8927ebd046c8a3291f81041d5f1
829
+ - webapp/tmp/cache/assets/development/sprockets/c17bec9e3b5db6d8385c3d6eb362e628
830
+ - webapp/tmp/cache/assets/development/sprockets/8d763042da5254015767385ce324b348
831
+ - webapp/tmp/cache/assets/development/sprockets/83e8bdddefc2dce069b56e6650135397
832
+ - webapp/tmp/cache/assets/development/sprockets/200152f95fc464d69c425ed8fdc2fbcc
833
+ - webapp/tmp/cache/assets/development/sprockets/569e21b0ca1a230c7880f8d7a8b1febf
834
+ - webapp/tmp/cache/assets/development/sprockets/1d76f803b0a83adc5ea7e7c848657967
835
+ - webapp/tmp/cache/assets/development/sprockets/f8e3e28bc9640c25da58aea46c3ac4b3
836
+ - webapp/tmp/cache/assets/development/sprockets/7ea112af55e6df12cdff377052b71420
837
+ - webapp/tmp/cache/assets/development/sprockets/9dc1c251f50c828fae95d6107619c53e
838
+ - webapp/tmp/cache/assets/development/sprockets/bc80a81b2d67b5ad40f3c7a2bb6e6f22
839
+ - webapp/tmp/cache/assets/development/sprockets/3893b852ff196f05ff6ca8e38bb2237f
840
+ - webapp/tmp/cache/assets/development/sprockets/f9169d0a8b70eaf95de52b3c6ad51105
841
+ - webapp/tmp/cache/assets/development/sprockets/06a1cdb3d5472dd126cffc18f548c342
842
+ - webapp/tmp/cache/assets/development/sprockets/6e2b92a4e6966cb78e63207bc7888391
843
+ - webapp/tmp/cache/assets/development/sprockets/eafcfc3d2561c18743c1b32f0f710c68
844
+ - webapp/tmp/cache/assets/development/sprockets/79e7505c70697cc7d34d4a8351c3b840
845
+ - webapp/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
846
+ - webapp/tmp/cache/assets/development/sprockets/bfaba27d5ce71d292f453659b0755511
847
+ - webapp/tmp/cache/assets/development/sprockets/4b68dcc030691297629a7156361018dc
848
+ - webapp/tmp/cache/assets/development/sprockets/9fd4385f8fda99f3ddd3f133a89231d1
849
+ - webapp/tmp/cache/assets/development/sprockets/36ab92a3b8d527ed1eff0944b5f1263d
850
+ - webapp/tmp/cache/assets/development/sprockets/61da396fb86c5ecd844a2d83ac759b4b
851
+ - webapp/tmp/cache/assets/development/sprockets/468da8933ba442b88b2f4b0e40c2ac30
852
+ - webapp/tmp/cache/assets/development/sprockets/92cdfac7698b6bb68983cf317c1cedef
853
+ - webapp/tmp/cache/assets/development/sprockets/347f43d816178c8ba11a28a771696924
854
+ - webapp/tmp/cache/assets/development/sprockets/437b258a98e8fe2c87fa8e24b7ce9abf
855
+ - webapp/tmp/cache/assets/development/sprockets/e923d7e19c216d4a924831f3896e007a
856
+ - webapp/tmp/cache/assets/development/sprockets/f26d1bc86590415685e9836ad75d1774
857
+ - webapp/tmp/cache/assets/development/sprockets/624ba87170059068845a4651b3cd2c7c
858
+ - webapp/tmp/cache/assets/development/sprockets/ecdd630f5466d45a2afa7515aaa5fc3b
859
+ - webapp/tmp/cache/assets/development/sprockets/a497c976969bdbb1f69875358d39d3b5
860
+ - webapp/tmp/cache/assets/development/sprockets/5fcb9466e0d5cb0e31b35957fe2d3901
861
+ - webapp/tmp/cache/assets/development/sprockets/5b5543d2ed5bed100f1739fc12ebf2c5
862
+ - webapp/tmp/cache/assets/development/sprockets/bb5be6a0ee889a15214e2442aee8c6e1
863
+ - webapp/tmp/cache/assets/development/sprockets/7728beeace48ca12e336d2bce0158871
864
+ - webapp/tmp/cache/assets/development/sprockets/6391f61b6121feda70da6d0a22520fdd
865
+ - webapp/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
866
+ - webapp/tmp/cache/assets/development/sprockets/3c358bd5fa32d151c7aa44971dd9b96f
867
+ - webapp/tmp/cache/assets/development/sprockets/7f27632588dd316836b009a621c0176c
868
+ - webapp/tmp/cache/assets/development/sprockets/6dd7c564897b7e66eecbb180baeef2c6
869
+ - webapp/tmp/cache/assets/development/sprockets/5c366b5370316b3e9c03d1a58cb5eb44
870
+ - webapp/tmp/cache/assets/development/sprockets/3dabcb7c89677292e1e019a9bac446e5
871
+ - webapp/tmp/cache/assets/development/sprockets/b06058d455770c1d9db6b6670bc4bf4d
872
+ - webapp/tmp/cache/assets/development/sprockets/796b349b06da691fe5f069f9e3947fcb
873
+ - webapp/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
874
+ - webapp/tmp/cache/assets/development/sprockets/43e98ed206f05738ae305e7e1b09a840
875
+ - webapp/tmp/cache/assets/development/sprockets/1722fb8a6daad566c8a6d5ef31969459
876
+ - webapp/tmp/cache/assets/development/sprockets/1a05555c46560c6b246aa0a996679bc6
877
+ - webapp/tmp/cache/assets/development/sprockets/f104b66c0f89b453d0c8c73980fbab18
878
+ - webapp/tmp/cache/assets/development/sprockets/9f587881f98b328b656e6456178418b5
879
+ - webapp/tmp/cache/assets/development/sprockets/76e9c19246c684413a02af695fa2b0bc
880
+ - webapp/tmp/cache/assets/development/sprockets/72cbfd5bf33945bcce154f7a4feaf04d
881
+ - webapp/tmp/cache/assets/development/sprockets/207907100aabd08a6767e39a95b364e3
882
+ - webapp/tmp/cache/assets/development/sprockets/48ef3fa68e9084c7cfa84e525decc318
883
+ - webapp/tmp/cache/assets/development/sprockets/50368b1bd77c9130d821cbad89ab83ac
884
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/analysis.css.scssc
885
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/execs.css.scssc
886
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/automations.css.scssc
887
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/util.css.scssc
888
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/settings.css.scssc
889
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/scripts.css.scssc
890
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/test.css.scssc
891
+ - webapp/tmp/cache/assets/development/sass/1330a34c6b24ed44c0f194c03246f627289a985a/executions.css.scssc
892
+ - webapp/config/database.yml
893
+ - webapp/config/boot.rb
894
+ - webapp/config/application.rb
895
+ - webapp/config/initializers/wrap_parameters.rb
896
+ - webapp/config/initializers/session_store.rb
897
+ - webapp/config/initializers/secret_token.rb
898
+ - webapp/config/initializers/backtrace_silencers.rb
899
+ - webapp/config/initializers/patches.rb
900
+ - webapp/config/initializers/mime_types.rb
901
+ - webapp/config/initializers/filter_parameter_logging.rb
902
+ - webapp/config/initializers/devise.rb
903
+ - webapp/config/initializers/inflections.rb
904
+ - webapp/config/routes.rb
905
+ - webapp/config/environments/development.rb
906
+ - webapp/config/environments/production.rb
907
+ - webapp/config/environments/test.rb
908
+ - webapp/config/locales/devise.en.yml
909
+ - webapp/config/locales/en.yml
910
+ - webapp/config/environment.rb
911
+ - webapp/Gemfile.lock
912
+ - config.json
913
+ - LICENSE
914
+ - Rakefile
915
+ - README.md
916
+ - VERSION
917
+ homepage: https://github.com/whummer/toaster
918
+ licenses:
919
+ - Apache v2.0
920
+ metadata: {}
921
+ post_install_message:
922
+ rdoc_options: []
923
+ require_paths:
924
+ - lib
925
+ required_ruby_version: !ruby/object:Gem::Requirement
926
+ requirements:
927
+ - - ! '>='
928
+ - !ruby/object:Gem::Version
929
+ version: '0'
930
+ required_rubygems_version: !ruby/object:Gem::Requirement
931
+ requirements:
932
+ - - ! '>='
933
+ - !ruby/object:Gem::Version
934
+ version: '0'
935
+ requirements: []
936
+ rubyforge_project:
937
+ rubygems_version: 2.0.7
938
+ signing_key:
939
+ specification_version: 4
940
+ summary: Automated Testing/Debugging of Automation Scripts.
941
+ test_files: []