themes 0.0.5 → 0.1

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 (189) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +52 -10
  3. data/lib/generators/themes/templates/theme_loader.rb.erb +3 -4
  4. data/lib/themes.rb +42 -5
  5. data/lib/themes/base_loader.rb +22 -0
  6. data/lib/themes/default_loader.rb +18 -0
  7. data/lib/themes/engine.rb +32 -15
  8. data/lib/themes/helpers.rb +2 -2
  9. data/lib/themes/middleware.rb +13 -0
  10. data/lib/themes/version.rb +1 -1
  11. data/spec/config/themes/test2_loader.rb +7 -0
  12. data/spec/config/themes/test_loader.rb +7 -0
  13. data/spec/configdb/themes/testdb2_loader.rb +5 -0
  14. data/spec/configdb/themes/testdb_loader.rb +5 -0
  15. data/spec/dummy3/config/themes +1 -0
  16. data/spec/dummy3/log/test.log +441 -0
  17. data/spec/dummy3db/README.rdoc +261 -0
  18. data/spec/dummy3db/Rakefile +7 -0
  19. data/spec/dummy3db/app +1 -0
  20. data/spec/dummy3db/config.ru +4 -0
  21. data/spec/dummy3db/config/application.rb +60 -0
  22. data/spec/dummy3db/config/boot.rb +10 -0
  23. data/spec/dummy3db/config/database.yml +26 -0
  24. data/spec/dummy3db/config/environment.rb +5 -0
  25. data/spec/dummy3db/config/environments/development.rb +37 -0
  26. data/spec/dummy3db/config/environments/production.rb +67 -0
  27. data/spec/dummy3db/config/environments/test.rb +37 -0
  28. data/spec/dummy3db/config/initializers/backtrace_silencers.rb +7 -0
  29. data/spec/dummy3db/config/initializers/inflections.rb +15 -0
  30. data/spec/dummy3db/config/initializers/mime_types.rb +5 -0
  31. data/spec/dummy3db/config/initializers/secret_token.rb +7 -0
  32. data/spec/dummy3db/config/initializers/session_store.rb +8 -0
  33. data/spec/dummy3db/config/initializers/wrap_parameters.rb +14 -0
  34. data/spec/dummy3db/config/locales/en.yml +5 -0
  35. data/spec/dummy3db/config/routes.rb +58 -0
  36. data/spec/dummy3db/config/themes +1 -0
  37. data/spec/dummy3db/log/test.log +764 -0
  38. data/spec/dummy3db/public/404.html +26 -0
  39. data/spec/dummy3db/public/422.html +26 -0
  40. data/spec/dummy3db/public/500.html +25 -0
  41. data/spec/{dummy/log/test.log → dummy3db/public/favicon.ico} +0 -0
  42. data/spec/dummy3db/script/rails +6 -0
  43. data/spec/dummy4/config/themes +1 -0
  44. data/spec/dummy4/log/test.log +322 -0
  45. data/spec/dummy4db/README.rdoc +261 -0
  46. data/spec/dummy4db/Rakefile +7 -0
  47. data/spec/dummy4db/app +1 -0
  48. data/spec/dummy4db/bin/bundle +3 -0
  49. data/spec/dummy4db/bin/rails +4 -0
  50. data/spec/dummy4db/bin/rake +4 -0
  51. data/spec/dummy4db/bin/setup +29 -0
  52. data/spec/dummy4db/config.ru +4 -0
  53. data/spec/dummy4db/config/application.rb +27 -0
  54. data/spec/dummy4db/config/boot.rb +3 -0
  55. data/spec/dummy4db/config/database.yml +26 -0
  56. data/spec/dummy4db/config/environment.rb +5 -0
  57. data/spec/dummy4db/config/environments/development.rb +41 -0
  58. data/spec/dummy4db/config/environments/production.rb +79 -0
  59. data/spec/dummy4db/config/environments/test.rb +42 -0
  60. data/spec/dummy4db/config/initializers/assets.rb +11 -0
  61. data/spec/dummy4db/config/initializers/backtrace_silencers.rb +7 -0
  62. data/spec/dummy4db/config/initializers/cookies_serializer.rb +3 -0
  63. data/spec/dummy4db/config/initializers/filter_parameter_logging.rb +4 -0
  64. data/spec/dummy4db/config/initializers/inflections.rb +16 -0
  65. data/spec/dummy4db/config/initializers/mime_types.rb +4 -0
  66. data/spec/dummy4db/config/initializers/secret_token.rb +12 -0
  67. data/spec/dummy4db/config/initializers/session_store.rb +3 -0
  68. data/spec/dummy4db/config/initializers/wrap_parameters.rb +14 -0
  69. data/spec/dummy4db/config/locales/en.yml +23 -0
  70. data/spec/dummy4db/config/routes.rb +57 -0
  71. data/spec/dummy4db/config/secrets.yml +22 -0
  72. data/spec/dummy4db/config/themes +1 -0
  73. data/spec/dummy4db/log/test.log +550 -0
  74. data/spec/dummy4db/public/404.html +26 -0
  75. data/spec/dummy4db/public/422.html +26 -0
  76. data/spec/dummy4db/public/500.html +25 -0
  77. data/spec/dummy4db/public/favicon.ico +0 -0
  78. data/spec/dummy4db/script/rails +6 -0
  79. data/spec/dummy5/config/themes +1 -0
  80. data/spec/dummy5/log/test.log +380 -0
  81. data/spec/dummy5db/README.rdoc +261 -0
  82. data/spec/dummy5db/Rakefile +7 -0
  83. data/spec/dummy5db/app +1 -0
  84. data/spec/dummy5db/bin/bundle +3 -0
  85. data/spec/dummy5db/bin/rails +4 -0
  86. data/spec/dummy5db/bin/rake +4 -0
  87. data/spec/dummy5db/bin/setup +36 -0
  88. data/spec/dummy5db/bin/update +31 -0
  89. data/spec/dummy5db/bin/yarn +11 -0
  90. data/spec/dummy5db/config.ru +4 -0
  91. data/spec/dummy5db/config/application.rb +20 -0
  92. data/spec/dummy5db/config/boot.rb +4 -0
  93. data/spec/dummy5db/config/cable.yml +10 -0
  94. data/spec/dummy5db/config/database.yml +26 -0
  95. data/spec/dummy5db/config/environment.rb +5 -0
  96. data/spec/dummy5db/config/environments/development.rb +61 -0
  97. data/spec/dummy5db/config/environments/production.rb +94 -0
  98. data/spec/dummy5db/config/environments/test.rb +46 -0
  99. data/spec/dummy5db/config/initializers/application_controller_renderer.rb +8 -0
  100. data/spec/dummy5db/config/initializers/assets.rb +14 -0
  101. data/spec/dummy5db/config/initializers/backtrace_silencers.rb +7 -0
  102. data/spec/dummy5db/config/initializers/content_security_policy.rb +25 -0
  103. data/spec/dummy5db/config/initializers/cookies_serializer.rb +5 -0
  104. data/spec/dummy5db/config/initializers/filter_parameter_logging.rb +4 -0
  105. data/spec/dummy5db/config/initializers/inflections.rb +16 -0
  106. data/spec/dummy5db/config/initializers/mime_types.rb +4 -0
  107. data/spec/dummy5db/config/initializers/new_framework_defaults_5_2.rb +38 -0
  108. data/spec/dummy5db/config/initializers/secret_token.rb +12 -0
  109. data/spec/dummy5db/config/initializers/session_store.rb +3 -0
  110. data/spec/dummy5db/config/initializers/wrap_parameters.rb +14 -0
  111. data/spec/dummy5db/config/locales/en.yml +33 -0
  112. data/spec/dummy5db/config/routes.rb +4 -0
  113. data/spec/dummy5db/config/secrets.yml +22 -0
  114. data/spec/dummy5db/config/storage.yml +34 -0
  115. data/spec/dummy5db/config/themes +1 -0
  116. data/spec/dummy5db/log/test.log +756 -0
  117. data/spec/dummy5db/public/404.html +26 -0
  118. data/spec/dummy5db/public/422.html +26 -0
  119. data/spec/dummy5db/public/500.html +25 -0
  120. data/spec/dummy5db/public/favicon.ico +0 -0
  121. data/spec/dummy5db/script/rails +6 -0
  122. data/spec/dummy6/config/themes +1 -0
  123. data/spec/dummy6/log/development.log +8 -0
  124. data/spec/dummy6/log/test.log +1555 -0
  125. data/spec/dummy6db/README.rdoc +261 -0
  126. data/spec/dummy6db/Rakefile +7 -0
  127. data/spec/dummy6db/app +1 -0
  128. data/spec/dummy6db/bin/bundle +3 -0
  129. data/spec/dummy6db/bin/rails +4 -0
  130. data/spec/dummy6db/bin/rake +4 -0
  131. data/spec/dummy6db/bin/setup +36 -0
  132. data/spec/dummy6db/bin/update +31 -0
  133. data/spec/dummy6db/bin/yarn +11 -0
  134. data/spec/dummy6db/config.ru +4 -0
  135. data/spec/dummy6db/config/application.rb +20 -0
  136. data/spec/dummy6db/config/boot.rb +3 -0
  137. data/spec/dummy6db/config/cable.yml +10 -0
  138. data/spec/dummy6db/config/database.yml +26 -0
  139. data/spec/dummy6db/config/environment.rb +5 -0
  140. data/spec/dummy6db/config/environments/development.rb +62 -0
  141. data/spec/dummy6db/config/environments/production.rb +112 -0
  142. data/spec/dummy6db/config/environments/test.rb +48 -0
  143. data/spec/dummy6db/config/initializers/application_controller_renderer.rb +8 -0
  144. data/spec/dummy6db/config/initializers/assets.rb +14 -0
  145. data/spec/dummy6db/config/initializers/backtrace_silencers.rb +7 -0
  146. data/spec/dummy6db/config/initializers/content_security_policy.rb +30 -0
  147. data/spec/dummy6db/config/initializers/cookies_serializer.rb +5 -0
  148. data/spec/dummy6db/config/initializers/filter_parameter_logging.rb +4 -0
  149. data/spec/dummy6db/config/initializers/inflections.rb +16 -0
  150. data/spec/dummy6db/config/initializers/mime_types.rb +4 -0
  151. data/spec/dummy6db/config/initializers/new_framework_defaults_5_2.rb +38 -0
  152. data/spec/dummy6db/config/initializers/new_framework_defaults_6_0.rb +45 -0
  153. data/spec/dummy6db/config/initializers/secret_token.rb +12 -0
  154. data/spec/dummy6db/config/initializers/session_store.rb +3 -0
  155. data/spec/dummy6db/config/initializers/wrap_parameters.rb +14 -0
  156. data/spec/dummy6db/config/locales/en.yml +33 -0
  157. data/spec/dummy6db/config/routes.rb +3 -0
  158. data/spec/dummy6db/config/secrets.yml +22 -0
  159. data/spec/dummy6db/config/storage.yml +34 -0
  160. data/spec/dummy6db/config/themes +1 -0
  161. data/spec/dummy6db/log/development.log +8 -0
  162. data/spec/dummy6db/log/test.log +2340 -0
  163. data/spec/dummy6db/public/404.html +26 -0
  164. data/spec/dummy6db/public/422.html +26 -0
  165. data/spec/dummy6db/public/500.html +25 -0
  166. data/spec/dummy6db/public/favicon.ico +0 -0
  167. data/spec/dummy6db/script/rails +6 -0
  168. data/spec/dummy_app_folder/models/theme_store.rb +10 -0
  169. data/spec/dummy_app_folder/views/themes/test2/layouts/application.html.erb +7 -0
  170. data/spec/dummy_app_folder/views/themes/test2/notifier/wellcome_message.html.erb +3 -0
  171. data/spec/dummy_app_folder/views/themes/test2/posts/index.html.erb +1 -0
  172. data/spec/dummy_app_folder/views/themes/testdb/layouts/application.html.erb +7 -0
  173. data/spec/dummy_app_folder/views/themes/testdb/notifier/wellcome_message.html.erb +3 -0
  174. data/spec/dummy_app_folder/views/themes/testdb/posts/index.html.erb +4 -0
  175. data/spec/dummy_app_folder/views/themes/testdb2/layouts/application.html.erb +7 -0
  176. data/spec/dummy_app_folder/views/themes/testdb2/notifier/wellcome_message.html.erb +3 -0
  177. data/spec/dummy_app_folder/views/themes/testdb2/posts/index.html.erb +4 -0
  178. data/spec/features/posts_controller_spec.rb +57 -12
  179. data/spec/generators/new_theme_generator_spec.rb +3 -4
  180. data/spec/mailer/notifier_spec.rb +13 -5
  181. data/spec/spec_helper.rb +1 -0
  182. data/spec/themes_engine_spec.rb +10 -5
  183. data/spec/tmp/config/themes/brand_new_theme.rb +3 -4
  184. metadata +329 -13
  185. data/lib/themes/loader.rb +0 -3
  186. data/spec/dummy3/config/themes/test.rb +0 -8
  187. data/spec/dummy4/config/themes/test.rb +0 -8
  188. data/spec/dummy5/config/themes/test.rb +0 -8
  189. data/spec/dummy6/config/themes/test.rb +0 -8
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1 @@
1
+ spec/dummy4/config/../../config/themes
@@ -194,3 +194,325 @@ Notifier#wellcome_message: processed outbound mail in 199.2ms
194
194
  Rendered notifier/good_bye_message.html.erb (0.3ms)
195
195
 
196
196
  Notifier#good_bye_message: processed outbound mail in 3.9ms
197
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:18 +0100
198
+ Processing by PostsController#index as HTML
199
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
200
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
201
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:18 +0100
202
+ Processing by PostsController#index as HTML
203
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
204
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
205
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
206
+
207
+ Notifier#wellcome_message: processed outbound mail in 160.1ms
208
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
209
+
210
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
211
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:22 +0100
212
+ Processing by PostsController#index as HTML
213
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
214
+ Completed 200 OK in 12ms (Views: 12.3ms | ActiveRecord: 0.0ms)
215
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:22 +0100
216
+ Processing by PostsController#index as HTML
217
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
218
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
219
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
220
+
221
+ Notifier#wellcome_message: processed outbound mail in 201.1ms
222
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
223
+
224
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
225
+ themes.path_setup
226
+ themes.middleware
227
+ themes.setup_theme
228
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
229
+ configure test theme
230
+ Processing by PostsController#index as HTML
231
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.4ms)
232
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
233
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
234
+ configure test theme
235
+ Processing by PostsController#index as HTML
236
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
237
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
238
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
239
+ Processing by PostsController#index as HTML
240
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.2ms)
241
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
242
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
243
+ Processing by PostsController#index as HTML
244
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
245
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
246
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
247
+ Processing by PostsController#index as HTML
248
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
249
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
250
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:13 +0100
251
+ Processing by PostsController#index as HTML
252
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
253
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
254
+ configure test theme
255
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
256
+
257
+ Notifier#wellcome_message: processed outbound mail in 161.4ms
258
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
259
+
260
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
261
+ configure test theme
262
+ configure test theme
263
+ configure test theme
264
+ configure test theme
265
+ configure test theme
266
+ configure test theme
267
+ themes.path_setup
268
+ themes.middleware
269
+ themes.setup_theme
270
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
271
+ configure test theme
272
+ Processing by PostsController#index as HTML
273
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.3ms)
274
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
275
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
276
+ configure test theme
277
+ Processing by PostsController#index as HTML
278
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
279
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
280
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
281
+ Processing by PostsController#index as HTML
282
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
283
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
284
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
285
+ Processing by PostsController#index as HTML
286
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
287
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
288
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
289
+ Processing by PostsController#index as HTML
290
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
291
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
292
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
293
+ Processing by PostsController#index as HTML
294
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
295
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
296
+ configure test theme
297
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
298
+
299
+ Notifier#wellcome_message: processed outbound mail in 211.7ms
300
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
301
+
302
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
303
+ configure test theme
304
+ configure test theme
305
+ configure test theme
306
+ configure test theme
307
+ configure test theme
308
+ configure test theme
309
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:20 +0100
310
+ Processing by PostsController#index as HTML
311
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.3ms)
312
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
313
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:20 +0100
314
+ Processing by PostsController#index as HTML
315
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
316
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
317
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:20 +0100
318
+ Processing by PostsController#index as HTML
319
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
320
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
321
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:20 +0100
322
+ Processing by PostsController#index as HTML
323
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
324
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
325
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:20 +0100
326
+ Processing by PostsController#index as HTML
327
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
328
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
329
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:20 +0100
330
+ Processing by PostsController#index as HTML
331
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
332
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
333
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
334
+
335
+ Notifier#wellcome_message: processed outbound mail in 155.0ms
336
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
337
+
338
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
339
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:25 +0100
340
+ Processing by PostsController#index as HTML
341
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
342
+ Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
343
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:25 +0100
344
+ Processing by PostsController#index as HTML
345
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
346
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
347
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:25 +0100
348
+ Processing by PostsController#index as HTML
349
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
350
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
351
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:25 +0100
352
+ Processing by PostsController#index as HTML
353
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
354
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
355
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:25 +0100
356
+ Processing by PostsController#index as HTML
357
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
358
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
359
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:25 +0100
360
+ Processing by PostsController#index as HTML
361
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
362
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
363
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
364
+
365
+ Notifier#wellcome_message: processed outbound mail in 155.6ms
366
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
367
+
368
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
369
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:28 +0100
370
+ Processing by PostsController#index as HTML
371
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
372
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
373
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:28 +0100
374
+ Processing by PostsController#index as HTML
375
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
376
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
377
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:29 +0100
378
+ Processing by PostsController#index as HTML
379
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
380
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
381
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:29 +0100
382
+ Processing by PostsController#index as HTML
383
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
384
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
385
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:29 +0100
386
+ Processing by PostsController#index as HTML
387
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
388
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
389
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:29 +0100
390
+ Processing by PostsController#index as HTML
391
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
392
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
393
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
394
+
395
+ Notifier#wellcome_message: processed outbound mail in 221.4ms
396
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
397
+
398
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:52 +0100
400
+ Processing by PostsController#index as HTML
401
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
402
+ Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
403
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:52 +0100
404
+ Processing by PostsController#index as HTML
405
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
406
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
407
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:52 +0100
408
+ Processing by PostsController#index as HTML
409
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
410
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
411
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:52 +0100
412
+ Processing by PostsController#index as HTML
413
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.2ms)
414
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
415
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:52 +0100
416
+ Processing by PostsController#index as HTML
417
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
418
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
419
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:52 +0100
420
+ Processing by PostsController#index as HTML
421
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
422
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
423
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
424
+
425
+ Notifier#wellcome_message: processed outbound mail in 155.9ms
426
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
427
+
428
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
429
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:56 +0100
430
+ Processing by PostsController#index as HTML
431
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
432
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
433
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:56 +0100
434
+ Processing by PostsController#index as HTML
435
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
436
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
437
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:56 +0100
438
+ Processing by PostsController#index as HTML
439
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
440
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
441
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:56 +0100
442
+ Processing by PostsController#index as HTML
443
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
444
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
445
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:56 +0100
446
+ Processing by PostsController#index as HTML
447
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
448
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
449
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:56 +0100
450
+ Processing by PostsController#index as HTML
451
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
452
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
453
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
454
+
455
+ Notifier#wellcome_message: processed outbound mail in 215.9ms
456
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
457
+
458
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
459
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:22 +0100
460
+ Processing by PostsController#index as HTML
461
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
462
+ Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
463
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:22 +0100
464
+ Processing by PostsController#index as HTML
465
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
466
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
467
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:22 +0100
468
+ Processing by PostsController#index as HTML
469
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
470
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
471
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:22 +0100
472
+ Processing by PostsController#index as HTML
473
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
474
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
475
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:22 +0100
476
+ Processing by PostsController#index as HTML
477
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
478
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
479
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:22 +0100
480
+ Processing by PostsController#index as HTML
481
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
482
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
483
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
484
+
485
+ Notifier#wellcome_message: processed outbound mail in 158.6ms
486
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
487
+
488
+ Notifier#good_bye_message: processed outbound mail in 3.9ms
489
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:26 +0100
490
+ Processing by PostsController#index as HTML
491
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
492
+ Completed 200 OK in 13ms (Views: 13.2ms | ActiveRecord: 0.0ms)
493
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:26 +0100
494
+ Processing by PostsController#index as HTML
495
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
496
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
497
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:26 +0100
498
+ Processing by PostsController#index as HTML
499
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
500
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
501
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:26 +0100
502
+ Processing by PostsController#index as HTML
503
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
504
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
505
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:26 +0100
506
+ Processing by PostsController#index as HTML
507
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
508
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
509
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:26 +0100
510
+ Processing by PostsController#index as HTML
511
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
512
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
513
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
514
+
515
+ Notifier#wellcome_message: processed outbound mail in 204.9ms
516
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
517
+
518
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
@@ -0,0 +1,261 @@
1
+ == Welcome to Rails
2
+
3
+ Rails is a web-application framework that includes everything needed to create
4
+ database-backed web applications according to the Model-View-Control pattern.
5
+
6
+ This pattern splits the view (also called the presentation) into "dumb"
7
+ templates that are primarily responsible for inserting pre-built data in between
8
+ HTML tags. The model contains the "smart" domain objects (such as Account,
9
+ Product, Person, Post) that holds all the business logic and knows how to
10
+ persist themselves to a database. The controller handles the incoming requests
11
+ (such as Save New Account, Update Product, Show Post) by manipulating the model
12
+ and directing data to the view.
13
+
14
+ In Rails, the model is handled by what's called an object-relational mapping
15
+ layer entitled Active Record. This layer allows you to present the data from
16
+ database rows as objects and embellish these data objects with business logic
17
+ methods. You can read more about Active Record in
18
+ link:files/vendor/rails/activerecord/README.html.
19
+
20
+ The controller and view are handled by the Action Pack, which handles both
21
+ layers by its two parts: Action View and Action Controller. These two layers
22
+ are bundled in a single package due to their heavy interdependence. This is
23
+ unlike the relationship between the Active Record and Action Pack that is much
24
+ more separate. Each of these packages can be used independently outside of
25
+ Rails. You can read more about Action Pack in
26
+ link:files/vendor/rails/actionpack/README.html.
27
+
28
+
29
+ == Getting Started
30
+
31
+ 1. At the command prompt, create a new Rails application:
32
+ <tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name)
33
+
34
+ 2. Change directory to <tt>myapp</tt> and start the web server:
35
+ <tt>cd myapp; rails server</tt> (run with --help for options)
36
+
37
+ 3. Go to http://localhost:3000/ and you'll see:
38
+ "Welcome aboard: You're riding Ruby on Rails!"
39
+
40
+ 4. Follow the guidelines to start developing your application. You can find
41
+ the following resources handy:
42
+
43
+ * The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html
44
+ * Ruby on Rails Tutorial Book: http://www.railstutorial.org/
45
+
46
+
47
+ == Debugging Rails
48
+
49
+ Sometimes your application goes wrong. Fortunately there are a lot of tools that
50
+ will help you debug it and get it back on the rails.
51
+
52
+ First area to check is the application log files. Have "tail -f" commands
53
+ running on the server.log and development.log. Rails will automatically display
54
+ debugging and runtime information to these files. Debugging info will also be
55
+ shown in the browser on requests from 127.0.0.1.
56
+
57
+ You can also log your own messages directly into the log file from your code
58
+ using the Ruby logger class from inside your controllers. Example:
59
+
60
+ class WeblogController < ActionController::Base
61
+ def destroy
62
+ @weblog = Weblog.find(params[:id])
63
+ @weblog.destroy
64
+ logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
65
+ end
66
+ end
67
+
68
+ The result will be a message in your log file along the lines of:
69
+
70
+ Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1!
71
+
72
+ More information on how to use the logger is at http://www.ruby-doc.org/core/
73
+
74
+ Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are
75
+ several books available online as well:
76
+
77
+ * Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe)
78
+ * Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
79
+
80
+ These two books will bring you up to speed on the Ruby language and also on
81
+ programming in general.
82
+
83
+
84
+ == Debugger
85
+
86
+ Debugger support is available through the debugger command when you start your
87
+ Mongrel or WEBrick server with --debugger. This means that you can break out of
88
+ execution at any point in the code, investigate and change the model, and then,
89
+ resume execution! You need to install ruby-debug to run the server in debugging
90
+ mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example:
91
+
92
+ class WeblogController < ActionController::Base
93
+ def index
94
+ @posts = Post.all
95
+ debugger
96
+ end
97
+ end
98
+
99
+ So the controller will accept the action, run the first line, then present you
100
+ with a IRB prompt in the server window. Here you can do things like:
101
+
102
+ >> @posts.inspect
103
+ => "[#<Post:0x14a6be8
104
+ @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>,
105
+ #<Post:0x14a6620
106
+ @attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]"
107
+ >> @posts.first.title = "hello from a debugger"
108
+ => "hello from a debugger"
109
+
110
+ ...and even better, you can examine how your runtime objects actually work:
111
+
112
+ >> f = @posts.first
113
+ => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
114
+ >> f.
115
+ Display all 152 possibilities? (y or n)
116
+
117
+ Finally, when you're ready to resume execution, you can enter "cont".
118
+
119
+
120
+ == Console
121
+
122
+ The console is a Ruby shell, which allows you to interact with your
123
+ application's domain model. Here you'll have all parts of the application
124
+ configured, just like it is when the application is running. You can inspect
125
+ domain models, change values, and save to the database. Starting the script
126
+ without arguments will launch it in the development environment.
127
+
128
+ To start the console, run <tt>rails console</tt> from the application
129
+ directory.
130
+
131
+ Options:
132
+
133
+ * Passing the <tt>-s, --sandbox</tt> argument will rollback any modifications
134
+ made to the database.
135
+ * Passing an environment name as an argument will load the corresponding
136
+ environment. Example: <tt>rails console production</tt>.
137
+
138
+ To reload your controllers and models after launching the console run
139
+ <tt>reload!</tt>
140
+
141
+ More information about irb can be found at:
142
+ link:http://www.rubycentral.org/pickaxe/irb.html
143
+
144
+
145
+ == dbconsole
146
+
147
+ You can go to the command line of your database directly through <tt>rails
148
+ dbconsole</tt>. You would be connected to the database with the credentials
149
+ defined in database.yml. Starting the script without arguments will connect you
150
+ to the development database. Passing an argument will connect you to a different
151
+ database, like <tt>rails dbconsole production</tt>. Currently works for MySQL,
152
+ PostgreSQL and SQLite 3.
153
+
154
+ == Description of Contents
155
+
156
+ The default directory structure of a generated Ruby on Rails application:
157
+
158
+ |-- app
159
+ | |-- assets
160
+ | |-- images
161
+ | |-- javascripts
162
+ | `-- stylesheets
163
+ | |-- controllers
164
+ | |-- helpers
165
+ | |-- mailers
166
+ | |-- models
167
+ | `-- views
168
+ | `-- layouts
169
+ |-- config
170
+ | |-- environments
171
+ | |-- initializers
172
+ | `-- locales
173
+ |-- db
174
+ |-- doc
175
+ |-- lib
176
+ | `-- tasks
177
+ |-- log
178
+ |-- public
179
+ |-- script
180
+ |-- test
181
+ | |-- fixtures
182
+ | |-- functional
183
+ | |-- integration
184
+ | |-- performance
185
+ | `-- unit
186
+ |-- tmp
187
+ | |-- cache
188
+ | |-- pids
189
+ | |-- sessions
190
+ | `-- sockets
191
+ `-- vendor
192
+ |-- assets
193
+ `-- stylesheets
194
+ `-- plugins
195
+
196
+ app
197
+ Holds all the code that's specific to this particular application.
198
+
199
+ app/assets
200
+ Contains subdirectories for images, stylesheets, and JavaScript files.
201
+
202
+ app/controllers
203
+ Holds controllers that should be named like weblogs_controller.rb for
204
+ automated URL mapping. All controllers should descend from
205
+ ApplicationController which itself descends from ActionController::Base.
206
+
207
+ app/models
208
+ Holds models that should be named like post.rb. Models descend from
209
+ ActiveRecord::Base by default.
210
+
211
+ app/views
212
+ Holds the template files for the view that should be named like
213
+ weblogs/index.html.erb for the WeblogsController#index action. All views use
214
+ eRuby syntax by default.
215
+
216
+ app/views/layouts
217
+ Holds the template files for layouts to be used with views. This models the
218
+ common header/footer method of wrapping views. In your views, define a layout
219
+ using the <tt>layout :default</tt> and create a file named default.html.erb.
220
+ Inside default.html.erb, call <% yield %> to render the view using this
221
+ layout.
222
+
223
+ app/helpers
224
+ Holds view helpers that should be named like weblogs_helper.rb. These are
225
+ generated for you automatically when using generators for controllers.
226
+ Helpers can be used to wrap functionality for your views into methods.
227
+
228
+ config
229
+ Configuration files for the Rails environment, the routing map, the database,
230
+ and other dependencies.
231
+
232
+ db
233
+ Contains the database schema in schema.rb. db/migrate contains all the
234
+ sequence of Migrations for your schema.
235
+
236
+ doc
237
+ This directory is where your application documentation will be stored when
238
+ generated using <tt>rake doc:app</tt>
239
+
240
+ lib
241
+ Application specific libraries. Basically, any kind of custom code that
242
+ doesn't belong under controllers, models, or helpers. This directory is in
243
+ the load path.
244
+
245
+ public
246
+ The directory available for the web server. Also contains the dispatchers and the
247
+ default HTML files. This should be set as the DOCUMENT_ROOT of your web
248
+ server.
249
+
250
+ script
251
+ Helper scripts for automation and generation.
252
+
253
+ test
254
+ Unit and functional tests along with fixtures. When using the rails generate
255
+ command, template test files will be generated for you and placed in this
256
+ directory.
257
+
258
+ vendor
259
+ External libraries that the application depends on. Also includes the plugins
260
+ subdirectory. If the app has frozen rails, those gems also go here, under
261
+ vendor/rails/. This directory is in the load path.