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/dummy6/config/../../config/themes
@@ -0,0 +1,8 @@
1
+ themes.path_setup
2
+ themes.middleware
3
+ themes.setup_theme
4
+ themes.path_setup
5
+ themes.middleware
6
+ themes.path_setup
7
+ themes.middleware
8
+ themes.setup_theme
@@ -628,3 +628,1558 @@ Notifier#wellcome_message: processed outbound mail in 7.9ms
628
628
  Rendering notifier/good_bye_message.html.erb
629
629
  Rendered notifier/good_bye_message.html.erb (Duration: 1.3ms | Allocations: 87)
630
630
  Notifier#good_bye_message: processed outbound mail in 3.5ms
631
+  (1.6ms) SELECT sqlite_version(*)
632
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:04 +0100
633
+ Processing by PostsController#index as HTML
634
+ Rendering themes/test/posts/index.html.erb within layouts/application
635
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
636
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms | Allocations: 2642)
637
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:04 +0100
638
+ Processing by PostsController#index as HTML
639
+ Rendering themes/test/posts/index.html.erb within layouts/application
640
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
641
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
642
+ Rendering themes/test/notifier/wellcome_message.html.erb
643
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
644
+ Notifier#wellcome_message: processed outbound mail in 7.0ms
645
+ Rendering notifier/good_bye_message.html.erb
646
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
647
+ Notifier#good_bye_message: processed outbound mail in 2.2ms
648
+  (2.6ms) SELECT sqlite_version(*)
649
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:15:58 +0100
650
+ Processing by PostsController#index as HTML
651
+ Rendering posts/index.html.erb within layouts/application
652
+ Rendered posts/index.html.erb within layouts/application (Duration: 2.4ms | Allocations: 368)
653
+ Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.0ms | Allocations: 2537)
654
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:15:58 +0100
655
+ Processing by PostsController#index as HTML
656
+ Rendering posts/index.html.erb within layouts/application
657
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
658
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 321)
659
+ Rendering notifier/wellcome_message.html.erb
660
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
661
+ Notifier#wellcome_message: processed outbound mail in 6.3ms
662
+ Rendering notifier/good_bye_message.html.erb
663
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 87)
664
+ Notifier#good_bye_message: processed outbound mail in 1.5ms
665
+  (1.6ms) SELECT sqlite_version(*)
666
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:20:16 +0100
667
+ Processing by PostsController#index as HTML
668
+ Rendering posts/index.html.erb within layouts/application
669
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
670
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 2537)
671
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:20:16 +0100
672
+ Processing by PostsController#index as HTML
673
+ Rendering posts/index.html.erb within layouts/application
674
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
675
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 322)
676
+ Rendering notifier/wellcome_message.html.erb
677
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 92)
678
+ Notifier#wellcome_message: processed outbound mail in 6.7ms
679
+ Rendering notifier/good_bye_message.html.erb
680
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
681
+ Notifier#good_bye_message: processed outbound mail in 5.4ms
682
+  (1.8ms) SELECT sqlite_version(*)
683
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:21:53 +0100
684
+ Processing by PostsController#index as HTML
685
+ Rendering posts/index.html.erb within layouts/application
686
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
687
+ Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.0ms | Allocations: 2537)
688
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:21:53 +0100
689
+ Processing by PostsController#index as HTML
690
+ Rendering posts/index.html.erb within layouts/application
691
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
692
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 321)
693
+ Rendering notifier/wellcome_message.html.erb
694
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 90)
695
+ Notifier#wellcome_message: processed outbound mail in 4.7ms
696
+ Rendering notifier/good_bye_message.html.erb
697
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
698
+ Notifier#good_bye_message: processed outbound mail in 3.5ms
699
+  (2.1ms) SELECT sqlite_version(*)
700
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:25:27 +0100
701
+ Processing by PostsController#index as HTML
702
+ Rendering posts/index.html.erb within layouts/application
703
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 368)
704
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms | Allocations: 2539)
705
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:25:27 +0100
706
+ Processing by PostsController#index as HTML
707
+ Rendering posts/index.html.erb within layouts/application
708
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
709
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 321)
710
+ Rendering notifier/wellcome_message.html.erb
711
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
712
+ Notifier#wellcome_message: processed outbound mail in 5.0ms
713
+ Rendering notifier/good_bye_message.html.erb
714
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
715
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
716
+  (1.7ms) SELECT sqlite_version(*)
717
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:25:50 +0100
718
+ Processing by PostsController#index as HTML
719
+ Rendering posts/index.html.erb within layouts/application
720
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
721
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms | Allocations: 2537)
722
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:25:50 +0100
723
+ Processing by PostsController#index as HTML
724
+ Rendering posts/index.html.erb within layouts/application
725
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 4)
726
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 321)
727
+  (1.3ms) SELECT sqlite_version(*)
728
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:27:11 +0100
729
+ Processing by PostsController#index as HTML
730
+ Rendering posts/index.html.erb within layouts/application
731
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
732
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms | Allocations: 2537)
733
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:27:11 +0100
734
+ Processing by PostsController#index as HTML
735
+ Rendering posts/index.html.erb within layouts/application
736
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
737
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 321)
738
+  (1.3ms) SELECT sqlite_version(*)
739
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:29:12 +0100
740
+ Processing by PostsController#index as HTML
741
+ Rendering posts/index.html.erb within layouts/application
742
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
743
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2537)
744
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:29:12 +0100
745
+ Processing by PostsController#index as HTML
746
+ Rendering posts/index.html.erb within layouts/application
747
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
748
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 321)
749
+  (1.3ms) SELECT sqlite_version(*)
750
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:29:32 +0100
751
+ Processing by PostsController#index as HTML
752
+ Rendering posts/index.html.erb within layouts/application
753
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.4ms | Allocations: 368)
754
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms | Allocations: 2537)
755
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:29:32 +0100
756
+ Processing by PostsController#index as HTML
757
+ Rendering posts/index.html.erb within layouts/application
758
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
759
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 321)
760
+  (1.4ms) SELECT sqlite_version(*)
761
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:32:39 +0100
762
+ Processing by PostsController#index as HTML
763
+ Rendering posts/index.html.erb within layouts/application
764
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
765
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms | Allocations: 2537)
766
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:32:39 +0100
767
+ Processing by PostsController#index as HTML
768
+ Rendering posts/index.html.erb within layouts/application
769
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
770
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 321)
771
+  (1.3ms) SELECT sqlite_version(*)
772
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:34:07 +0100
773
+ Processing by PostsController#index as HTML
774
+ Rendering posts/index.html.erb within layouts/application
775
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
776
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms | Allocations: 2537)
777
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:34:07 +0100
778
+ Processing by PostsController#index as HTML
779
+ Rendering posts/index.html.erb within layouts/application
780
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
781
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 321)
782
+ themes.path_setup
783
+ themes.middleware
784
+ themes.setup_theme
785
+  (1.3ms) SELECT sqlite_version(*)
786
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:37:32 +0100
787
+ Processing by PostsController#index as HTML
788
+ Rendering posts/index.html.erb within layouts/application
789
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
790
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms | Allocations: 2537)
791
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:37:32 +0100
792
+ Processing by PostsController#index as HTML
793
+ Rendering posts/index.html.erb within layouts/application
794
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
795
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 321)
796
+ themes.path_setup
797
+ themes.middleware
798
+ themes.setup_theme
799
+  (1.2ms) SELECT sqlite_version(*)
800
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:45:47 +0100
801
+ Using test
802
+ TestLoader
803
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:45:47 +0100
804
+ Using test
805
+ TestLoader
806
+ themes.path_setup
807
+ themes.middleware
808
+ themes.setup_theme
809
+  (1.4ms) SELECT sqlite_version(*)
810
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:47:18 +0100
811
+ Using test
812
+ TestLoader
813
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:47:18 +0100
814
+ Using test
815
+ TestLoader
816
+ themes.path_setup
817
+ themes.middleware
818
+ themes.setup_theme
819
+  (1.3ms) SELECT sqlite_version(*)
820
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:47:39 +0100
821
+ Using test
822
+ TestLoader
823
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:47:39 +0100
824
+ Using test
825
+ TestLoader
826
+ themes.path_setup
827
+ themes.middleware
828
+ themes.setup_theme
829
+  (1.5ms) SELECT sqlite_version(*)
830
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:49:04 +0100
831
+ Using test
832
+ TestLoader
833
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:51:07 +0100
834
+ Using test
835
+ TestLoader
836
+ themes.path_setup
837
+ themes.middleware
838
+ themes.setup_theme
839
+  (1.3ms) SELECT sqlite_version(*)
840
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:51:14 +0100
841
+ Using test
842
+ TestLoader
843
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:51:15 +0100
844
+ Using test
845
+ TestLoader
846
+ themes.path_setup
847
+ themes.middleware
848
+ themes.setup_theme
849
+  (1.3ms) SELECT sqlite_version(*)
850
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:53:45 +0100
851
+ Using test
852
+ TestLoader
853
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:53:46 +0100
854
+ Using test
855
+ TestLoader
856
+ themes.path_setup
857
+ themes.middleware
858
+ themes.setup_theme
859
+  (1.3ms) SELECT sqlite_version(*)
860
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:54:04 +0100
861
+ Using test
862
+ TestLoader
863
+ Processing by PostsController#index as HTML
864
+ Rendering themes/test/posts/index.html.erb within layouts/application
865
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
866
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.0ms | Allocations: 2642)
867
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 10:54:04 +0100
868
+ Using test
869
+ TestLoader
870
+ Processing by PostsController#index as HTML
871
+ Rendering themes/test/posts/index.html.erb within layouts/application
872
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
873
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 845)
874
+ themes.path_setup
875
+ themes.middleware
876
+ themes.setup_theme
877
+  (1.4ms) SELECT sqlite_version(*)
878
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:00:38 +0100
879
+ Using test
880
+ TestLoader
881
+ Processing by PostsController#index as HTML
882
+ Rendering themes/test/posts/index.html.erb within layouts/application
883
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
884
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms | Allocations: 2642)
885
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:00:38 +0100
886
+ Using test
887
+ TestLoader
888
+ Processing by PostsController#index as HTML
889
+ Rendering themes/test/posts/index.html.erb within layouts/application
890
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 81)
891
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 845)
892
+ themes.path_setup
893
+ themes.middleware
894
+ themes.setup_theme
895
+ themes.path_setup
896
+ themes.middleware
897
+ themes.setup_theme
898
+  (1.3ms) SELECT sqlite_version(*)
899
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:04:27 +0100
900
+ Processing by PostsController#index as HTML
901
+ Rendering themes/test/posts/index.html.erb within layouts/application
902
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
903
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms | Allocations: 2642)
904
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:04:27 +0100
905
+ Processing by PostsController#index as HTML
906
+ Rendering themes/test/posts/index.html.erb within layouts/application
907
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
908
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 845)
909
+ themes.path_setup
910
+ themes.middleware
911
+ themes.setup_theme
912
+  (1.3ms) SELECT sqlite_version(*)
913
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:05:57 +0100
914
+ Processing by PostsController#index as HTML
915
+ Rendering themes/test/posts/index.html.erb within layouts/application
916
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 368)
917
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms | Allocations: 2642)
918
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:05:57 +0100
919
+ Processing by PostsController#index as HTML
920
+ Rendering themes/test/posts/index.html.erb within layouts/application
921
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
922
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms | Allocations: 845)
923
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:05:57 +0100
924
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:05:57 +0100
925
+ themes.path_setup
926
+ themes.middleware
927
+ themes.setup_theme
928
+  (1.5ms) SELECT sqlite_version(*)
929
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:06:41 +0100
930
+ Processing by PostsController#index as HTML
931
+ Rendering themes/test/posts/index.html.erb within layouts/application
932
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 368)
933
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms | Allocations: 2642)
934
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:06:41 +0100
935
+ Processing by PostsController#index as HTML
936
+ Rendering themes/test/posts/index.html.erb within layouts/application
937
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
938
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 845)
939
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:06:41 +0100
940
+ Processing by PostsController#index as HTML
941
+ Rendering themes/test/posts/index.html.erb within layouts/application
942
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
943
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 322)
944
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:06:41 +0100
945
+ Processing by PostsController#index as HTML
946
+ Rendering themes/test/posts/index.html.erb within layouts/application
947
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
948
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 324)
949
+ themes.path_setup
950
+ themes.middleware
951
+ themes.setup_theme
952
+  (1.3ms) SELECT sqlite_version(*)
953
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:10:04 +0100
954
+ Processing by PostsController#index as HTML
955
+ Rendering posts/index.html.erb within layouts/application
956
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
957
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2537)
958
+ themes.path_setup
959
+ themes.middleware
960
+ themes.setup_theme
961
+  (1.4ms) SELECT sqlite_version(*)
962
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:10:26 +0100
963
+ Processing by PostsController#index as HTML
964
+ Rendering posts/index.html.erb within layouts/application
965
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
966
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2537)
967
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:10:26 +0100
968
+ Processing by PostsController#index as HTML
969
+ Rendering posts/index.html.erb within layouts/application
970
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
971
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
972
+ themes.path_setup
973
+ themes.middleware
974
+ themes.setup_theme
975
+  (1.3ms) SELECT sqlite_version(*)
976
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:12:04 +0100
977
+ Processing by PostsController#index as HTML
978
+ Rendering posts/index.html.erb within layouts/application
979
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
980
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms | Allocations: 2537)
981
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:12:04 +0100
982
+ Processing by PostsController#index as HTML
983
+ Rendering posts/index.html.erb within layouts/application
984
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
985
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 318)
986
+ themes.path_setup
987
+ themes.middleware
988
+ themes.setup_theme
989
+  (1.3ms) SELECT sqlite_version(*)
990
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:12:14 +0100
991
+ Processing by PostsController#index as HTML
992
+ Rendering themes/test/posts/index.html.erb within layouts/application
993
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
994
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms | Allocations: 2642)
995
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:12:14 +0100
996
+ Processing by PostsController#index as HTML
997
+ Rendering themes/test/posts/index.html.erb within layouts/application
998
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 81)
999
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 845)
1000
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:12:14 +0100
1001
+ Processing by PostsController#index as HTML
1002
+ Rendering themes/test/posts/index.html.erb within layouts/application
1003
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1004
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 322)
1005
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:12:14 +0100
1006
+ Processing by PostsController#index as HTML
1007
+ Rendering themes/test/posts/index.html.erb within layouts/application
1008
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1009
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 324)
1010
+ themes.path_setup
1011
+ themes.middleware
1012
+ themes.setup_theme
1013
+  (1.3ms) SELECT sqlite_version(*)
1014
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:15:38 +0100
1015
+ Processing by PostsController#index as HTML
1016
+ Rendering themes/test/posts/index.html.erb within layouts/application
1017
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
1018
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms | Allocations: 2642)
1019
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:15:39 +0100
1020
+ Processing by PostsController#index as HTML
1021
+ Rendering themes/test/posts/index.html.erb within layouts/application
1022
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1023
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 845)
1024
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:15:39 +0100
1025
+ Processing by PostsController#index as HTML
1026
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1027
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1028
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 857)
1029
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:15:39 +0100
1030
+ Processing by PostsController#index as HTML
1031
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1032
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1033
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 852)
1034
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:15:39 +0100
1035
+ Processing by PostsController#index as HTML
1036
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1037
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1038
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 327)
1039
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:15:39 +0100
1040
+ Processing by PostsController#index as HTML
1041
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1042
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1043
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 329)
1044
+ themes.path_setup
1045
+ themes.middleware
1046
+ themes.setup_theme
1047
+  (1.4ms) SELECT sqlite_version(*)
1048
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:37:34 +0100
1049
+ Processing by PostsController#index as HTML
1050
+ Rendering themes/test/posts/index.html.erb within layouts/application
1051
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 15.0ms | Allocations: 368)
1052
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms | Allocations: 2644)
1053
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:37:35 +0100
1054
+ Processing by PostsController#index as HTML
1055
+ Rendering themes/test/posts/index.html.erb within layouts/application
1056
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 81)
1057
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms | Allocations: 848)
1058
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:37:35 +0100
1059
+ Processing by PostsController#index as HTML
1060
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1061
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1062
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 857)
1063
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:37:35 +0100
1064
+ Processing by PostsController#index as HTML
1065
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1066
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 83)
1067
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms | Allocations: 852)
1068
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:37:35 +0100
1069
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:37:35 +0100
1070
+ themes.path_setup
1071
+ themes.middleware
1072
+ themes.setup_theme
1073
+  (1.3ms) SELECT sqlite_version(*)
1074
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:03 +0100
1075
+ Processing by PostsController#index as HTML
1076
+ Rendering themes/test/posts/index.html.erb within layouts/application
1077
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1078
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 2642)
1079
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:04 +0100
1080
+ Processing by PostsController#index as HTML
1081
+ Rendering themes/test/posts/index.html.erb within layouts/application
1082
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 86)
1083
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 854)
1084
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:04 +0100
1085
+ Processing by PostsController#index as HTML
1086
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1087
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1088
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 858)
1089
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:04 +0100
1090
+ Processing by PostsController#index as HTML
1091
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1092
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1093
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 853)
1094
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:04 +0100
1095
+ Processing by PostsController#index as HTML
1096
+ Rendering posts/index.html.erb within layouts/application
1097
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1098
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 747)
1099
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:04 +0100
1100
+ Processing by PostsController#index as HTML
1101
+ Rendering posts/index.html.erb within layouts/application
1102
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1103
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
1104
+ themes.path_setup
1105
+ themes.middleware
1106
+ themes.setup_theme
1107
+  (1.5ms) SELECT sqlite_version(*)
1108
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:10 +0100
1109
+ Processing by PostsController#index as HTML
1110
+ Rendering themes/test/posts/index.html.erb within layouts/application
1111
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 17.2ms | Allocations: 368)
1112
+ Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms | Allocations: 2644)
1113
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:10 +0100
1114
+ Processing by PostsController#index as HTML
1115
+ Rendering themes/test/posts/index.html.erb within layouts/application
1116
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1117
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 848)
1118
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:10 +0100
1119
+ Processing by PostsController#index as HTML
1120
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1121
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1122
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 857)
1123
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:11 +0100
1124
+ Processing by PostsController#index as HTML
1125
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1126
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1127
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 852)
1128
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:11 +0100
1129
+ Processing by PostsController#index as HTML
1130
+ Rendering posts/index.html.erb within layouts/application
1131
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1132
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 746)
1133
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:11 +0100
1134
+ Processing by PostsController#index as HTML
1135
+ Rendering posts/index.html.erb within layouts/application
1136
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1137
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 318)
1138
+ themes.path_setup
1139
+ themes.middleware
1140
+ themes.setup_theme
1141
+  (1.3ms) SELECT sqlite_version(*)
1142
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:31 +0100
1143
+ Processing by PostsController#index as HTML
1144
+ Rendering themes/test/posts/index.html.erb within layouts/application
1145
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1146
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 2644)
1147
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:31 +0100
1148
+ Processing by PostsController#index as HTML
1149
+ Rendering themes/test/posts/index.html.erb within layouts/application
1150
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1151
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 846)
1152
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:31 +0100
1153
+ Processing by PostsController#index as HTML
1154
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1155
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1156
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 858)
1157
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:31 +0100
1158
+ Processing by PostsController#index as HTML
1159
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1160
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1161
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 853)
1162
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:31 +0100
1163
+ Processing by PostsController#index as HTML
1164
+ Rendering posts/index.html.erb within layouts/application
1165
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 83)
1166
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms | Allocations: 747)
1167
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 11:38:31 +0100
1168
+ Processing by PostsController#index as HTML
1169
+ Rendering posts/index.html.erb within layouts/application
1170
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1171
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
1172
+ Rendering notifier/wellcome_message.html.erb
1173
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
1174
+ Notifier#wellcome_message: processed outbound mail in 5.6ms
1175
+ Rendering notifier/good_bye_message.html.erb
1176
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1177
+ Notifier#good_bye_message: processed outbound mail in 3.2ms
1178
+ themes.path_setup
1179
+ themes.middleware
1180
+ themes.setup_theme
1181
+  (1.8ms) SELECT sqlite_version(*)
1182
+ Rendering notifier/wellcome_message.html.erb
1183
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.9ms | Allocations: 371)
1184
+ Notifier#wellcome_message: processed outbound mail in 8.7ms
1185
+ Rendering notifier/good_bye_message.html.erb
1186
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 92)
1187
+ Notifier#good_bye_message: processed outbound mail in 2.4ms
1188
+ themes.path_setup
1189
+ themes.middleware
1190
+ themes.setup_theme
1191
+  (1.3ms) SELECT sqlite_version(*)
1192
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:13 +0100
1193
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:13 +0100
1194
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:13 +0100
1195
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:13 +0100
1196
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:13 +0100
1197
+ Processing by PostsController#index as HTML
1198
+ Rendering posts/index.html.erb within layouts/application
1199
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 367)
1200
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms | Allocations: 2539)
1201
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:13 +0100
1202
+ Processing by PostsController#index as HTML
1203
+ Rendering posts/index.html.erb within layouts/application
1204
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1205
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
1206
+ themes.path_setup
1207
+ themes.middleware
1208
+ themes.setup_theme
1209
+  (1.3ms) SELECT sqlite_version(*)
1210
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:40 +0100
1211
+ Processing by PostsController#index as HTML
1212
+ Rendering themes/test/posts/index.html.erb within layouts/application
1213
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1214
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 2642)
1215
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:40 +0100
1216
+ Processing by PostsController#index as HTML
1217
+ Rendering themes/test/posts/index.html.erb within layouts/application
1218
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 86)
1219
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 854)
1220
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:40 +0100
1221
+ Processing by PostsController#index as HTML
1222
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1223
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1224
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 858)
1225
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:40 +0100
1226
+ Processing by PostsController#index as HTML
1227
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1228
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1229
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 853)
1230
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:41 +0100
1231
+ Processing by PostsController#index as HTML
1232
+ Rendering posts/index.html.erb within layouts/application
1233
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1234
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 747)
1235
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:00:41 +0100
1236
+ Processing by PostsController#index as HTML
1237
+ Rendering posts/index.html.erb within layouts/application
1238
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1239
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
1240
+ themes.path_setup
1241
+ themes.middleware
1242
+ themes.setup_theme
1243
+  (1.4ms) SELECT sqlite_version(*)
1244
+ Rendering notifier/good_bye_message.html.erb
1245
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.0ms | Allocations: 370)
1246
+ Notifier#good_bye_message: processed outbound mail in 8.2ms
1247
+ themes.path_setup
1248
+ themes.middleware
1249
+ themes.setup_theme
1250
+  (1.4ms) SELECT sqlite_version(*)
1251
+ Rendering notifier/good_bye_message.html.erb
1252
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.9ms | Allocations: 370)
1253
+ Notifier#good_bye_message: processed outbound mail in 8.1ms
1254
+ themes.path_setup
1255
+ themes.middleware
1256
+ themes.setup_theme
1257
+  (1.3ms) SELECT sqlite_version(*)
1258
+ Rendering notifier/wellcome_message.html.erb
1259
+ Rendered notifier/wellcome_message.html.erb (Duration: 1.0ms | Allocations: 371)
1260
+ Notifier#wellcome_message: processed outbound mail in 8.4ms
1261
+ Rendering notifier/good_bye_message.html.erb
1262
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 92)
1263
+ Notifier#good_bye_message: processed outbound mail in 1.9ms
1264
+ themes.path_setup
1265
+ themes.middleware
1266
+ themes.setup_theme
1267
+  (1.8ms) SELECT sqlite_version(*)
1268
+ Rendering notifier/wellcome_message.html.erb
1269
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.8ms | Allocations: 371)
1270
+ Notifier#wellcome_message: processed outbound mail in 9.3ms
1271
+ Rendering notifier/good_bye_message.html.erb
1272
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 90)
1273
+ Notifier#good_bye_message: processed outbound mail in 2.2ms
1274
+ themes.path_setup
1275
+ themes.middleware
1276
+ themes.setup_theme
1277
+  (1.3ms) SELECT sqlite_version(*)
1278
+ configure test theme
1279
+ Rendering notifier/wellcome_message.html.erb
1280
+ Rendered notifier/wellcome_message.html.erb (Duration: 1.0ms | Allocations: 371)
1281
+ Notifier#wellcome_message: processed outbound mail in 8.1ms
1282
+ Rendering notifier/good_bye_message.html.erb
1283
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 92)
1284
+ Notifier#good_bye_message: processed outbound mail in 2.4ms
1285
+ themes.path_setup
1286
+ themes.middleware
1287
+ themes.setup_theme
1288
+  (1.4ms) SELECT sqlite_version(*)
1289
+ configure test theme
1290
+ Rendering themes/test/notifier/wellcome_message.html.erb
1291
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.0ms | Allocations: 371)
1292
+ Notifier#wellcome_message: processed outbound mail in 10.0ms
1293
+ Rendering notifier/good_bye_message.html.erb
1294
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1295
+ Notifier#good_bye_message: processed outbound mail in 2.2ms
1296
+ themes.path_setup
1297
+ themes.middleware
1298
+ themes.setup_theme
1299
+  (1.3ms) SELECT sqlite_version(*)
1300
+ configure test theme
1301
+ Rendering themes/test/notifier/wellcome_message.html.erb
1302
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.0ms | Allocations: 371)
1303
+ Notifier#wellcome_message: processed outbound mail in 8.9ms
1304
+ Rendering notifier/good_bye_message.html.erb
1305
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1306
+ Notifier#good_bye_message: processed outbound mail in 2.0ms
1307
+ themes.path_setup
1308
+ themes.middleware
1309
+ themes.setup_theme
1310
+  (1.4ms) SELECT sqlite_version(*)
1311
+ configure test theme
1312
+ Rendering themes/test/notifier/wellcome_message.html.erb
1313
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.0ms | Allocations: 371)
1314
+ Notifier#wellcome_message: processed outbound mail in 8.5ms
1315
+ Rendering notifier/good_bye_message.html.erb
1316
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1317
+ Notifier#good_bye_message: processed outbound mail in 2.1ms
1318
+ themes.path_setup
1319
+ themes.middleware
1320
+ themes.setup_theme
1321
+  (1.2ms) SELECT sqlite_version(*)
1322
+ configure test theme
1323
+ Rendering themes/test/notifier/wellcome_message.html.erb
1324
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.9ms | Allocations: 371)
1325
+ Notifier#wellcome_message: processed outbound mail in 8.5ms
1326
+ Rendering notifier/good_bye_message.html.erb
1327
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1328
+ Notifier#good_bye_message: processed outbound mail in 2.1ms
1329
+ themes.path_setup
1330
+ themes.middleware
1331
+ themes.setup_theme
1332
+  (1.3ms) SELECT sqlite_version(*)
1333
+ configure test theme
1334
+ Rendering themes/test/notifier/wellcome_message.html.erb
1335
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.9ms | Allocations: 371)
1336
+ Notifier#wellcome_message: processed outbound mail in 10.2ms
1337
+ Rendering notifier/good_bye_message.html.erb
1338
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1339
+ Notifier#good_bye_message: processed outbound mail in 2.6ms
1340
+ themes.path_setup
1341
+ themes.middleware
1342
+ themes.setup_theme
1343
+  (1.3ms) SELECT sqlite_version(*)
1344
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:10:31 +0100
1345
+ configure test theme
1346
+ Processing by PostsController#index as HTML
1347
+ Rendering themes/test/posts/index.html.erb within layouts/application
1348
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1349
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 2644)
1350
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:10:31 +0100
1351
+ configure test theme
1352
+ Processing by PostsController#index as HTML
1353
+ Rendering themes/test/posts/index.html.erb within layouts/application
1354
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1355
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 846)
1356
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:10:31 +0100
1357
+ Processing by PostsController#index as HTML
1358
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1359
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1360
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 858)
1361
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:10:31 +0100
1362
+ Processing by PostsController#index as HTML
1363
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1364
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1365
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 853)
1366
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:10:31 +0100
1367
+ Processing by PostsController#index as HTML
1368
+ Rendering posts/index.html.erb within layouts/application
1369
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1370
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 747)
1371
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:10:31 +0100
1372
+ Processing by PostsController#index as HTML
1373
+ Rendering posts/index.html.erb within layouts/application
1374
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1375
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
1376
+ configure test theme
1377
+ Rendering themes/test/notifier/wellcome_message.html.erb
1378
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
1379
+ Notifier#wellcome_message: processed outbound mail in 6.8ms
1380
+ Rendering notifier/good_bye_message.html.erb
1381
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1382
+ Notifier#good_bye_message: processed outbound mail in 3.3ms
1383
+ themes.path_setup
1384
+ themes.middleware
1385
+ themes.setup_theme
1386
+  (1.4ms) SELECT sqlite_version(*)
1387
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:20 +0100
1388
+ configure test theme
1389
+ Processing by PostsController#index as HTML
1390
+ Rendering themes/test/posts/index.html.erb within layouts/application
1391
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1392
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms | Allocations: 2644)
1393
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:20 +0100
1394
+ configure test theme
1395
+ Processing by PostsController#index as HTML
1396
+ Rendering themes/test/posts/index.html.erb within layouts/application
1397
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 81)
1398
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 846)
1399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:20 +0100
1400
+ Processing by PostsController#index as HTML
1401
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1402
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1403
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 858)
1404
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:20 +0100
1405
+ Processing by PostsController#index as HTML
1406
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1407
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1408
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 853)
1409
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:20 +0100
1410
+ Processing by PostsController#index as HTML
1411
+ Rendering posts/index.html.erb within layouts/application
1412
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1413
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 747)
1414
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:20 +0100
1415
+ Processing by PostsController#index as HTML
1416
+ Rendering posts/index.html.erb within layouts/application
1417
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1418
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 318)
1419
+ configure test theme
1420
+ Rendering themes/test/notifier/wellcome_message.html.erb
1421
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
1422
+ Notifier#wellcome_message: processed outbound mail in 6.0ms
1423
+ Rendering notifier/good_bye_message.html.erb
1424
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1425
+ Notifier#good_bye_message: processed outbound mail in 2.5ms
1426
+ configure test theme
1427
+ configure test theme
1428
+ configure test theme
1429
+ configure test theme
1430
+ configure test theme
1431
+ configure test theme
1432
+ themes.path_setup
1433
+ themes.middleware
1434
+ themes.setup_theme
1435
+  (1.3ms) SELECT sqlite_version(*)
1436
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:40 +0100
1437
+ configure test theme
1438
+ Processing by PostsController#index as HTML
1439
+ Rendering themes/test/posts/index.html.erb within layouts/application
1440
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
1441
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 2644)
1442
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:40 +0100
1443
+ configure test theme
1444
+ Processing by PostsController#index as HTML
1445
+ Rendering themes/test/posts/index.html.erb within layouts/application
1446
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1447
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 846)
1448
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:40 +0100
1449
+ Processing by PostsController#index as HTML
1450
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1451
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1452
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 858)
1453
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:40 +0100
1454
+ Processing by PostsController#index as HTML
1455
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1456
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1457
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms | Allocations: 853)
1458
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:40 +0100
1459
+ Processing by PostsController#index as HTML
1460
+ Rendering posts/index.html.erb within layouts/application
1461
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1462
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 747)
1463
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:12:40 +0100
1464
+ Processing by PostsController#index as HTML
1465
+ Rendering posts/index.html.erb within layouts/application
1466
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1467
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
1468
+ configure test theme
1469
+ Rendering themes/test/notifier/wellcome_message.html.erb
1470
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
1471
+ Notifier#wellcome_message: processed outbound mail in 5.7ms
1472
+ Rendering notifier/good_bye_message.html.erb
1473
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1474
+ Notifier#good_bye_message: processed outbound mail in 1.8ms
1475
+ configure test theme
1476
+ configure test theme
1477
+ configure test theme
1478
+ configure test theme
1479
+ configure test theme
1480
+ configure test theme
1481
+ themes.path_setup
1482
+ themes.middleware
1483
+ themes.setup_theme
1484
+  (1.3ms) SELECT sqlite_version(*)
1485
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:40 +0100
1486
+ configure test theme
1487
+ Processing by PostsController#index as HTML
1488
+ Rendering themes/test/posts/index.html.erb within layouts/application
1489
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1490
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms | Allocations: 2644)
1491
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:40 +0100
1492
+ configure test theme
1493
+ Processing by PostsController#index as HTML
1494
+ Rendering themes/test/posts/index.html.erb within layouts/application
1495
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1496
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 846)
1497
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:40 +0100
1498
+ Processing by PostsController#index as HTML
1499
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1500
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 85)
1501
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 858)
1502
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:40 +0100
1503
+ Processing by PostsController#index as HTML
1504
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1505
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1506
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 853)
1507
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:40 +0100
1508
+ Processing by PostsController#index as HTML
1509
+ Rendering posts/index.html.erb within layouts/application
1510
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1511
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 747)
1512
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:40 +0100
1513
+ Processing by PostsController#index as HTML
1514
+ Rendering posts/index.html.erb within layouts/application
1515
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1516
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
1517
+ configure test theme
1518
+ Rendering themes/test/notifier/wellcome_message.html.erb
1519
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 87)
1520
+ Notifier#wellcome_message: processed outbound mail in 10.3ms
1521
+ Rendering notifier/good_bye_message.html.erb
1522
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.6ms | Allocations: 87)
1523
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
1524
+ configure test theme
1525
+ configure test theme
1526
+ configure test theme
1527
+ configure test theme
1528
+ configure test theme
1529
+ configure test theme
1530
+ themes.path_setup
1531
+ themes.middleware
1532
+ themes.setup_theme
1533
+  (1.5ms) SELECT sqlite_version(*)
1534
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:55 +0100
1535
+ configure test theme
1536
+ Processing by PostsController#index as HTML
1537
+ Rendering themes/test/posts/index.html.erb within layouts/application
1538
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
1539
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms | Allocations: 2643)
1540
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:55 +0100
1541
+ configure test theme
1542
+ Processing by PostsController#index as HTML
1543
+ Rendering themes/test/posts/index.html.erb within layouts/application
1544
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1545
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 845)
1546
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:55 +0100
1547
+ Processing by PostsController#index as HTML
1548
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1549
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1550
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.0ms | Allocations: 857)
1551
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:55 +0100
1552
+ Processing by PostsController#index as HTML
1553
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1554
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1555
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms | Allocations: 852)
1556
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:55 +0100
1557
+ Processing by PostsController#index as HTML
1558
+ Rendering posts/index.html.erb within layouts/application
1559
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 83)
1560
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms | Allocations: 746)
1561
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:55 +0100
1562
+ Processing by PostsController#index as HTML
1563
+ Rendering posts/index.html.erb within layouts/application
1564
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1565
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 318)
1566
+ configure test theme
1567
+ Rendering themes/test/notifier/wellcome_message.html.erb
1568
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.6ms | Allocations: 87)
1569
+ Notifier#wellcome_message: processed outbound mail in 14.4ms
1570
+ Rendering notifier/good_bye_message.html.erb
1571
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.8ms | Allocations: 87)
1572
+ Notifier#good_bye_message: processed outbound mail in 6.0ms
1573
+ configure test theme
1574
+ configure test theme
1575
+ configure test theme
1576
+ configure test theme
1577
+ configure test theme
1578
+ configure test theme
1579
+ themes.path_setup
1580
+ themes.middleware
1581
+ themes.setup_theme
1582
+  (1.3ms) SELECT sqlite_version(*)
1583
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:22:06 +0100
1584
+ configure test theme
1585
+ Processing by PostsController#index as HTML
1586
+ Rendering themes/test/posts/index.html.erb within layouts/application
1587
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
1588
+ Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 2644)
1589
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:22:06 +0100
1590
+ configure test theme
1591
+ Processing by PostsController#index as HTML
1592
+ Rendering themes/test/posts/index.html.erb within layouts/application
1593
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1594
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 846)
1595
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:22:06 +0100
1596
+ Processing by PostsController#index as HTML
1597
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1598
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1599
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 858)
1600
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:22:06 +0100
1601
+ Processing by PostsController#index as HTML
1602
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1603
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1604
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 853)
1605
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:22:06 +0100
1606
+ Processing by PostsController#index as HTML
1607
+ Rendering posts/index.html.erb within layouts/application
1608
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1609
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 747)
1610
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:22:06 +0100
1611
+ Processing by PostsController#index as HTML
1612
+ Rendering posts/index.html.erb within layouts/application
1613
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1614
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
1615
+ configure test theme
1616
+ Rendering themes/test/notifier/wellcome_message.html.erb
1617
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
1618
+ Notifier#wellcome_message: processed outbound mail in 9.1ms
1619
+ Rendering notifier/good_bye_message.html.erb
1620
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.6ms | Allocations: 87)
1621
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
1622
+ configure test theme
1623
+ configure test theme
1624
+ configure test theme
1625
+ configure test theme
1626
+ configure test theme
1627
+ configure test theme
1628
+  (2.6ms) SELECT sqlite_version(*)
1629
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:13:36 +0100
1630
+ Processing by PostsController#index as HTML
1631
+ Rendering themes/test/posts/index.html.erb within layouts/application
1632
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
1633
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms | Allocations: 2642)
1634
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:13:36 +0100
1635
+ Processing by PostsController#index as HTML
1636
+ Rendering themes/test/posts/index.html.erb within layouts/application
1637
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1638
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 845)
1639
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:13:36 +0100
1640
+ Processing by PostsController#index as HTML
1641
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1642
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1643
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 857)
1644
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:13:36 +0100
1645
+ Processing by PostsController#index as HTML
1646
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1647
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1648
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms | Allocations: 852)
1649
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:13:36 +0100
1650
+ Processing by PostsController#index as HTML
1651
+ Rendering posts/index.html.erb within layouts/application
1652
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1653
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 746)
1654
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:13:36 +0100
1655
+ Processing by PostsController#index as HTML
1656
+ Rendering posts/index.html.erb within layouts/application
1657
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1658
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
1659
+ Rendering themes/test/notifier/wellcome_message.html.erb
1660
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 90)
1661
+ Notifier#wellcome_message: processed outbound mail in 5.7ms
1662
+ Rendering notifier/good_bye_message.html.erb
1663
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1664
+ Notifier#good_bye_message: processed outbound mail in 2.0ms
1665
+  (1.3ms) SELECT sqlite_version(*)
1666
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:09 +0100
1667
+ Processing by PostsController#index as HTML
1668
+ Rendering posts/index.html.erb within layouts/application
1669
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
1670
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2538)
1671
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:09 +0100
1672
+ Processing by PostsController#index as HTML
1673
+ Rendering posts/index.html.erb within layouts/application
1674
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1675
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 321)
1676
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:09 +0100
1677
+ Processing by PostsController#index as HTML
1678
+ Rendering posts/index.html.erb within layouts/application
1679
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1680
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1681
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:09 +0100
1682
+ Processing by PostsController#index as HTML
1683
+ Rendering posts/index.html.erb within layouts/application
1684
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1685
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 317)
1686
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:09 +0100
1687
+ Processing by PostsController#index as HTML
1688
+ Rendering posts/index.html.erb within layouts/application
1689
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1690
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
1691
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:09 +0100
1692
+ Processing by PostsController#index as HTML
1693
+ Rendering posts/index.html.erb within layouts/application
1694
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1695
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1696
+ Rendering themes/test/notifier/wellcome_message.html.erb
1697
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.9ms | Allocations: 87)
1698
+ Notifier#wellcome_message: processed outbound mail in 5.9ms
1699
+ Rendering notifier/good_bye_message.html.erb
1700
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1701
+ Notifier#good_bye_message: processed outbound mail in 2.4ms
1702
+  (1.5ms) SELECT sqlite_version(*)
1703
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:48 +0100
1704
+ Processing by PostsController#index as HTML
1705
+ Rendering posts/index.html.erb within layouts/application
1706
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
1707
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.0ms | Allocations: 2537)
1708
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:48 +0100
1709
+ Processing by PostsController#index as HTML
1710
+ Rendering posts/index.html.erb within layouts/application
1711
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1712
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 321)
1713
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:48 +0100
1714
+ Processing by PostsController#index as HTML
1715
+ Rendering posts/index.html.erb within layouts/application
1716
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1717
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
1718
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:48 +0100
1719
+ Processing by PostsController#index as HTML
1720
+ Rendering posts/index.html.erb within layouts/application
1721
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1722
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
1723
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:48 +0100
1724
+ Processing by PostsController#index as HTML
1725
+ Rendering posts/index.html.erb within layouts/application
1726
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1727
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1728
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:27:48 +0100
1729
+ Processing by PostsController#index as HTML
1730
+ Rendering posts/index.html.erb within layouts/application
1731
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1732
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 318)
1733
+ Rendering themes/test/notifier/wellcome_message.html.erb
1734
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.6ms | Allocations: 90)
1735
+ Notifier#wellcome_message: processed outbound mail in 8.0ms
1736
+ Rendering notifier/good_bye_message.html.erb
1737
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
1738
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
1739
+  (1.4ms) SELECT sqlite_version(*)
1740
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:28:57 +0100
1741
+ Processing by PostsController#index as HTML
1742
+ Rendering posts/index.html.erb within layouts/application
1743
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
1744
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms | Allocations: 2538)
1745
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:28:57 +0100
1746
+ Processing by PostsController#index as HTML
1747
+ Rendering posts/index.html.erb within layouts/application
1748
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1749
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 321)
1750
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:28:57 +0100
1751
+ Processing by PostsController#index as HTML
1752
+ Rendering posts/index.html.erb within layouts/application
1753
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1754
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 317)
1755
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:28:57 +0100
1756
+ Processing by PostsController#index as HTML
1757
+ Rendering posts/index.html.erb within layouts/application
1758
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1759
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 317)
1760
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:28:57 +0100
1761
+ Processing by PostsController#index as HTML
1762
+ Rendering posts/index.html.erb within layouts/application
1763
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1764
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1765
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:28:57 +0100
1766
+ Processing by PostsController#index as HTML
1767
+ Rendering posts/index.html.erb within layouts/application
1768
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1769
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 317)
1770
+ Rendering notifier/good_bye_message.html.erb
1771
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1772
+ Notifier#good_bye_message: processed outbound mail in 4.8ms
1773
+  (1.4ms) SELECT sqlite_version(*)
1774
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:20 +0100
1775
+ Processing by PostsController#index as HTML
1776
+ Rendering themes/test/posts/index.html.erb within layouts/application
1777
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.6ms | Allocations: 368)
1778
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms | Allocations: 2642)
1779
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:20 +0100
1780
+ Processing by PostsController#index as HTML
1781
+ Rendering themes/test/posts/index.html.erb within layouts/application
1782
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1783
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 845)
1784
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:20 +0100
1785
+ Processing by PostsController#index as HTML
1786
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1787
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1788
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 857)
1789
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:20 +0100
1790
+ Processing by PostsController#index as HTML
1791
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1792
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1793
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms | Allocations: 852)
1794
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:20 +0100
1795
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:20 +0100
1796
+ Rendering notifier/good_bye_message.html.erb
1797
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 90)
1798
+ Notifier#good_bye_message: processed outbound mail in 22.2ms
1799
+  (1.5ms) SELECT sqlite_version(*)
1800
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:54 +0100
1801
+ Processing by PostsController#index as HTML
1802
+ Rendering themes/test/posts/index.html.erb within layouts/application
1803
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
1804
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms | Allocations: 2642)
1805
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:54 +0100
1806
+ Processing by PostsController#index as HTML
1807
+ Rendering themes/test/posts/index.html.erb within layouts/application
1808
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 81)
1809
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 845)
1810
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:54 +0100
1811
+ Processing by PostsController#index as HTML
1812
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1813
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 85)
1814
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 857)
1815
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:54 +0100
1816
+ Processing by PostsController#index as HTML
1817
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1818
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 83)
1819
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 852)
1820
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:54 +0100
1821
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:32:54 +0100
1822
+ Rendering themes/test/notifier/wellcome_message.html.erb
1823
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 90)
1824
+ Notifier#wellcome_message: processed outbound mail in 31.0ms
1825
+ Rendering notifier/good_bye_message.html.erb
1826
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1827
+ Notifier#good_bye_message: processed outbound mail in 3.1ms
1828
+  (1.4ms) SELECT sqlite_version(*)
1829
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:33:18 +0100
1830
+ Processing by PostsController#index as HTML
1831
+ Rendering themes/test/posts/index.html.erb within layouts/application
1832
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
1833
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 2643)
1834
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:33:18 +0100
1835
+ Processing by PostsController#index as HTML
1836
+ Rendering themes/test/posts/index.html.erb within layouts/application
1837
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1838
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 845)
1839
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:33:18 +0100
1840
+ Processing by PostsController#index as HTML
1841
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1842
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
1843
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 857)
1844
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:33:18 +0100
1845
+ Processing by PostsController#index as HTML
1846
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1847
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 83)
1848
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms | Allocations: 852)
1849
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:33:18 +0100
1850
+ Processing by PostsController#index as HTML
1851
+ Rendering posts/index.html.erb within layouts/application
1852
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1853
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 746)
1854
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 15:33:18 +0100
1855
+ Processing by PostsController#index as HTML
1856
+ Rendering posts/index.html.erb within layouts/application
1857
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1858
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
1859
+ Rendering themes/test/notifier/wellcome_message.html.erb
1860
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
1861
+ Notifier#wellcome_message: processed outbound mail in 6.0ms
1862
+ Rendering notifier/good_bye_message.html.erb
1863
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
1864
+ Notifier#good_bye_message: processed outbound mail in 2.1ms
1865
+  (1.6ms) SELECT sqlite_version(*)
1866
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:11 +0100
1867
+ Processing by PostsController#index as HTML
1868
+ Rendering themes/test/posts/index.html.erb within layouts/application
1869
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
1870
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms | Allocations: 2642)
1871
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:11 +0100
1872
+ Processing by PostsController#index as HTML
1873
+ Rendering themes/test/posts/index.html.erb within layouts/application
1874
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 81)
1875
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 845)
1876
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:11 +0100
1877
+ Processing by PostsController#index as HTML
1878
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1879
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 85)
1880
+ Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.0ms | Allocations: 857)
1881
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:11 +0100
1882
+ Processing by PostsController#index as HTML
1883
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1884
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 83)
1885
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 852)
1886
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:11 +0100
1887
+ Processing by PostsController#index as HTML
1888
+ Rendering posts/index.html.erb within layouts/application
1889
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1890
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 746)
1891
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:11 +0100
1892
+ Processing by PostsController#index as HTML
1893
+ Rendering posts/index.html.erb within layouts/application
1894
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1895
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 318)
1896
+ Rendering themes/test/notifier/wellcome_message.html.erb
1897
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 90)
1898
+ Notifier#wellcome_message: processed outbound mail in 5.8ms
1899
+ Rendering notifier/good_bye_message.html.erb
1900
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.6ms | Allocations: 87)
1901
+ Notifier#good_bye_message: processed outbound mail in 3.5ms
1902
+  (1.6ms) SELECT sqlite_version(*)
1903
+  (1.7ms) SELECT sqlite_version(*)
1904
+  (1.7ms) SELECT sqlite_version(*)
1905
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1906
+ Processing by PostsController#index as HTML
1907
+ Rendering posts/index.html.erb within layouts/application
1908
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
1909
+ Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.0ms | Allocations: 2538)
1910
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1911
+ Processing by PostsController#index as HTML
1912
+ Rendering posts/index.html.erb within layouts/application
1913
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1914
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 321)
1915
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1916
+ Processing by PostsController#index as HTML
1917
+ Rendering posts/index.html.erb within layouts/application
1918
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1919
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1920
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1921
+ Processing by PostsController#index as HTML
1922
+ Rendering posts/index.html.erb within layouts/application
1923
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1924
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1925
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1926
+ Processing by PostsController#index as HTML
1927
+ Rendering posts/index.html.erb within layouts/application
1928
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1929
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1930
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1931
+ Processing by PostsController#index as HTML
1932
+ Rendering posts/index.html.erb within layouts/application
1933
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1934
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
1935
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1936
+ Processing by PostsController#index as HTML
1937
+ Rendering posts/index.html.erb within layouts/application
1938
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1939
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1940
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1941
+ Processing by PostsController#index as HTML
1942
+ Rendering posts/index.html.erb within layouts/application
1943
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1944
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 317)
1945
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1946
+ Processing by PostsController#index as HTML
1947
+ Rendering posts/index.html.erb within layouts/application
1948
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1949
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 317)
1950
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1951
+ Processing by PostsController#index as HTML
1952
+ Rendering posts/index.html.erb within layouts/application
1953
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1954
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
1955
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1956
+ Processing by PostsController#index as HTML
1957
+ Rendering posts/index.html.erb within layouts/application
1958
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1959
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 317)
1960
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:26:54 +0100
1961
+ Processing by PostsController#index as HTML
1962
+ Rendering posts/index.html.erb within layouts/application
1963
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1964
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
1965
+ Rendering themes/test/notifier/wellcome_message.html.erb
1966
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 92)
1967
+ Notifier#wellcome_message: processed outbound mail in 8.7ms
1968
+ Rendering notifier/good_bye_message.html.erb
1969
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 87)
1970
+ Notifier#good_bye_message: processed outbound mail in 3.5ms
1971
+  (2.0ms) SELECT sqlite_version(*)
1972
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
1973
+ Processing by PostsController#index as HTML
1974
+ Rendering themes/test/posts/index.html.erb within layouts/application
1975
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 368)
1976
+ Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms | Allocations: 2644)
1977
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
1978
+ Processing by PostsController#index as HTML
1979
+ Rendering themes/test/posts/index.html.erb within layouts/application
1980
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
1981
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 847)
1982
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
1983
+ Processing by PostsController#index as HTML
1984
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1985
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 85)
1986
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 857)
1987
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
1988
+ Processing by PostsController#index as HTML
1989
+ Rendering themes/test2/posts/index.html.erb within layouts/application
1990
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 83)
1991
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 852)
1992
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
1993
+ Processing by PostsController#index as HTML
1994
+ Rendering posts/index.html.erb within layouts/application
1995
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
1996
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 746)
1997
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
1998
+ Processing by PostsController#index as HTML
1999
+ Rendering posts/index.html.erb within layouts/application
2000
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
2001
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 318)
2002
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
2003
+ Processing by PostsController#index as HTML
2004
+ Rendering posts/index.html.erb within layouts/application
2005
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
2006
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 317)
2007
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
2008
+ Processing by PostsController#index as HTML
2009
+ Rendering posts/index.html.erb within layouts/application
2010
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2011
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 320)
2012
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
2013
+ Processing by PostsController#index as HTML
2014
+ Rendering posts/index.html.erb within layouts/application
2015
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2016
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2017
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
2018
+ Processing by PostsController#index as HTML
2019
+ Rendering posts/index.html.erb within layouts/application
2020
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2021
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
2022
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
2023
+ Processing by PostsController#index as HTML
2024
+ Rendering posts/index.html.erb within layouts/application
2025
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2026
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 317)
2027
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:36:29 +0100
2028
+ Processing by PostsController#index as HTML
2029
+ Rendering posts/index.html.erb within layouts/application
2030
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2031
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2032
+ Rendering themes/test/notifier/wellcome_message.html.erb
2033
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 87)
2034
+ Notifier#wellcome_message: processed outbound mail in 8.6ms
2035
+ Rendering notifier/good_bye_message.html.erb
2036
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
2037
+ Notifier#good_bye_message: processed outbound mail in 2.4ms
2038
+  (1.9ms) SELECT sqlite_version(*)
2039
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:39:26 +0100
2040
+ Processing by PostsController#index as HTML
2041
+ Rendering themes/test/posts/index.html.erb within layouts/application
2042
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.4ms | Allocations: 368)
2043
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms | Allocations: 2642)
2044
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:39:26 +0100
2045
+ Processing by PostsController#index as HTML
2046
+ Rendering themes/test/posts/index.html.erb within layouts/application
2047
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 84)
2048
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 853)
2049
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:39:26 +0100
2050
+ Processing by PostsController#index as HTML
2051
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2052
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2053
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 857)
2054
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:39:26 +0100
2055
+ Processing by PostsController#index as HTML
2056
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2057
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 84)
2058
+ Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 853)
2059
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:39:26 +0100
2060
+ Processing by PostsController#index as HTML
2061
+ Rendering posts/index.html.erb within layouts/application
2062
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 83)
2063
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 746)
2064
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:39:26 +0100
2065
+ Processing by PostsController#index as HTML
2066
+ Rendering posts/index.html.erb within layouts/application
2067
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 4)
2068
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 318)
2069
+ Rendering themes/test/notifier/wellcome_message.html.erb
2070
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 87)
2071
+ Notifier#wellcome_message: processed outbound mail in 9.1ms
2072
+ Rendering notifier/good_bye_message.html.erb
2073
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.6ms | Allocations: 87)
2074
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
2075
+  (1.9ms) SELECT sqlite_version(*)
2076
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:51 +0100
2077
+ Processing by PostsController#index as HTML
2078
+ Rendering themes/test/posts/index.html.erb within layouts/application
2079
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 368)
2080
+ Completed 200 OK in 17ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 2644)
2081
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:51 +0100
2082
+ Processing by PostsController#index as HTML
2083
+ Rendering themes/test/posts/index.html.erb within layouts/application
2084
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
2085
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 845)
2086
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:51 +0100
2087
+ Processing by PostsController#index as HTML
2088
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2089
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2090
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 857)
2091
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:51 +0100
2092
+ Processing by PostsController#index as HTML
2093
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2094
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 83)
2095
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 852)
2096
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:51 +0100
2097
+ Processing by PostsController#index as HTML
2098
+ Rendering posts/index.html.erb within layouts/application
2099
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2100
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 746)
2101
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:51 +0100
2102
+ Processing by PostsController#index as HTML
2103
+ Rendering posts/index.html.erb within layouts/application
2104
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2105
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
2106
+ Rendering themes/test/notifier/wellcome_message.html.erb
2107
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
2108
+ Notifier#wellcome_message: processed outbound mail in 6.3ms
2109
+ Rendering notifier/good_bye_message.html.erb
2110
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
2111
+ Notifier#good_bye_message: processed outbound mail in 2.1ms
2112
+  (1.4ms) SELECT sqlite_version(*)
2113
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:23 +0100
2114
+ Processing by PostsController#index as HTML
2115
+ Rendering themes/test/posts/index.html.erb within layouts/application
2116
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
2117
+ Completed 200 OK in 15ms (Views: 4.9ms | ActiveRecord: 0.0ms | Allocations: 2644)
2118
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:23 +0100
2119
+ Processing by PostsController#index as HTML
2120
+ Rendering themes/test/posts/index.html.erb within layouts/application
2121
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 81)
2122
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 845)
2123
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:23 +0100
2124
+ Processing by PostsController#index as HTML
2125
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2126
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2127
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 857)
2128
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:23 +0100
2129
+ Processing by PostsController#index as HTML
2130
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2131
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2132
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 852)
2133
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:23 +0100
2134
+ Processing by PostsController#index as HTML
2135
+ Rendering posts/index.html.erb within layouts/application
2136
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2137
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 746)
2138
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:23 +0100
2139
+ Processing by PostsController#index as HTML
2140
+ Rendering posts/index.html.erb within layouts/application
2141
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
2142
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 318)
2143
+ Rendering themes/test/notifier/wellcome_message.html.erb
2144
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
2145
+ Notifier#wellcome_message: processed outbound mail in 4.9ms
2146
+ Rendering notifier/good_bye_message.html.erb
2147
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
2148
+ Notifier#good_bye_message: processed outbound mail in 1.9ms
2149
+  (1.7ms) SELECT sqlite_version(*)
2150
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:52 +0100
2151
+ Processing by PostsController#index as HTML
2152
+ Rendering themes/test/posts/index.html.erb within layouts/application
2153
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 368)
2154
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 2644)
2155
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:52 +0100
2156
+ Processing by PostsController#index as HTML
2157
+ Rendering themes/test/posts/index.html.erb within layouts/application
2158
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 81)
2159
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 845)
2160
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:52 +0100
2161
+ Processing by PostsController#index as HTML
2162
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2163
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2164
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 857)
2165
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:52 +0100
2166
+ Processing by PostsController#index as HTML
2167
+ Rendering themes/test2/posts/index.html.erb within layouts/application
2168
+ Rendered themes/test2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2169
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 852)
2170
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:52 +0100
2171
+ Processing by PostsController#index as HTML
2172
+ Rendering posts/index.html.erb within layouts/application
2173
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2174
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 746)
2175
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:52 +0100
2176
+ Processing by PostsController#index as HTML
2177
+ Rendering posts/index.html.erb within layouts/application
2178
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2179
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
2180
+ Rendering themes/test/notifier/wellcome_message.html.erb
2181
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 87)
2182
+ Notifier#wellcome_message: processed outbound mail in 8.1ms
2183
+ Rendering notifier/good_bye_message.html.erb
2184
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
2185
+ Notifier#good_bye_message: processed outbound mail in 2.2ms