fast_food 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (236) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +73 -0
  5. data/Rakefile +8 -0
  6. data/chef/.chef/bootstrap/chef-solo.erb +27 -0
  7. data/chef/.chef/knife.rb +8 -0
  8. data/chef/.gitignore +1 -0
  9. data/chef/README +3 -0
  10. data/chef/cookbooks/README +1 -0
  11. data/chef/cookbooks/apache2/.gitignore +1 -0
  12. data/chef/cookbooks/apache2/CHANGELOG.md +81 -0
  13. data/chef/cookbooks/apache2/CONTRIBUTING +29 -0
  14. data/chef/cookbooks/apache2/Gemfile +10 -0
  15. data/chef/cookbooks/apache2/LICENSE +201 -0
  16. data/chef/cookbooks/apache2/README.md +373 -0
  17. data/chef/cookbooks/apache2/attributes/default.rb +149 -0
  18. data/chef/cookbooks/apache2/attributes/mod_auth_openid.rb +32 -0
  19. data/chef/cookbooks/apache2/definitions/apache_conf.rb +26 -0
  20. data/chef/cookbooks/apache2/definitions/apache_module.rb +53 -0
  21. data/chef/cookbooks/apache2/definitions/apache_site.rb +43 -0
  22. data/chef/cookbooks/apache2/definitions/web_app.rb +49 -0
  23. data/chef/cookbooks/apache2/files/default/apache2_module_conf_generate.pl +41 -0
  24. data/chef/cookbooks/apache2/files/default/tests/minitest/default_test.rb +64 -0
  25. data/chef/cookbooks/apache2/files/default/tests/minitest/helpers.rb +36 -0
  26. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_auth_openid_test.rb +25 -0
  27. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_dav_svn_test.rb +16 -0
  28. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_perl_test.rb +22 -0
  29. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_php5_test.rb +19 -0
  30. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_python_test.rb +14 -0
  31. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_ssl_test.rb +19 -0
  32. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_wsgi_test.rb +14 -0
  33. data/chef/cookbooks/apache2/files/default/tests/minitest/mod_xsendfile_test.rb +14 -0
  34. data/chef/cookbooks/apache2/files/default/tests/minitest/modules_test.rb +19 -0
  35. data/chef/cookbooks/apache2/metadata.json +511 -0
  36. data/chef/cookbooks/apache2/metadata.rb +205 -0
  37. data/chef/cookbooks/apache2/recipes/default.rb +221 -0
  38. data/chef/cookbooks/apache2/recipes/god_monitor.rb +33 -0
  39. data/chef/cookbooks/apache2/recipes/mod_alias.rb +22 -0
  40. data/chef/cookbooks/apache2/recipes/mod_apreq2.rb +45 -0
  41. data/chef/cookbooks/apache2/recipes/mod_auth_basic.rb +20 -0
  42. data/chef/cookbooks/apache2/recipes/mod_auth_digest.rb +20 -0
  43. data/chef/cookbooks/apache2/recipes/mod_auth_openid.rb +113 -0
  44. data/chef/cookbooks/apache2/recipes/mod_authn_file.rb +20 -0
  45. data/chef/cookbooks/apache2/recipes/mod_authnz_ldap.rb +20 -0
  46. data/chef/cookbooks/apache2/recipes/mod_authz_default.rb +20 -0
  47. data/chef/cookbooks/apache2/recipes/mod_authz_groupfile.rb +20 -0
  48. data/chef/cookbooks/apache2/recipes/mod_authz_host.rb +20 -0
  49. data/chef/cookbooks/apache2/recipes/mod_authz_user.rb +20 -0
  50. data/chef/cookbooks/apache2/recipes/mod_autoindex.rb +22 -0
  51. data/chef/cookbooks/apache2/recipes/mod_cgi.rb +20 -0
  52. data/chef/cookbooks/apache2/recipes/mod_dav.rb +20 -0
  53. data/chef/cookbooks/apache2/recipes/mod_dav_fs.rb +20 -0
  54. data/chef/cookbooks/apache2/recipes/mod_dav_svn.rb +29 -0
  55. data/chef/cookbooks/apache2/recipes/mod_deflate.rb +22 -0
  56. data/chef/cookbooks/apache2/recipes/mod_dir.rb +22 -0
  57. data/chef/cookbooks/apache2/recipes/mod_env.rb +20 -0
  58. data/chef/cookbooks/apache2/recipes/mod_expires.rb +20 -0
  59. data/chef/cookbooks/apache2/recipes/mod_fastcgi.rb +26 -0
  60. data/chef/cookbooks/apache2/recipes/mod_fcgid.rb +53 -0
  61. data/chef/cookbooks/apache2/recipes/mod_headers.rb +20 -0
  62. data/chef/cookbooks/apache2/recipes/mod_ldap.rb +20 -0
  63. data/chef/cookbooks/apache2/recipes/mod_log_config.rb +24 -0
  64. data/chef/cookbooks/apache2/recipes/mod_logio.rb +24 -0
  65. data/chef/cookbooks/apache2/recipes/mod_mime.rb +22 -0
  66. data/chef/cookbooks/apache2/recipes/mod_negotiation.rb +22 -0
  67. data/chef/cookbooks/apache2/recipes/mod_perl.rb +39 -0
  68. data/chef/cookbooks/apache2/recipes/mod_php5.rb +99 -0
  69. data/chef/cookbooks/apache2/recipes/mod_proxy.rb +22 -0
  70. data/chef/cookbooks/apache2/recipes/mod_proxy_ajp.rb +21 -0
  71. data/chef/cookbooks/apache2/recipes/mod_proxy_balancer.rb +20 -0
  72. data/chef/cookbooks/apache2/recipes/mod_proxy_connect.rb +20 -0
  73. data/chef/cookbooks/apache2/recipes/mod_proxy_http.rb +20 -0
  74. data/chef/cookbooks/apache2/recipes/mod_python.rb +32 -0
  75. data/chef/cookbooks/apache2/recipes/mod_rewrite.rb +20 -0
  76. data/chef/cookbooks/apache2/recipes/mod_setenvif.rb +22 -0
  77. data/chef/cookbooks/apache2/recipes/mod_ssl.rb +43 -0
  78. data/chef/cookbooks/apache2/recipes/mod_status.rb +22 -0
  79. data/chef/cookbooks/apache2/recipes/mod_wsgi.rb +27 -0
  80. data/chef/cookbooks/apache2/recipes/mod_xsendfile.rb +27 -0
  81. data/chef/cookbooks/apache2/templates/default/a2dismod.erb +22 -0
  82. data/chef/cookbooks/apache2/templates/default/a2dissite.erb +29 -0
  83. data/chef/cookbooks/apache2/templates/default/a2enmod.erb +37 -0
  84. data/chef/cookbooks/apache2/templates/default/a2ensite.erb +38 -0
  85. data/chef/cookbooks/apache2/templates/default/apache2.conf.erb +237 -0
  86. data/chef/cookbooks/apache2/templates/default/apache2.god.erb +19 -0
  87. data/chef/cookbooks/apache2/templates/default/charset.erb +6 -0
  88. data/chef/cookbooks/apache2/templates/default/default-site.erb +57 -0
  89. data/chef/cookbooks/apache2/templates/default/mods/README +2 -0
  90. data/chef/cookbooks/apache2/templates/default/mods/alias.conf.erb +24 -0
  91. data/chef/cookbooks/apache2/templates/default/mods/authopenid.load.erb +1 -0
  92. data/chef/cookbooks/apache2/templates/default/mods/autoindex.conf.erb +101 -0
  93. data/chef/cookbooks/apache2/templates/default/mods/deflate.conf.erb +16 -0
  94. data/chef/cookbooks/apache2/templates/default/mods/dir.conf.erb +5 -0
  95. data/chef/cookbooks/apache2/templates/default/mods/fastcgi.conf.erb +5 -0
  96. data/chef/cookbooks/apache2/templates/default/mods/fcgid.conf.erb +10 -0
  97. data/chef/cookbooks/apache2/templates/default/mods/mime.conf.erb +198 -0
  98. data/chef/cookbooks/apache2/templates/default/mods/negotiation.conf.erb +18 -0
  99. data/chef/cookbooks/apache2/templates/default/mods/php5.conf.erb +16 -0
  100. data/chef/cookbooks/apache2/templates/default/mods/proxy.conf.erb +19 -0
  101. data/chef/cookbooks/apache2/templates/default/mods/setenvif.conf.erb +28 -0
  102. data/chef/cookbooks/apache2/templates/default/mods/ssl.conf.erb +76 -0
  103. data/chef/cookbooks/apache2/templates/default/mods/status.conf.erb +26 -0
  104. data/chef/cookbooks/apache2/templates/default/port_apache.erb +2 -0
  105. data/chef/cookbooks/apache2/templates/default/ports.conf.erb +6 -0
  106. data/chef/cookbooks/apache2/templates/default/security.erb +50 -0
  107. data/chef/cookbooks/apache2/templates/default/web_app.conf.erb +43 -0
  108. data/chef/cookbooks/build-essential/.gitignore +4 -0
  109. data/chef/cookbooks/build-essential/CHANGELOG.md +31 -0
  110. data/chef/cookbooks/build-essential/CONTRIBUTING +29 -0
  111. data/chef/cookbooks/build-essential/Gemfile +3 -0
  112. data/chef/cookbooks/build-essential/LICENSE +201 -0
  113. data/chef/cookbooks/build-essential/README.md +129 -0
  114. data/chef/cookbooks/build-essential/attributes/default.rb +33 -0
  115. data/chef/cookbooks/build-essential/metadata.json +41 -0
  116. data/chef/cookbooks/build-essential/metadata.rb +14 -0
  117. data/chef/cookbooks/build-essential/recipes/default.rb +92 -0
  118. data/chef/cookbooks/database/.gitignore +1 -0
  119. data/chef/cookbooks/database/CHANGELOG.md +46 -0
  120. data/chef/cookbooks/database/CONTRIBUTING +29 -0
  121. data/chef/cookbooks/database/LICENSE +201 -0
  122. data/chef/cookbooks/database/README.md +468 -0
  123. data/chef/cookbooks/database/libraries/provider_database_mysql.rb +103 -0
  124. data/chef/cookbooks/database/libraries/provider_database_mysql_user.rb +76 -0
  125. data/chef/cookbooks/database/libraries/provider_database_postgresql.rb +131 -0
  126. data/chef/cookbooks/database/libraries/provider_database_postgresql_user.rb +83 -0
  127. data/chef/cookbooks/database/libraries/provider_database_sql_server.rb +109 -0
  128. data/chef/cookbooks/database/libraries/provider_database_sql_server_user.rb +106 -0
  129. data/chef/cookbooks/database/libraries/resource_database.rb +119 -0
  130. data/chef/cookbooks/database/libraries/resource_database_user.rb +90 -0
  131. data/chef/cookbooks/database/libraries/resource_mysql_database.rb +34 -0
  132. data/chef/cookbooks/database/libraries/resource_mysql_database_user.rb +34 -0
  133. data/chef/cookbooks/database/libraries/resource_postgresql_database.rb +35 -0
  134. data/chef/cookbooks/database/libraries/resource_postgresql_database_user.rb +35 -0
  135. data/chef/cookbooks/database/libraries/resource_sql_server_database.rb +34 -0
  136. data/chef/cookbooks/database/libraries/resource_sql_server_database_user.rb +34 -0
  137. data/chef/cookbooks/database/metadata.json +45 -0
  138. data/chef/cookbooks/database/metadata.rb +22 -0
  139. data/chef/cookbooks/database/recipes/default.rb +20 -0
  140. data/chef/cookbooks/database/recipes/ebs_backup.rb +89 -0
  141. data/chef/cookbooks/database/recipes/ebs_volume.rb +204 -0
  142. data/chef/cookbooks/database/recipes/master.rb +78 -0
  143. data/chef/cookbooks/database/recipes/mysql.rb +20 -0
  144. data/chef/cookbooks/database/recipes/postgresql.rb +20 -0
  145. data/chef/cookbooks/database/recipes/snapshot.rb +62 -0
  146. data/chef/cookbooks/database/templates/default/app_grants.sql.erb +8 -0
  147. data/chef/cookbooks/database/templates/default/aws_config.erb +3 -0
  148. data/chef/cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb +6 -0
  149. data/chef/cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb +1 -0
  150. data/chef/cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb +6 -0
  151. data/chef/cookbooks/database/templates/default/ebs-backup-cron.erb +2 -0
  152. data/chef/cookbooks/database/templates/default/ebs-db-backup.sh.erb +8 -0
  153. data/chef/cookbooks/database/templates/default/ebs-db-restore.sh.erb +10 -0
  154. data/chef/cookbooks/database/templates/default/s3cfg.erb +27 -0
  155. data/chef/cookbooks/fast_food/recipes/default.rb +24 -0
  156. data/chef/cookbooks/fast_food/recipes/site.rb +7 -0
  157. data/chef/cookbooks/fast_food/templates/default/web_app.conf.erb +43 -0
  158. data/chef/cookbooks/git/CHANGELOG.md +49 -0
  159. data/chef/cookbooks/git/CONTRIBUTING +29 -0
  160. data/chef/cookbooks/git/LICENSE +201 -0
  161. data/chef/cookbooks/git/README.md +115 -0
  162. data/chef/cookbooks/git/attributes/default.rb +37 -0
  163. data/chef/cookbooks/git/metadata.json +48 -0
  164. data/chef/cookbooks/git/metadata.rb +20 -0
  165. data/chef/cookbooks/git/recipes/default.rb +46 -0
  166. data/chef/cookbooks/git/recipes/server.rb +38 -0
  167. data/chef/cookbooks/git/recipes/source.rb +48 -0
  168. data/chef/cookbooks/git/recipes/windows.rb +32 -0
  169. data/chef/cookbooks/git/templates/default/sv-git-daemon-log-run.erb +2 -0
  170. data/chef/cookbooks/git/templates/default/sv-git-daemon-run.erb +3 -0
  171. data/chef/cookbooks/imagemagick/README.md +57 -0
  172. data/chef/cookbooks/imagemagick/metadata.json +37 -0
  173. data/chef/cookbooks/imagemagick/metadata.rb +14 -0
  174. data/chef/cookbooks/imagemagick/recipes/default.rb +25 -0
  175. data/chef/cookbooks/imagemagick/recipes/devel.rb +32 -0
  176. data/chef/cookbooks/imagemagick/recipes/rmagick.rb +22 -0
  177. data/chef/cookbooks/mysql/.gitignore +5 -0
  178. data/chef/cookbooks/mysql/CHANGELOG.md +125 -0
  179. data/chef/cookbooks/mysql/CONTRIBUTING +29 -0
  180. data/chef/cookbooks/mysql/Gemfile +8 -0
  181. data/chef/cookbooks/mysql/LICENSE +201 -0
  182. data/chef/cookbooks/mysql/README.md +227 -0
  183. data/chef/cookbooks/mysql/attributes/client.rb +50 -0
  184. data/chef/cookbooks/mysql/attributes/server.rb +240 -0
  185. data/chef/cookbooks/mysql/files/default/tests/minitest/server_test.rb +36 -0
  186. data/chef/cookbooks/mysql/files/default/tests/minitest/support/helpers.rb +11 -0
  187. data/chef/cookbooks/mysql/libraries/helpers.rb +33 -0
  188. data/chef/cookbooks/mysql/metadata.json +418 -0
  189. data/chef/cookbooks/mysql/metadata.rb +140 -0
  190. data/chef/cookbooks/mysql/recipes/client.rb +59 -0
  191. data/chef/cookbooks/mysql/recipes/default.rb +20 -0
  192. data/chef/cookbooks/mysql/recipes/ruby.rb +36 -0
  193. data/chef/cookbooks/mysql/recipes/server.rb +221 -0
  194. data/chef/cookbooks/mysql/recipes/server_ec2.rb +51 -0
  195. data/chef/cookbooks/mysql/templates/default/debian.cnf.erb +12 -0
  196. data/chef/cookbooks/mysql/templates/default/grants.sql.erb +15 -0
  197. data/chef/cookbooks/mysql/templates/default/my.cnf.erb +312 -0
  198. data/chef/cookbooks/mysql/templates/default/mysql-server.seed.erb +10 -0
  199. data/chef/cookbooks/mysql/templates/default/port_mysql.erb +3 -0
  200. data/chef/cookbooks/mysql/templates/windows/my.cnf.erb +61 -0
  201. data/chef/cookbooks/openssl/README.md +37 -0
  202. data/chef/cookbooks/openssl/libraries/secure_password.rb +37 -0
  203. data/chef/cookbooks/openssl/metadata.json +30 -0
  204. data/chef/cookbooks/openssl/metadata.rb +8 -0
  205. data/chef/cookbooks/openssl/recipes/default.rb +19 -0
  206. data/chef/cookbooks/passenger_apache2/.gitignore +4 -0
  207. data/chef/cookbooks/passenger_apache2/CHANGELOG.md +29 -0
  208. data/chef/cookbooks/passenger_apache2/CONTRIBUTING +29 -0
  209. data/chef/cookbooks/passenger_apache2/Gemfile +3 -0
  210. data/chef/cookbooks/passenger_apache2/LICENSE +201 -0
  211. data/chef/cookbooks/passenger_apache2/README.md +77 -0
  212. data/chef/cookbooks/passenger_apache2/attributes/default.rb +5 -0
  213. data/chef/cookbooks/passenger_apache2/metadata.json +38 -0
  214. data/chef/cookbooks/passenger_apache2/metadata.rb +17 -0
  215. data/chef/cookbooks/passenger_apache2/recipes/default.rb +60 -0
  216. data/chef/cookbooks/passenger_apache2/recipes/mod_rails.rb +47 -0
  217. data/chef/cookbooks/passenger_apache2/templates/default/passenger.conf.erb +3 -0
  218. data/chef/cookbooks/passenger_apache2/templates/default/passenger.load.erb +1 -0
  219. data/chef/cookbooks/passenger_apache2/templates/default/passenger_web_app.conf.erb +32 -0
  220. data/chef/cookbooks/passenger_apache2/templates/default/web_app.conf.erb +32 -0
  221. data/chef/roles/apache2.rb +12 -0
  222. data/chef/roles/mysql.rb +18 -0
  223. data/chef/solo.rb +5 -0
  224. data/config/deploy/centos.sh +17 -0
  225. data/config/deploy/production.rb +3 -0
  226. data/config/deploy/ubuntu.sh +10 -0
  227. data/config/deploy.rb +99 -0
  228. data/config/deployment.yml +6 -0
  229. data/fast_food.gemspec +26 -0
  230. data/lib/fast_food/railtie.rb +9 -0
  231. data/lib/fast_food/version.rb +3 -0
  232. data/lib/fast_food.rb +5 -0
  233. data/lib/tasks/fast_food.rake +100 -0
  234. data/spec/lib/fast_food_spec.rb +0 -0
  235. data/spec/spec_helper.rb +1 -0
  236. metadata +349 -0
metadata ADDED
@@ -0,0 +1,349 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fast_food
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Richard Biffin
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-10-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rspec
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: capistrano
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: capistrano-ext
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: Provides quick and dirty server provisioning and app deployment using
79
+ Chef and Capistrano
80
+ email:
81
+ - rkjb@me.com
82
+ executables: []
83
+ extensions: []
84
+ extra_rdoc_files: []
85
+ files:
86
+ - .gitignore
87
+ - Gemfile
88
+ - LICENSE.txt
89
+ - README.md
90
+ - Rakefile
91
+ - chef/.chef/bootstrap/chef-solo.erb
92
+ - chef/.chef/knife.rb
93
+ - chef/.gitignore
94
+ - chef/README
95
+ - chef/cookbooks/README
96
+ - chef/cookbooks/apache2/.gitignore
97
+ - chef/cookbooks/apache2/CHANGELOG.md
98
+ - chef/cookbooks/apache2/CONTRIBUTING
99
+ - chef/cookbooks/apache2/Gemfile
100
+ - chef/cookbooks/apache2/LICENSE
101
+ - chef/cookbooks/apache2/README.md
102
+ - chef/cookbooks/apache2/attributes/default.rb
103
+ - chef/cookbooks/apache2/attributes/mod_auth_openid.rb
104
+ - chef/cookbooks/apache2/definitions/apache_conf.rb
105
+ - chef/cookbooks/apache2/definitions/apache_module.rb
106
+ - chef/cookbooks/apache2/definitions/apache_site.rb
107
+ - chef/cookbooks/apache2/definitions/web_app.rb
108
+ - chef/cookbooks/apache2/files/default/apache2_module_conf_generate.pl
109
+ - chef/cookbooks/apache2/files/default/tests/minitest/default_test.rb
110
+ - chef/cookbooks/apache2/files/default/tests/minitest/helpers.rb
111
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_auth_openid_test.rb
112
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_dav_svn_test.rb
113
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_perl_test.rb
114
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_php5_test.rb
115
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_python_test.rb
116
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_ssl_test.rb
117
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_wsgi_test.rb
118
+ - chef/cookbooks/apache2/files/default/tests/minitest/mod_xsendfile_test.rb
119
+ - chef/cookbooks/apache2/files/default/tests/minitest/modules_test.rb
120
+ - chef/cookbooks/apache2/metadata.json
121
+ - chef/cookbooks/apache2/metadata.rb
122
+ - chef/cookbooks/apache2/recipes/default.rb
123
+ - chef/cookbooks/apache2/recipes/god_monitor.rb
124
+ - chef/cookbooks/apache2/recipes/mod_alias.rb
125
+ - chef/cookbooks/apache2/recipes/mod_apreq2.rb
126
+ - chef/cookbooks/apache2/recipes/mod_auth_basic.rb
127
+ - chef/cookbooks/apache2/recipes/mod_auth_digest.rb
128
+ - chef/cookbooks/apache2/recipes/mod_auth_openid.rb
129
+ - chef/cookbooks/apache2/recipes/mod_authn_file.rb
130
+ - chef/cookbooks/apache2/recipes/mod_authnz_ldap.rb
131
+ - chef/cookbooks/apache2/recipes/mod_authz_default.rb
132
+ - chef/cookbooks/apache2/recipes/mod_authz_groupfile.rb
133
+ - chef/cookbooks/apache2/recipes/mod_authz_host.rb
134
+ - chef/cookbooks/apache2/recipes/mod_authz_user.rb
135
+ - chef/cookbooks/apache2/recipes/mod_autoindex.rb
136
+ - chef/cookbooks/apache2/recipes/mod_cgi.rb
137
+ - chef/cookbooks/apache2/recipes/mod_dav.rb
138
+ - chef/cookbooks/apache2/recipes/mod_dav_fs.rb
139
+ - chef/cookbooks/apache2/recipes/mod_dav_svn.rb
140
+ - chef/cookbooks/apache2/recipes/mod_deflate.rb
141
+ - chef/cookbooks/apache2/recipes/mod_dir.rb
142
+ - chef/cookbooks/apache2/recipes/mod_env.rb
143
+ - chef/cookbooks/apache2/recipes/mod_expires.rb
144
+ - chef/cookbooks/apache2/recipes/mod_fastcgi.rb
145
+ - chef/cookbooks/apache2/recipes/mod_fcgid.rb
146
+ - chef/cookbooks/apache2/recipes/mod_headers.rb
147
+ - chef/cookbooks/apache2/recipes/mod_ldap.rb
148
+ - chef/cookbooks/apache2/recipes/mod_log_config.rb
149
+ - chef/cookbooks/apache2/recipes/mod_logio.rb
150
+ - chef/cookbooks/apache2/recipes/mod_mime.rb
151
+ - chef/cookbooks/apache2/recipes/mod_negotiation.rb
152
+ - chef/cookbooks/apache2/recipes/mod_perl.rb
153
+ - chef/cookbooks/apache2/recipes/mod_php5.rb
154
+ - chef/cookbooks/apache2/recipes/mod_proxy.rb
155
+ - chef/cookbooks/apache2/recipes/mod_proxy_ajp.rb
156
+ - chef/cookbooks/apache2/recipes/mod_proxy_balancer.rb
157
+ - chef/cookbooks/apache2/recipes/mod_proxy_connect.rb
158
+ - chef/cookbooks/apache2/recipes/mod_proxy_http.rb
159
+ - chef/cookbooks/apache2/recipes/mod_python.rb
160
+ - chef/cookbooks/apache2/recipes/mod_rewrite.rb
161
+ - chef/cookbooks/apache2/recipes/mod_setenvif.rb
162
+ - chef/cookbooks/apache2/recipes/mod_ssl.rb
163
+ - chef/cookbooks/apache2/recipes/mod_status.rb
164
+ - chef/cookbooks/apache2/recipes/mod_wsgi.rb
165
+ - chef/cookbooks/apache2/recipes/mod_xsendfile.rb
166
+ - chef/cookbooks/apache2/templates/default/a2dismod.erb
167
+ - chef/cookbooks/apache2/templates/default/a2dissite.erb
168
+ - chef/cookbooks/apache2/templates/default/a2enmod.erb
169
+ - chef/cookbooks/apache2/templates/default/a2ensite.erb
170
+ - chef/cookbooks/apache2/templates/default/apache2.conf.erb
171
+ - chef/cookbooks/apache2/templates/default/apache2.god.erb
172
+ - chef/cookbooks/apache2/templates/default/charset.erb
173
+ - chef/cookbooks/apache2/templates/default/default-site.erb
174
+ - chef/cookbooks/apache2/templates/default/mods/README
175
+ - chef/cookbooks/apache2/templates/default/mods/alias.conf.erb
176
+ - chef/cookbooks/apache2/templates/default/mods/authopenid.load.erb
177
+ - chef/cookbooks/apache2/templates/default/mods/autoindex.conf.erb
178
+ - chef/cookbooks/apache2/templates/default/mods/deflate.conf.erb
179
+ - chef/cookbooks/apache2/templates/default/mods/dir.conf.erb
180
+ - chef/cookbooks/apache2/templates/default/mods/fastcgi.conf.erb
181
+ - chef/cookbooks/apache2/templates/default/mods/fcgid.conf.erb
182
+ - chef/cookbooks/apache2/templates/default/mods/mime.conf.erb
183
+ - chef/cookbooks/apache2/templates/default/mods/negotiation.conf.erb
184
+ - chef/cookbooks/apache2/templates/default/mods/php5.conf.erb
185
+ - chef/cookbooks/apache2/templates/default/mods/proxy.conf.erb
186
+ - chef/cookbooks/apache2/templates/default/mods/setenvif.conf.erb
187
+ - chef/cookbooks/apache2/templates/default/mods/ssl.conf.erb
188
+ - chef/cookbooks/apache2/templates/default/mods/status.conf.erb
189
+ - chef/cookbooks/apache2/templates/default/port_apache.erb
190
+ - chef/cookbooks/apache2/templates/default/ports.conf.erb
191
+ - chef/cookbooks/apache2/templates/default/security.erb
192
+ - chef/cookbooks/apache2/templates/default/web_app.conf.erb
193
+ - chef/cookbooks/build-essential/.gitignore
194
+ - chef/cookbooks/build-essential/CHANGELOG.md
195
+ - chef/cookbooks/build-essential/CONTRIBUTING
196
+ - chef/cookbooks/build-essential/Gemfile
197
+ - chef/cookbooks/build-essential/LICENSE
198
+ - chef/cookbooks/build-essential/README.md
199
+ - chef/cookbooks/build-essential/attributes/default.rb
200
+ - chef/cookbooks/build-essential/metadata.json
201
+ - chef/cookbooks/build-essential/metadata.rb
202
+ - chef/cookbooks/build-essential/recipes/default.rb
203
+ - chef/cookbooks/database/.gitignore
204
+ - chef/cookbooks/database/CHANGELOG.md
205
+ - chef/cookbooks/database/CONTRIBUTING
206
+ - chef/cookbooks/database/LICENSE
207
+ - chef/cookbooks/database/README.md
208
+ - chef/cookbooks/database/libraries/provider_database_mysql.rb
209
+ - chef/cookbooks/database/libraries/provider_database_mysql_user.rb
210
+ - chef/cookbooks/database/libraries/provider_database_postgresql.rb
211
+ - chef/cookbooks/database/libraries/provider_database_postgresql_user.rb
212
+ - chef/cookbooks/database/libraries/provider_database_sql_server.rb
213
+ - chef/cookbooks/database/libraries/provider_database_sql_server_user.rb
214
+ - chef/cookbooks/database/libraries/resource_database.rb
215
+ - chef/cookbooks/database/libraries/resource_database_user.rb
216
+ - chef/cookbooks/database/libraries/resource_mysql_database.rb
217
+ - chef/cookbooks/database/libraries/resource_mysql_database_user.rb
218
+ - chef/cookbooks/database/libraries/resource_postgresql_database.rb
219
+ - chef/cookbooks/database/libraries/resource_postgresql_database_user.rb
220
+ - chef/cookbooks/database/libraries/resource_sql_server_database.rb
221
+ - chef/cookbooks/database/libraries/resource_sql_server_database_user.rb
222
+ - chef/cookbooks/database/metadata.json
223
+ - chef/cookbooks/database/metadata.rb
224
+ - chef/cookbooks/database/recipes/default.rb
225
+ - chef/cookbooks/database/recipes/ebs_backup.rb
226
+ - chef/cookbooks/database/recipes/ebs_volume.rb
227
+ - chef/cookbooks/database/recipes/master.rb
228
+ - chef/cookbooks/database/recipes/mysql.rb
229
+ - chef/cookbooks/database/recipes/postgresql.rb
230
+ - chef/cookbooks/database/recipes/snapshot.rb
231
+ - chef/cookbooks/database/templates/default/app_grants.sql.erb
232
+ - chef/cookbooks/database/templates/default/aws_config.erb
233
+ - chef/cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb
234
+ - chef/cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb
235
+ - chef/cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb
236
+ - chef/cookbooks/database/templates/default/ebs-backup-cron.erb
237
+ - chef/cookbooks/database/templates/default/ebs-db-backup.sh.erb
238
+ - chef/cookbooks/database/templates/default/ebs-db-restore.sh.erb
239
+ - chef/cookbooks/database/templates/default/s3cfg.erb
240
+ - chef/cookbooks/fast_food/recipes/default.rb
241
+ - chef/cookbooks/fast_food/recipes/site.rb
242
+ - chef/cookbooks/fast_food/templates/default/web_app.conf.erb
243
+ - chef/cookbooks/git/CHANGELOG.md
244
+ - chef/cookbooks/git/CONTRIBUTING
245
+ - chef/cookbooks/git/LICENSE
246
+ - chef/cookbooks/git/README.md
247
+ - chef/cookbooks/git/attributes/default.rb
248
+ - chef/cookbooks/git/metadata.json
249
+ - chef/cookbooks/git/metadata.rb
250
+ - chef/cookbooks/git/recipes/default.rb
251
+ - chef/cookbooks/git/recipes/server.rb
252
+ - chef/cookbooks/git/recipes/source.rb
253
+ - chef/cookbooks/git/recipes/windows.rb
254
+ - chef/cookbooks/git/templates/default/sv-git-daemon-log-run.erb
255
+ - chef/cookbooks/git/templates/default/sv-git-daemon-run.erb
256
+ - chef/cookbooks/imagemagick/README.md
257
+ - chef/cookbooks/imagemagick/metadata.json
258
+ - chef/cookbooks/imagemagick/metadata.rb
259
+ - chef/cookbooks/imagemagick/recipes/default.rb
260
+ - chef/cookbooks/imagemagick/recipes/devel.rb
261
+ - chef/cookbooks/imagemagick/recipes/rmagick.rb
262
+ - chef/cookbooks/mysql/.gitignore
263
+ - chef/cookbooks/mysql/CHANGELOG.md
264
+ - chef/cookbooks/mysql/CONTRIBUTING
265
+ - chef/cookbooks/mysql/Gemfile
266
+ - chef/cookbooks/mysql/LICENSE
267
+ - chef/cookbooks/mysql/README.md
268
+ - chef/cookbooks/mysql/attributes/client.rb
269
+ - chef/cookbooks/mysql/attributes/server.rb
270
+ - chef/cookbooks/mysql/files/default/tests/minitest/server_test.rb
271
+ - chef/cookbooks/mysql/files/default/tests/minitest/support/helpers.rb
272
+ - chef/cookbooks/mysql/libraries/helpers.rb
273
+ - chef/cookbooks/mysql/metadata.json
274
+ - chef/cookbooks/mysql/metadata.rb
275
+ - chef/cookbooks/mysql/recipes/client.rb
276
+ - chef/cookbooks/mysql/recipes/default.rb
277
+ - chef/cookbooks/mysql/recipes/ruby.rb
278
+ - chef/cookbooks/mysql/recipes/server.rb
279
+ - chef/cookbooks/mysql/recipes/server_ec2.rb
280
+ - chef/cookbooks/mysql/templates/default/debian.cnf.erb
281
+ - chef/cookbooks/mysql/templates/default/grants.sql.erb
282
+ - chef/cookbooks/mysql/templates/default/my.cnf.erb
283
+ - chef/cookbooks/mysql/templates/default/mysql-server.seed.erb
284
+ - chef/cookbooks/mysql/templates/default/port_mysql.erb
285
+ - chef/cookbooks/mysql/templates/windows/my.cnf.erb
286
+ - chef/cookbooks/openssl/README.md
287
+ - chef/cookbooks/openssl/libraries/secure_password.rb
288
+ - chef/cookbooks/openssl/metadata.json
289
+ - chef/cookbooks/openssl/metadata.rb
290
+ - chef/cookbooks/openssl/recipes/default.rb
291
+ - chef/cookbooks/passenger_apache2/.gitignore
292
+ - chef/cookbooks/passenger_apache2/CHANGELOG.md
293
+ - chef/cookbooks/passenger_apache2/CONTRIBUTING
294
+ - chef/cookbooks/passenger_apache2/Gemfile
295
+ - chef/cookbooks/passenger_apache2/LICENSE
296
+ - chef/cookbooks/passenger_apache2/README.md
297
+ - chef/cookbooks/passenger_apache2/attributes/default.rb
298
+ - chef/cookbooks/passenger_apache2/metadata.json
299
+ - chef/cookbooks/passenger_apache2/metadata.rb
300
+ - chef/cookbooks/passenger_apache2/recipes/default.rb
301
+ - chef/cookbooks/passenger_apache2/recipes/mod_rails.rb
302
+ - chef/cookbooks/passenger_apache2/templates/default/passenger.conf.erb
303
+ - chef/cookbooks/passenger_apache2/templates/default/passenger.load.erb
304
+ - chef/cookbooks/passenger_apache2/templates/default/passenger_web_app.conf.erb
305
+ - chef/cookbooks/passenger_apache2/templates/default/web_app.conf.erb
306
+ - chef/roles/apache2.rb
307
+ - chef/roles/mysql.rb
308
+ - chef/solo.rb
309
+ - config/deploy.rb
310
+ - config/deploy/centos.sh
311
+ - config/deploy/production.rb
312
+ - config/deploy/ubuntu.sh
313
+ - config/deployment.yml
314
+ - fast_food.gemspec
315
+ - lib/fast_food.rb
316
+ - lib/fast_food/railtie.rb
317
+ - lib/fast_food/version.rb
318
+ - lib/tasks/fast_food.rake
319
+ - spec/lib/fast_food_spec.rb
320
+ - spec/spec_helper.rb
321
+ homepage: ''
322
+ licenses: []
323
+ post_install_message:
324
+ rdoc_options: []
325
+ require_paths:
326
+ - lib
327
+ required_ruby_version: !ruby/object:Gem::Requirement
328
+ none: false
329
+ requirements:
330
+ - - ! '>='
331
+ - !ruby/object:Gem::Version
332
+ version: '0'
333
+ required_rubygems_version: !ruby/object:Gem::Requirement
334
+ none: false
335
+ requirements:
336
+ - - ! '>='
337
+ - !ruby/object:Gem::Version
338
+ version: '0'
339
+ requirements: []
340
+ rubyforge_project:
341
+ rubygems_version: 1.8.24
342
+ signing_key:
343
+ specification_version: 3
344
+ summary: Provides quick and dirty server provisioning and app deployment using Chef
345
+ and Capistrano
346
+ test_files:
347
+ - spec/lib/fast_food_spec.rb
348
+ - spec/spec_helper.rb
349
+ has_rdoc: