themes 0.0.5 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
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>
File without changes
@@ -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/dummy5/config/../../config/themes
@@ -334,3 +334,383 @@ Notifier#wellcome_message: processed outbound mail in 280.6ms
334
334
  Rendering notifier/good_bye_message.html.erb
335
335
  Rendered notifier/good_bye_message.html.erb (0.3ms)
336
336
  Notifier#good_bye_message: processed outbound mail in 4.6ms
337
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:08 +0100
338
+ Processing by PostsController#index as HTML
339
+ Rendering themes/test/posts/index.html.erb within layouts/application
340
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
341
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.0ms)
342
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:08 +0100
343
+ Processing by PostsController#index as HTML
344
+ Rendering themes/test/posts/index.html.erb within layouts/application
345
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
346
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
347
+ Rendering themes/test/notifier/wellcome_message.html.erb
348
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
349
+ Notifier#wellcome_message: processed outbound mail in 151.1ms
350
+ Rendering notifier/good_bye_message.html.erb
351
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
352
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
353
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:13 +0100
354
+ Processing by PostsController#index as HTML
355
+ Rendering themes/test/posts/index.html.erb within layouts/application
356
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
357
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.0ms)
358
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:13 +0100
359
+ Processing by PostsController#index as HTML
360
+ Rendering themes/test/posts/index.html.erb within layouts/application
361
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
362
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
363
+ Rendering themes/test/notifier/wellcome_message.html.erb
364
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
365
+ Notifier#wellcome_message: processed outbound mail in 254.5ms
366
+ Rendering notifier/good_bye_message.html.erb
367
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
368
+ Notifier#good_bye_message: processed outbound mail in 4.5ms
369
+ themes.path_setup
370
+ themes.middleware
371
+ themes.setup_theme
372
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
373
+ configure test theme
374
+ Processing by PostsController#index as HTML
375
+ Rendering themes/test/posts/index.html.erb within layouts/application
376
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
377
+ Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.0ms)
378
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
379
+ configure test theme
380
+ Processing by PostsController#index as HTML
381
+ Rendering themes/test/posts/index.html.erb within layouts/application
382
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
383
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.0ms)
384
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
385
+ Processing by PostsController#index as HTML
386
+ Rendering themes/test2/posts/index.html.erb within layouts/application
387
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
388
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
389
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
390
+ Processing by PostsController#index as HTML
391
+ Rendering themes/test2/posts/index.html.erb within layouts/application
392
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
393
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
394
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
395
+ Processing by PostsController#index as HTML
396
+ Rendering posts/index.html.erb within layouts/application
397
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
398
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
400
+ Processing by PostsController#index as HTML
401
+ Rendering posts/index.html.erb within layouts/application
402
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
403
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
404
+ configure test theme
405
+ Rendering themes/test/notifier/wellcome_message.html.erb
406
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
407
+ Notifier#wellcome_message: processed outbound mail in 154.7ms
408
+ Rendering notifier/good_bye_message.html.erb
409
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
410
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
411
+ configure test theme
412
+ configure test theme
413
+ configure test theme
414
+ configure test theme
415
+ configure test theme
416
+ configure test theme
417
+ themes.path_setup
418
+ themes.middleware
419
+ themes.setup_theme
420
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
421
+ configure test theme
422
+ Processing by PostsController#index as HTML
423
+ Rendering themes/test/posts/index.html.erb within layouts/application
424
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
425
+ Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.0ms)
426
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
427
+ configure test theme
428
+ Processing by PostsController#index as HTML
429
+ Rendering themes/test/posts/index.html.erb within layouts/application
430
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.4ms)
431
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
432
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
433
+ Processing by PostsController#index as HTML
434
+ Rendering themes/test2/posts/index.html.erb within layouts/application
435
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
436
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
437
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
438
+ Processing by PostsController#index as HTML
439
+ Rendering themes/test2/posts/index.html.erb within layouts/application
440
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
441
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
442
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
443
+ Processing by PostsController#index as HTML
444
+ Rendering posts/index.html.erb within layouts/application
445
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
446
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
447
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
448
+ Processing by PostsController#index as HTML
449
+ Rendering posts/index.html.erb within layouts/application
450
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
451
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
452
+ configure test theme
453
+ Rendering themes/test/notifier/wellcome_message.html.erb
454
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
455
+ Notifier#wellcome_message: processed outbound mail in 255.9ms
456
+ Rendering notifier/good_bye_message.html.erb
457
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
458
+ Notifier#good_bye_message: processed outbound mail in 4.6ms
459
+ configure test theme
460
+ configure test theme
461
+ configure test theme
462
+ configure test theme
463
+ configure test theme
464
+ configure test theme
465
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:54:44 +0100
466
+ Processing by PostsController#index as HTML
467
+ Rendering themes/test/posts/index.html.erb within layouts/application
468
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
469
+ Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.0ms)
470
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:54:44 +0100
471
+ Processing by PostsController#index as HTML
472
+ Rendering themes/test/posts/index.html.erb within layouts/application
473
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
474
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
475
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:54:44 +0100
476
+ Processing by PostsController#index as HTML
477
+ Rendering themes/test2/posts/index.html.erb within layouts/application
478
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
479
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
480
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:54:44 +0100
481
+ Processing by PostsController#index as HTML
482
+ Rendering themes/test2/posts/index.html.erb within layouts/application
483
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
484
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
485
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:54:44 +0100
486
+ Processing by PostsController#index as HTML
487
+ Rendering posts/index.html.erb within layouts/application
488
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
489
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
490
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:54:44 +0100
491
+ Processing by PostsController#index as HTML
492
+ Rendering posts/index.html.erb within layouts/application
493
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
494
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
495
+ Rendering themes/test/notifier/wellcome_message.html.erb
496
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
497
+ Notifier#wellcome_message: processed outbound mail in 159.2ms
498
+ Rendering notifier/good_bye_message.html.erb
499
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
500
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
501
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:08 +0100
502
+ Processing by PostsController#index as HTML
503
+ Rendering themes/test/posts/index.html.erb within layouts/application
504
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
505
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.0ms)
506
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:08 +0100
507
+ Processing by PostsController#index as HTML
508
+ Rendering themes/test/posts/index.html.erb within layouts/application
509
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
510
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.0ms)
511
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:08 +0100
512
+ Processing by PostsController#index as HTML
513
+ Rendering themes/test2/posts/index.html.erb within layouts/application
514
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
515
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.0ms)
516
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:08 +0100
517
+ Processing by PostsController#index as HTML
518
+ Rendering themes/test2/posts/index.html.erb within layouts/application
519
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
520
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
521
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:08 +0100
522
+ Processing by PostsController#index as HTML
523
+ Rendering posts/index.html.erb within layouts/application
524
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
525
+ Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
526
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:08 +0100
527
+ Processing by PostsController#index as HTML
528
+ Rendering posts/index.html.erb within layouts/application
529
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
530
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
531
+ Rendering themes/test/notifier/wellcome_message.html.erb
532
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
533
+ Notifier#wellcome_message: processed outbound mail in 183.7ms
534
+ Rendering notifier/good_bye_message.html.erb
535
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
536
+ Notifier#good_bye_message: processed outbound mail in 4.6ms
537
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:12 +0100
538
+ Processing by PostsController#index as HTML
539
+ Rendering themes/test/posts/index.html.erb within layouts/application
540
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
541
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.0ms)
542
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:12 +0100
543
+ Processing by PostsController#index as HTML
544
+ Rendering themes/test/posts/index.html.erb within layouts/application
545
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
546
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
547
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:12 +0100
548
+ Processing by PostsController#index as HTML
549
+ Rendering themes/test2/posts/index.html.erb within layouts/application
550
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
551
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
552
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:12 +0100
553
+ Processing by PostsController#index as HTML
554
+ Rendering themes/test2/posts/index.html.erb within layouts/application
555
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
556
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
557
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:12 +0100
558
+ Processing by PostsController#index as HTML
559
+ Rendering posts/index.html.erb within layouts/application
560
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
561
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
562
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:12 +0100
563
+ Processing by PostsController#index as HTML
564
+ Rendering posts/index.html.erb within layouts/application
565
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
566
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
567
+ Rendering themes/test/notifier/wellcome_message.html.erb
568
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
569
+ Notifier#wellcome_message: processed outbound mail in 208.3ms
570
+ Rendering notifier/good_bye_message.html.erb
571
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
572
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
573
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:36 +0100
574
+ Processing by PostsController#index as HTML
575
+ Rendering themes/test/posts/index.html.erb within layouts/application
576
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
577
+ Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.0ms)
578
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:36 +0100
579
+ Processing by PostsController#index as HTML
580
+ Rendering themes/test/posts/index.html.erb within layouts/application
581
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
582
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
583
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:36 +0100
584
+ Processing by PostsController#index as HTML
585
+ Rendering themes/test2/posts/index.html.erb within layouts/application
586
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
587
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
588
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:36 +0100
589
+ Processing by PostsController#index as HTML
590
+ Rendering themes/test2/posts/index.html.erb within layouts/application
591
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
592
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
593
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:36 +0100
594
+ Processing by PostsController#index as HTML
595
+ Rendering posts/index.html.erb within layouts/application
596
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
597
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.0ms)
598
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:36 +0100
599
+ Processing by PostsController#index as HTML
600
+ Rendering posts/index.html.erb within layouts/application
601
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
602
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
603
+ Rendering themes/test/notifier/wellcome_message.html.erb
604
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
605
+ Notifier#wellcome_message: processed outbound mail in 163.5ms
606
+ Rendering notifier/good_bye_message.html.erb
607
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
608
+ Notifier#good_bye_message: processed outbound mail in 4.1ms
609
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:40 +0100
610
+ Processing by PostsController#index as HTML
611
+ Rendering themes/test/posts/index.html.erb within layouts/application
612
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
613
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.0ms)
614
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:40 +0100
615
+ Processing by PostsController#index as HTML
616
+ Rendering themes/test/posts/index.html.erb within layouts/application
617
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
618
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
619
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:40 +0100
620
+ Processing by PostsController#index as HTML
621
+ Rendering themes/test2/posts/index.html.erb within layouts/application
622
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
623
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
624
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:40 +0100
625
+ Processing by PostsController#index as HTML
626
+ Rendering themes/test2/posts/index.html.erb within layouts/application
627
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
628
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
629
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:41 +0100
630
+ Processing by PostsController#index as HTML
631
+ Rendering posts/index.html.erb within layouts/application
632
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
633
+ Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
634
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:41 +0100
635
+ Processing by PostsController#index as HTML
636
+ Rendering posts/index.html.erb within layouts/application
637
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
638
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
639
+ Rendering themes/test/notifier/wellcome_message.html.erb
640
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
641
+ Notifier#wellcome_message: processed outbound mail in 265.2ms
642
+ Rendering notifier/good_bye_message.html.erb
643
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
644
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
645
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:05 +0100
646
+ Processing by PostsController#index as HTML
647
+ Rendering themes/test/posts/index.html.erb within layouts/application
648
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
649
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.0ms)
650
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:05 +0100
651
+ Processing by PostsController#index as HTML
652
+ Rendering themes/test/posts/index.html.erb within layouts/application
653
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
654
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
655
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:05 +0100
656
+ Processing by PostsController#index as HTML
657
+ Rendering themes/test2/posts/index.html.erb within layouts/application
658
+ Rendered themes/test2/posts/index.html.erb within layouts/application (1.0ms)
659
+ Completed 200 OK in 8ms (Views: 5.5ms | ActiveRecord: 0.0ms)
660
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:05 +0100
661
+ Processing by PostsController#index as HTML
662
+ Rendering themes/test2/posts/index.html.erb within layouts/application
663
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
664
+ Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.0ms)
665
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:05 +0100
666
+ Processing by PostsController#index as HTML
667
+ Rendering posts/index.html.erb within layouts/application
668
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
669
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
670
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:05 +0100
671
+ Processing by PostsController#index as HTML
672
+ Rendering posts/index.html.erb within layouts/application
673
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
674
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
675
+ Rendering themes/test/notifier/wellcome_message.html.erb
676
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.7ms)
677
+ Notifier#wellcome_message: processed outbound mail in 210.9ms
678
+ Rendering notifier/good_bye_message.html.erb
679
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
680
+ Notifier#good_bye_message: processed outbound mail in 5.1ms
681
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:10 +0100
682
+ Processing by PostsController#index as HTML
683
+ Rendering themes/test/posts/index.html.erb within layouts/application
684
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.3ms)
685
+ Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.0ms)
686
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:10 +0100
687
+ Processing by PostsController#index as HTML
688
+ Rendering themes/test/posts/index.html.erb within layouts/application
689
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.4ms)
690
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
691
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:10 +0100
692
+ Processing by PostsController#index as HTML
693
+ Rendering themes/test2/posts/index.html.erb within layouts/application
694
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
695
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
696
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:10 +0100
697
+ Processing by PostsController#index as HTML
698
+ Rendering themes/test2/posts/index.html.erb within layouts/application
699
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
700
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
701
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:10 +0100
702
+ Processing by PostsController#index as HTML
703
+ Rendering posts/index.html.erb within layouts/application
704
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
705
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
706
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:10 +0100
707
+ Processing by PostsController#index as HTML
708
+ Rendering posts/index.html.erb within layouts/application
709
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
710
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
711
+ Rendering themes/test/notifier/wellcome_message.html.erb
712
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
713
+ Notifier#wellcome_message: processed outbound mail in 235.9ms
714
+ Rendering notifier/good_bye_message.html.erb
715
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
716
+ Notifier#good_bye_message: processed outbound mail in 4.3ms