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,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at https://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ resources :posts
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 333feaf1d702a6a32b5973b23d1ae66d147bff06ef1017205a848fa1245fec7a2d2e787caddefcc1dc664dbb9161de02637d4c0ce9458682eda9142fdab98f48
15
+
16
+ test:
17
+ secret_key_base: f3cb3666c7480eac4e3d714fddb427eb78135e9c77a2fa980deb465945f56bb91fe94c1d6e2a5e290c987fea75d464912c2b9f7de7ebd313cf1ccc9c2285da44
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1 @@
1
+ spec/dummy6db/config/../../configdb/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
@@ -0,0 +1,2340 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ Processing by PostsController#index as HTML
7
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
8
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
9
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
10
+ Completed 200 OK in 8.4ms (Views: 8.2ms | ActiveRecord: 0.0ms)
11
+ Processing by PostsController#index as HTML
12
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
13
+ Processing by PostsController#index as HTML
14
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
15
+ Connecting to database specified by database.yml
16
+ Processing by PostsController#index as HTML
17
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
18
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
19
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
20
+ Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
21
+ Processing by PostsController#index as HTML
22
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
23
+ Processing by PostsController#index as HTML
24
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
25
+ Connecting to database specified by database.yml
26
+ Processing by PostsController#index as HTML
27
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
28
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
29
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
30
+ Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
31
+ Processing by PostsController#index as HTML
32
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
33
+ Processing by PostsController#index as HTML
34
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35
+ Connecting to database specified by database.yml
36
+ Processing by PostsController#index as HTML
37
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
38
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
39
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
40
+ Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
41
+ Processing by PostsController#index as HTML
42
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
43
+ Processing by PostsController#index as HTML
44
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
45
+ Connecting to database specified by database.yml
46
+ Processing by PostsController#index as HTML
47
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
48
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
49
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
50
+ Completed 200 OK in 8.1ms (Views: 7.8ms | ActiveRecord: 0.0ms)
51
+ Processing by PostsController#index as HTML
52
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
53
+ Processing by PostsController#index as HTML
54
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
55
+ Connecting to database specified by database.yml
56
+ Processing by PostsController#index as HTML
57
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
58
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
59
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
60
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
61
+ Processing by PostsController#index as HTML
62
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
63
+ Processing by PostsController#index as HTML
64
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
65
+ Connecting to database specified by database.yml
66
+ Processing by PostsController#index as HTML
67
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
68
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
69
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
70
+ Completed 200 OK in 8.6ms (Views: 8.3ms | ActiveRecord: 0.0ms)
71
+ Processing by PostsController#index as HTML
72
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
73
+ Processing by PostsController#index as HTML
74
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
75
+ Connecting to database specified by database.yml
76
+ Processing by PostsController#index as HTML
77
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
78
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
79
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
80
+ Completed 200 OK in 8.4ms (Views: 8.1ms | ActiveRecord: 0.0ms)
81
+ Processing by PostsController#index as HTML
82
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
83
+ Processing by PostsController#index as HTML
84
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
85
+ Rendered themes/test/notifier/wellcome_message.html.erb (2.3ms)
86
+
87
+ Notifier#wellcome_message: processed outbound mail in 176.6ms
88
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
89
+
90
+ Notifier#good_bye_message: processed outbound mail in 5.7ms
91
+ Processing by PostsController#index as HTML
92
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
93
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
94
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
96
+ Processing by PostsController#index as HTML
97
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
98
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
99
+ Processing by PostsController#index as HTML
100
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
101
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
102
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
103
+
104
+ Notifier#wellcome_message: processed outbound mail in 154.2ms
105
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
106
+
107
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
108
+ Processing by PostsController#index as HTML
109
+ Rendering themes/test/posts/index.html.erb within layouts/application
110
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
111
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
112
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
113
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms)
114
+ Processing by PostsController#index as HTML
115
+ Rendering themes/test/posts/index.html.erb within layouts/application
116
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
117
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
118
+ Processing by PostsController#index as HTML
119
+ Rendering themes/test/posts/index.html.erb within layouts/application
120
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
121
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
122
+ Rendering themes/test/notifier/wellcome_message.html.erb
123
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
124
+ Notifier#wellcome_message: processed outbound mail in 166.1ms
125
+ Rendering notifier/good_bye_message.html.erb
126
+ Rendered notifier/good_bye_message.html.erb (0.9ms)
127
+ Notifier#good_bye_message: processed outbound mail in 5.4ms
128
+ Processing by PostsController#index as HTML
129
+ Rendering themes/test/posts/index.html.erb within layouts/application
130
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
131
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
132
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
133
+ Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.0ms)
134
+ Processing by PostsController#index as HTML
135
+ Rendering themes/test/posts/index.html.erb within layouts/application
136
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
137
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
138
+ Processing by PostsController#index as HTML
139
+ Rendering themes/test/posts/index.html.erb within layouts/application
140
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
141
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
142
+ Rendering themes/test/notifier/wellcome_message.html.erb
143
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
144
+ Notifier#wellcome_message: processed outbound mail in 162.8ms
145
+ Rendering notifier/good_bye_message.html.erb
146
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
147
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
148
+ Processing by PostsController#index as HTML
149
+ Rendering themes/test/posts/index.html.erb within layouts/application
150
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
151
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
152
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
153
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.0ms)
154
+ Processing by PostsController#index as HTML
155
+ Rendering themes/test/posts/index.html.erb within layouts/application
156
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
157
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
158
+ Processing by PostsController#index as HTML
159
+ Rendering themes/test/posts/index.html.erb within layouts/application
160
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
161
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
162
+ Rendering themes/test/notifier/wellcome_message.html.erb
163
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
164
+ Notifier#wellcome_message: processed outbound mail in 174.3ms
165
+ Rendering notifier/good_bye_message.html.erb
166
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
167
+ Notifier#good_bye_message: processed outbound mail in 4.7ms
168
+ Processing by PostsController#index as HTML
169
+ Rendering themes/test/posts/index.html.erb within layouts/application
170
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
171
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
172
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
173
+ Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms)
174
+ Processing by PostsController#index as HTML
175
+ Rendering themes/test/posts/index.html.erb within layouts/application
176
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
177
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
178
+ Processing by PostsController#index as HTML
179
+ Rendering themes/test/posts/index.html.erb within layouts/application
180
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
181
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
182
+ Rendering themes/test/notifier/wellcome_message.html.erb
183
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
184
+ Notifier#wellcome_message: processed outbound mail in 169.4ms
185
+ Rendering notifier/good_bye_message.html.erb
186
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
187
+ Notifier#good_bye_message: processed outbound mail in 4.9ms
188
+ Processing by PostsController#index as HTML
189
+ Rendering themes/test/posts/index.html.erb within layouts/application
190
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
191
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.4ms)
192
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
193
+ Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.0ms)
194
+ Processing by PostsController#index as HTML
195
+ Rendering themes/test/posts/index.html.erb within layouts/application
196
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.3ms)
197
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
198
+ Processing by PostsController#index as HTML
199
+ Rendering themes/test/posts/index.html.erb within layouts/application
200
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
201
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
202
+ Rendering themes/test/notifier/wellcome_message.html.erb
203
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
204
+ Notifier#wellcome_message: processed outbound mail in 245.3ms
205
+ Rendering notifier/good_bye_message.html.erb
206
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
207
+ Notifier#good_bye_message: processed outbound mail in 6.4ms
208
+  (2.7ms) SELECT sqlite_version(*)
209
+ Rendering themes/test/notifier/wellcome_message.html.erb
210
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 2.1ms | Allocations: 346)
211
+ Notifier#wellcome_message: processed outbound mail in 17.7ms
212
+ Rendering notifier/good_bye_message.html.erb
213
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
214
+ Notifier#good_bye_message: processed outbound mail in 1.8ms
215
+  (1.1ms) SELECT sqlite_version(*)
216
+ Processing by PostsController#index as HTML
217
+ Rendering themes/test/posts/index.html.erb within layouts/application
218
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 3.3ms | Allocations: 998)
219
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms | Allocations: 4855)
220
+ Processing by PostsController#index as HTML
221
+ Rendering themes/test/posts/index.html.erb within layouts/application
222
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 96)
223
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 528)
224
+ Processing by PostsController#index as HTML
225
+ Rendering themes/test/posts/index.html.erb within layouts/application
226
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
227
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 334)
228
+ Rendering themes/test/notifier/wellcome_message.html.erb
229
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 87)
230
+ Notifier#wellcome_message: processed outbound mail in 8.8ms
231
+ Rendering notifier/good_bye_message.html.erb
232
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 85)
233
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
234
+  (1.3ms) SELECT sqlite_version(*)
235
+ Processing by PostsController#index as HTML
236
+ Rendering themes/test/posts/index.html.erb within layouts/application
237
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.1ms | Allocations: 999)
238
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4856)
239
+ Processing by PostsController#index as HTML
240
+ Rendering themes/test/posts/index.html.erb within layouts/application
241
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 96)
242
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 528)
243
+ Processing by PostsController#index as HTML
244
+ Rendering themes/test/posts/index.html.erb within layouts/application
245
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
246
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
247
+ Rendering themes/test/notifier/wellcome_message.html.erb
248
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
249
+ Notifier#wellcome_message: processed outbound mail in 5.3ms
250
+ Rendering notifier/good_bye_message.html.erb
251
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 85)
252
+ Notifier#good_bye_message: processed outbound mail in 2.6ms
253
+  (1.4ms) SELECT sqlite_version(*)
254
+ Processing by PostsController#index as HTML
255
+ Rendering themes/test/posts/index.html.erb within layouts/application
256
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.0ms | Allocations: 999)
257
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4856)
258
+ Processing by PostsController#index as HTML
259
+ Rendering themes/test/posts/index.html.erb within layouts/application
260
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 96)
261
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 528)
262
+ Processing by PostsController#index as HTML
263
+ Rendering themes/test/posts/index.html.erb within layouts/application
264
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
265
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
266
+ Rendering themes/test/notifier/wellcome_message.html.erb
267
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
268
+ Notifier#wellcome_message: processed outbound mail in 8.6ms
269
+ Rendering notifier/good_bye_message.html.erb
270
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 85)
271
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
272
+  (1.3ms) SELECT sqlite_version(*)
273
+ Processing by PostsController#index as HTML
274
+ Rendering themes/test/posts/index.html.erb within layouts/application
275
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.1ms | Allocations: 999)
276
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4856)
277
+ Processing by PostsController#index as HTML
278
+ Rendering themes/test/posts/index.html.erb within layouts/application
279
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 96)
280
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 528)
281
+ Processing by PostsController#index as HTML
282
+ Rendering themes/test/posts/index.html.erb within layouts/application
283
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 10)
284
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
285
+ Rendering themes/test/notifier/wellcome_message.html.erb
286
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
287
+ Notifier#wellcome_message: processed outbound mail in 5.6ms
288
+ Rendering notifier/good_bye_message.html.erb
289
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 85)
290
+ Notifier#good_bye_message: processed outbound mail in 3.3ms
291
+  (1.2ms) SELECT sqlite_version(*)
292
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:23 +0100
293
+ Processing by PostsController#index as HTML
294
+ Rendering themes/test/posts/index.html.erb within layouts/application
295
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.1ms | Allocations: 345)
296
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms | Allocations: 2551)
297
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:23 +0100
298
+ Processing by PostsController#index as HTML
299
+ Rendering themes/test/posts/index.html.erb within layouts/application
300
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
301
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 320)
302
+ Rendering themes/test/notifier/wellcome_message.html.erb
303
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.4ms | Allocations: 85)
304
+ Notifier#wellcome_message: processed outbound mail in 7.1ms
305
+ Rendering notifier/good_bye_message.html.erb
306
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.5ms | Allocations: 85)
307
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
308
+  (2.7ms) SELECT sqlite_version(*)
309
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:30 +0100
310
+ Processing by PostsController#index as HTML
311
+ Rendering themes/test/posts/index.html.erb within layouts/application
312
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 345)
313
+ Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.0ms | Allocations: 2550)
314
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:30 +0100
315
+ Processing by PostsController#index as HTML
316
+ Rendering themes/test/posts/index.html.erb within layouts/application
317
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
318
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
319
+ Rendering themes/test/notifier/wellcome_message.html.erb
320
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 88)
321
+ Notifier#wellcome_message: processed outbound mail in 5.5ms
322
+ Rendering notifier/good_bye_message.html.erb
323
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 85)
324
+ Notifier#good_bye_message: processed outbound mail in 3.0ms
325
+  (1.2ms) SELECT sqlite_version(*)
326
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:29:46 +0100
327
+ Processing by PostsController#index as HTML
328
+ Rendering themes/test/posts/index.html.erb within layouts/application
329
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 345)
330
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms | Allocations: 2550)
331
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:29:46 +0100
332
+ Processing by PostsController#index as HTML
333
+ Rendering themes/test/posts/index.html.erb within layouts/application
334
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
335
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
336
+ Rendering themes/test/notifier/wellcome_message.html.erb
337
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 90)
338
+ Notifier#wellcome_message: processed outbound mail in 7.1ms
339
+ Rendering notifier/good_bye_message.html.erb
340
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
341
+ Notifier#good_bye_message: processed outbound mail in 2.0ms
342
+  (1.2ms) SELECT sqlite_version(*)
343
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:37:47 +0100
344
+ Processing by PostsController#index as HTML
345
+ Rendering themes/test/posts/index.html.erb within layouts/application
346
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 345)
347
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms | Allocations: 2550)
348
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:37:47 +0100
349
+ Processing by PostsController#index as HTML
350
+ Rendering themes/test/posts/index.html.erb within layouts/application
351
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
352
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
353
+ Rendering themes/test/notifier/wellcome_message.html.erb
354
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.8ms | Allocations: 85)
355
+ Notifier#wellcome_message: processed outbound mail in 6.0ms
356
+ Rendering notifier/good_bye_message.html.erb
357
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
358
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
359
+  (1.2ms) SELECT sqlite_version(*)
360
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:12 +0100
361
+ Processing by PostsController#index as HTML
362
+ Rendering themes/test/posts/index.html.erb within layouts/application
363
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 345)
364
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2556)
365
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:12 +0100
366
+ Processing by PostsController#index as HTML
367
+ Rendering themes/test/posts/index.html.erb within layouts/application
368
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
369
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
370
+ Rendering themes/test/notifier/wellcome_message.html.erb
371
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 85)
372
+ Notifier#wellcome_message: processed outbound mail in 5.2ms
373
+ Rendering notifier/good_bye_message.html.erb
374
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
375
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
376
+  (1.2ms) SELECT sqlite_version(*)
377
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:27 +0100
378
+ Processing by PostsController#index as HTML
379
+ Rendering themes/test/posts/index.html.erb within layouts/application
380
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 345)
381
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms | Allocations: 2556)
382
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:27 +0100
383
+ Processing by PostsController#index as HTML
384
+ Rendering themes/test/posts/index.html.erb within layouts/application
385
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
386
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
387
+ Rendering themes/test/notifier/wellcome_message.html.erb
388
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
389
+ Notifier#wellcome_message: processed outbound mail in 5.1ms
390
+ Rendering notifier/good_bye_message.html.erb
391
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
392
+ Notifier#good_bye_message: processed outbound mail in 2.0ms
393
+  (2.6ms) SELECT sqlite_version(*)
394
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:00 +0100
395
+ Processing by PostsController#index as HTML
396
+ Rendering themes/test/posts/index.html.erb within layouts/application
397
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.2ms | Allocations: 345)
398
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms | Allocations: 2556)
399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:00 +0100
400
+ Processing by PostsController#index as HTML
401
+ Rendering themes/test/posts/index.html.erb within layouts/application
402
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
403
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
404
+ Rendering themes/test/notifier/wellcome_message.html.erb
405
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
406
+ Notifier#wellcome_message: processed outbound mail in 4.3ms
407
+ Rendering notifier/good_bye_message.html.erb
408
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
409
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
410
+  (2.8ms) SELECT sqlite_version(*)
411
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:00 +0100
412
+ Processing by PostsController#index as HTML
413
+ Rendering themes/test/posts/index.html.erb within layouts/application
414
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 3.4ms | Allocations: 345)
415
+ Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms | Allocations: 2556)
416
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:00 +0100
417
+ Processing by PostsController#index as HTML
418
+ Rendering themes/test/posts/index.html.erb within layouts/application
419
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
420
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
421
+ Rendering themes/test/notifier/wellcome_message.html.erb
422
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.3ms | Allocations: 85)
423
+ Notifier#wellcome_message: processed outbound mail in 6.5ms
424
+ Rendering notifier/good_bye_message.html.erb
425
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.3ms | Allocations: 85)
426
+ Notifier#good_bye_message: processed outbound mail in 2.9ms
427
+  (1.5ms) SELECT sqlite_version(*)
428
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:08 +0100
429
+ Processing by PostsController#index as HTML
430
+ Rendering themes/test/posts/index.html.erb within layouts/application
431
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 345)
432
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms | Allocations: 2557)
433
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:08 +0100
434
+ Processing by PostsController#index as HTML
435
+ Rendering themes/test/posts/index.html.erb within layouts/application
436
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
437
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 320)
438
+ Rendering themes/test/notifier/wellcome_message.html.erb
439
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 85)
440
+ Notifier#wellcome_message: processed outbound mail in 7.8ms
441
+ Rendering notifier/good_bye_message.html.erb
442
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 85)
443
+ Notifier#good_bye_message: processed outbound mail in 3.2ms
444
+  (1.2ms) SELECT sqlite_version(*)
445
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:41 +0100
446
+ Processing by PostsController#index as HTML
447
+ Rendering themes/test/posts/index.html.erb within layouts/application
448
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 345)
449
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms | Allocations: 2557)
450
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:41 +0100
451
+ Processing by PostsController#index as HTML
452
+ Rendering themes/test/posts/index.html.erb within layouts/application
453
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
454
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 320)
455
+ Rendering themes/test/notifier/wellcome_message.html.erb
456
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 85)
457
+ Notifier#wellcome_message: processed outbound mail in 7.5ms
458
+ Rendering notifier/good_bye_message.html.erb
459
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
460
+ Notifier#good_bye_message: processed outbound mail in 1.8ms
461
+  (1.2ms) SELECT sqlite_version(*)
462
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:12 +0100
463
+ Processing by PostsController#index as HTML
464
+ Rendering themes/test/posts/index.html.erb within layouts/application
465
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 345)
466
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms | Allocations: 2557)
467
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:12 +0100
468
+ Processing by PostsController#index as HTML
469
+ Rendering themes/test/posts/index.html.erb within layouts/application
470
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
471
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
472
+ Rendering themes/test/notifier/wellcome_message.html.erb
473
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
474
+ Notifier#wellcome_message: processed outbound mail in 5.3ms
475
+ Rendering notifier/good_bye_message.html.erb
476
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
477
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
478
+  (2.7ms) SELECT sqlite_version(*)
479
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:52 +0100
480
+ Processing by PostsController#index as HTML
481
+ Rendering themes/test/posts/index.html.erb within layouts/application
482
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 3.4ms | Allocations: 345)
483
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms | Allocations: 2556)
484
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:52 +0100
485
+ Processing by PostsController#index as HTML
486
+ Rendering themes/test/posts/index.html.erb within layouts/application
487
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
488
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
489
+ Rendering themes/test/notifier/wellcome_message.html.erb
490
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.4ms | Allocations: 85)
491
+ Notifier#wellcome_message: processed outbound mail in 7.2ms
492
+ Rendering notifier/good_bye_message.html.erb
493
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.5ms | Allocations: 85)
494
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
495
+  (2.7ms) SELECT sqlite_version(*)
496
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:47 +0100
497
+ Processing by PostsController#index as HTML
498
+ Rendering themes/test/posts/index.html.erb within layouts/application
499
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.2ms | Allocations: 345)
500
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms | Allocations: 2557)
501
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:47 +0100
502
+ Processing by PostsController#index as HTML
503
+ Rendering themes/test/posts/index.html.erb within layouts/application
504
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
505
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
506
+ Rendering themes/test/notifier/wellcome_message.html.erb
507
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
508
+ Notifier#wellcome_message: processed outbound mail in 4.9ms
509
+ Rendering notifier/good_bye_message.html.erb
510
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
511
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
512
+  (1.6ms) SELECT sqlite_version(*)
513
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:22 +0100
514
+ Processing by PostsController#index as HTML
515
+ Rendering themes/test/posts/index.html.erb within layouts/application
516
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
517
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms | Allocations: 2642)
518
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:22 +0100
519
+ Processing by PostsController#index as HTML
520
+ Rendering themes/test/posts/index.html.erb within layouts/application
521
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
522
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
523
+ Rendering themes/test/notifier/wellcome_message.html.erb
524
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
525
+ Notifier#wellcome_message: processed outbound mail in 5.8ms
526
+ Rendering notifier/good_bye_message.html.erb
527
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
528
+ Notifier#good_bye_message: processed outbound mail in 2.1ms
529
+  (1.4ms) SELECT sqlite_version(*)
530
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:31 +0100
531
+ Processing by PostsController#index as HTML
532
+ Rendering themes/test/posts/index.html.erb within layouts/application
533
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
534
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms | Allocations: 2643)
535
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:31 +0100
536
+ Processing by PostsController#index as HTML
537
+ Rendering themes/test/posts/index.html.erb within layouts/application
538
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
539
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
540
+ Rendering themes/test/notifier/wellcome_message.html.erb
541
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
542
+ Notifier#wellcome_message: processed outbound mail in 5.2ms
543
+ Rendering notifier/good_bye_message.html.erb
544
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 87)
545
+ Notifier#good_bye_message: processed outbound mail in 2.5ms
546
+  (1.5ms) SELECT sqlite_version(*)
547
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:43 +0100
548
+ Processing by PostsController#index as HTML
549
+ Rendering themes/test/posts/index.html.erb within layouts/application
550
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
551
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms | Allocations: 2642)
552
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:43 +0100
553
+ Processing by PostsController#index as HTML
554
+ Rendering themes/test/posts/index.html.erb within layouts/application
555
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
556
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
557
+ Rendering themes/test/notifier/wellcome_message.html.erb
558
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
559
+ Notifier#wellcome_message: processed outbound mail in 10.4ms
560
+ Rendering notifier/good_bye_message.html.erb
561
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
562
+ Notifier#good_bye_message: processed outbound mail in 2.3ms
563
+  (1.3ms) SELECT sqlite_version(*)
564
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:18 +0100
565
+ Processing by PostsController#index as HTML
566
+ Rendering themes/test/posts/index.html.erb within layouts/application
567
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 368)
568
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms | Allocations: 2642)
569
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:18 +0100
570
+ Processing by PostsController#index as HTML
571
+ Rendering themes/test/posts/index.html.erb within layouts/application
572
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
573
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 320)
574
+ Rendering themes/test/notifier/wellcome_message.html.erb
575
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
576
+ Notifier#wellcome_message: processed outbound mail in 5.9ms
577
+ Rendering notifier/good_bye_message.html.erb
578
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
579
+ Notifier#good_bye_message: processed outbound mail in 2.6ms
580
+  (3.3ms) SELECT sqlite_version(*)
581
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:17 +0100
582
+ Processing by PostsController#index as HTML
583
+ Rendering themes/test/posts/index.html.erb within layouts/application
584
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.4ms | Allocations: 368)
585
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms | Allocations: 2643)
586
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:17 +0100
587
+ Processing by PostsController#index as HTML
588
+ Rendering themes/test/posts/index.html.erb within layouts/application
589
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
590
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 320)
591
+ Rendering themes/test/notifier/wellcome_message.html.erb
592
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
593
+ Notifier#wellcome_message: processed outbound mail in 7.3ms
594
+ Rendering notifier/good_bye_message.html.erb
595
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
596
+ Notifier#good_bye_message: processed outbound mail in 2.8ms
597
+  (3.3ms) SELECT sqlite_version(*)
598
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:11 +0100
599
+ Processing by PostsController#index as HTML
600
+ Rendering themes/test/posts/index.html.erb within layouts/application
601
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.3ms | Allocations: 368)
602
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms | Allocations: 2643)
603
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:11 +0100
604
+ Processing by PostsController#index as HTML
605
+ Rendering themes/test/posts/index.html.erb within layouts/application
606
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
607
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 320)
608
+ Rendering themes/test/notifier/wellcome_message.html.erb
609
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
610
+ Notifier#wellcome_message: processed outbound mail in 10.9ms
611
+ Rendering notifier/good_bye_message.html.erb
612
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
613
+ Notifier#good_bye_message: processed outbound mail in 2.7ms
614
+  (2.9ms) SELECT sqlite_version(*)
615
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:26 +0100
616
+ Processing by PostsController#index as HTML
617
+ Rendering themes/test/posts/index.html.erb within layouts/application
618
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 4.2ms | Allocations: 368)
619
+ Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms | Allocations: 2642)
620
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:26 +0100
621
+ Processing by PostsController#index as HTML
622
+ Rendering themes/test/posts/index.html.erb within layouts/application
623
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
624
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
625
+ Rendering themes/test/notifier/wellcome_message.html.erb
626
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.4ms | Allocations: 87)
627
+ Notifier#wellcome_message: processed outbound mail in 7.9ms
628
+ Rendering notifier/good_bye_message.html.erb
629
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.3ms | Allocations: 87)
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.7ms) SELECT sqlite_version(*)
1903
+  (1.7ms) SELECT sqlite_version(*)
1904
+  (1.8ms) SELECT sqlite_version(*)
1905
+  (1.7ms) SELECT sqlite_version(*)
1906
+  (2.6ms) SELECT sqlite_version(*)
1907
+  (1.4ms) SELECT sqlite_version(*)
1908
+  (1.8ms) SELECT sqlite_version(*)
1909
+  (1.2ms) SELECT sqlite_version(*)
1910
+  (1.2ms) SELECT sqlite_version(*)
1911
+  (1.2ms) SELECT sqlite_version(*)
1912
+  (1.3ms) SELECT sqlite_version(*)
1913
+  (1.3ms) SELECT sqlite_version(*)
1914
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:20:40 +0100
1915
+ Processing by PostsController#index as HTML
1916
+ Rendering posts/index.html.erb within layouts/application
1917
+ Rendered posts/index.html.erb within layouts/application (Duration: 2.3ms | Allocations: 368)
1918
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms | Allocations: 2538)
1919
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:20:40 +0100
1920
+ Processing by PostsController#index as HTML
1921
+ Rendering posts/index.html.erb within layouts/application
1922
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1923
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 321)
1924
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:20:40 +0100
1925
+ Processing by PostsController#index as HTML
1926
+ Rendering posts/index.html.erb within layouts/application
1927
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1928
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
1929
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:20:40 +0100
1930
+ Processing by PostsController#index as HTML
1931
+ Rendering posts/index.html.erb within layouts/application
1932
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1933
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1934
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:20:40 +0100
1935
+ Processing by PostsController#index as HTML
1936
+ Rendering posts/index.html.erb within layouts/application
1937
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1938
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
1939
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:20:40 +0100
1940
+ Processing by PostsController#index as HTML
1941
+ Rendering posts/index.html.erb within layouts/application
1942
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1943
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1944
+ Rendering notifier/good_bye_message.html.erb
1945
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
1946
+ Notifier#good_bye_message: processed outbound mail in 7.4ms
1947
+  (1.6ms) SELECT sqlite_version(*)
1948
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:22:43 +0100
1949
+ Processing by PostsController#index as HTML
1950
+ Rendering posts/index.html.erb within layouts/application
1951
+ Rendered posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 368)
1952
+ Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms | Allocations: 2537)
1953
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:22:43 +0100
1954
+ Processing by PostsController#index as HTML
1955
+ Rendering posts/index.html.erb within layouts/application
1956
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1957
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 322)
1958
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:22:43 +0100
1959
+ Processing by PostsController#index as HTML
1960
+ Rendering posts/index.html.erb within layouts/application
1961
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1962
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
1963
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:22:43 +0100
1964
+ Processing by PostsController#index as HTML
1965
+ Rendering posts/index.html.erb within layouts/application
1966
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1967
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
1968
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:22:43 +0100
1969
+ Processing by PostsController#index as HTML
1970
+ Rendering posts/index.html.erb within layouts/application
1971
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1972
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
1973
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:22:43 +0100
1974
+ Processing by PostsController#index as HTML
1975
+ Rendering posts/index.html.erb within layouts/application
1976
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1977
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
1978
+ Rendering notifier/wellcome_message.html.erb
1979
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 90)
1980
+ Notifier#wellcome_message: processed outbound mail in 5.3ms
1981
+ Rendering notifier/good_bye_message.html.erb
1982
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
1983
+ Notifier#good_bye_message: processed outbound mail in 3.1ms
1984
+  (1.7ms) SELECT sqlite_version(*)
1985
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:23:56 +0100
1986
+ Processing by PostsController#index as HTML
1987
+ Rendering posts/index.html.erb within layouts/application
1988
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 368)
1989
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms | Allocations: 2537)
1990
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:23:56 +0100
1991
+ Processing by PostsController#index as HTML
1992
+ Rendering posts/index.html.erb within layouts/application
1993
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1994
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 322)
1995
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:23:56 +0100
1996
+ Processing by PostsController#index as HTML
1997
+ Rendering posts/index.html.erb within layouts/application
1998
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1999
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2000
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:23:56 +0100
2001
+ Processing by PostsController#index as HTML
2002
+ Rendering posts/index.html.erb within layouts/application
2003
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2004
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2005
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:23:56 +0100
2006
+ Processing by PostsController#index as HTML
2007
+ Rendering posts/index.html.erb within layouts/application
2008
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2009
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2010
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:23:56 +0100
2011
+ Processing by PostsController#index as HTML
2012
+ Rendering posts/index.html.erb within layouts/application
2013
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2014
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2015
+ Rendering notifier/wellcome_message.html.erb
2016
+ Rendered notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 92)
2017
+ Notifier#wellcome_message: processed outbound mail in 5.3ms
2018
+ Rendering notifier/good_bye_message.html.erb
2019
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
2020
+ Notifier#good_bye_message: processed outbound mail in 1.9ms
2021
+  (1.3ms) SELECT sqlite_version(*)
2022
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:25:40 +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.8ms | Allocations: 368)
2026
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms | Allocations: 2537)
2027
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:25:40 +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.6ms | ActiveRecord: 0.0ms | Allocations: 321)
2032
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:25:40 +0100
2033
+ Processing by PostsController#index as HTML
2034
+ Rendering posts/index.html.erb within layouts/application
2035
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2036
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2037
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:25:40 +0100
2038
+ Processing by PostsController#index as HTML
2039
+ Rendering posts/index.html.erb within layouts/application
2040
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2041
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2042
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:25:40 +0100
2043
+ Processing by PostsController#index as HTML
2044
+ Rendering posts/index.html.erb within layouts/application
2045
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2046
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2047
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:25:40 +0100
2048
+ Processing by PostsController#index as HTML
2049
+ Rendering posts/index.html.erb within layouts/application
2050
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2051
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2052
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
2053
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 88)
2054
+ Notifier#wellcome_message: processed outbound mail in 7.6ms
2055
+ Rendering notifier/good_bye_message.html.erb
2056
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
2057
+ Notifier#good_bye_message: processed outbound mail in 2.4ms
2058
+  (1.6ms) SELECT sqlite_version(*)
2059
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:28:03 +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.8ms | Allocations: 368)
2063
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 2537)
2064
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:28:03 +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.0ms | Allocations: 4)
2068
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 321)
2069
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:28:03 +0100
2070
+ Processing by PostsController#index as HTML
2071
+ Rendering posts/index.html.erb within layouts/application
2072
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2073
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2074
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:28:03 +0100
2075
+ Processing by PostsController#index as HTML
2076
+ Rendering posts/index.html.erb within layouts/application
2077
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2078
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2079
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:28:03 +0100
2080
+ Processing by PostsController#index as HTML
2081
+ Rendering posts/index.html.erb within layouts/application
2082
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2083
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 317)
2084
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:28:03 +0100
2085
+ Processing by PostsController#index as HTML
2086
+ Rendering posts/index.html.erb within layouts/application
2087
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2088
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 317)
2089
+  (1.3ms) SELECT sqlite_version(*)
2090
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:29:53 +0100
2091
+ Processing by PostsController#index as HTML
2092
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2093
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 370)
2094
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms | Allocations: 2646)
2095
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:29:53 +0100
2096
+ Processing by PostsController#index as HTML
2097
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2098
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2099
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 849)
2100
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:29:53 +0100
2101
+ Processing by PostsController#index as HTML
2102
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2103
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2104
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 858)
2105
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:29:53 +0100
2106
+ Processing by PostsController#index as HTML
2107
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2108
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 83)
2109
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 856)
2110
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:29:53 +0100
2111
+ Processing by PostsController#index as HTML
2112
+ Rendering posts/index.html.erb within layouts/application
2113
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2114
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 747)
2115
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:29:53 +0100
2116
+ Processing by PostsController#index as HTML
2117
+ Rendering posts/index.html.erb within layouts/application
2118
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2119
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 318)
2120
+  (1.3ms) SELECT sqlite_version(*)
2121
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:30:17 +0100
2122
+ Processing by PostsController#index as HTML
2123
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2124
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 370)
2125
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms | Allocations: 2646)
2126
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:30:17 +0100
2127
+ Processing by PostsController#index as HTML
2128
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2129
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2130
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 849)
2131
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:30:17 +0100
2132
+ Processing by PostsController#index as HTML
2133
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2134
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2135
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 858)
2136
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:30:17 +0100
2137
+ Processing by PostsController#index as HTML
2138
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2139
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 83)
2140
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 853)
2141
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:30:17 +0100
2142
+ Processing by PostsController#index as HTML
2143
+ Rendering posts/index.html.erb within layouts/application
2144
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2145
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 747)
2146
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 09:30:17 +0100
2147
+ Processing by PostsController#index as HTML
2148
+ Rendering posts/index.html.erb within layouts/application
2149
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2150
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
2151
+  (1.4ms) SELECT sqlite_version(*)
2152
+  (1.6ms) SELECT sqlite_version(*)
2153
+  (1.7ms) SELECT sqlite_version(*)
2154
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:47 +0100
2155
+ Processing by PostsController#index as HTML
2156
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2157
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 370)
2158
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms | Allocations: 2647)
2159
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:47 +0100
2160
+ Processing by PostsController#index as HTML
2161
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2162
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2163
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 848)
2164
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:47 +0100
2165
+ Processing by PostsController#index as HTML
2166
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2167
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 85)
2168
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 857)
2169
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:47 +0100
2170
+ Processing by PostsController#index as HTML
2171
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2172
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2173
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 852)
2174
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:47 +0100
2175
+ Processing by PostsController#index as HTML
2176
+ Rendering posts/index.html.erb within layouts/application
2177
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2178
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 746)
2179
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:47 +0100
2180
+ Processing by PostsController#index as HTML
2181
+ Rendering posts/index.html.erb within layouts/application
2182
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
2183
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 318)
2184
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
2185
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (Duration: 0.6ms | Allocations: 88)
2186
+ Notifier#wellcome_message: processed outbound mail in 8.6ms
2187
+ Rendering notifier/good_bye_message.html.erb
2188
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
2189
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
2190
+  (1.7ms) SELECT sqlite_version(*)
2191
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:19 +0100
2192
+ Processing by PostsController#index as HTML
2193
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2194
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 370)
2195
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms | Allocations: 2647)
2196
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:19 +0100
2197
+ Processing by PostsController#index as HTML
2198
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2199
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2200
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 848)
2201
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:19 +0100
2202
+ Processing by PostsController#index as HTML
2203
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2204
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2205
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 857)
2206
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:19 +0100
2207
+ Processing by PostsController#index as HTML
2208
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2209
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 83)
2210
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 852)
2211
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:19 +0100
2212
+ Processing by PostsController#index as HTML
2213
+ Rendering posts/index.html.erb within layouts/application
2214
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2215
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 746)
2216
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:19 +0100
2217
+ Processing by PostsController#index as HTML
2218
+ Rendering posts/index.html.erb within layouts/application
2219
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2220
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 318)
2221
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
2222
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (Duration: 0.6ms | Allocations: 88)
2223
+ Notifier#wellcome_message: processed outbound mail in 8.6ms
2224
+ Rendering notifier/good_bye_message.html.erb
2225
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
2226
+ Notifier#good_bye_message: processed outbound mail in 3.3ms
2227
+  (1.7ms) SELECT sqlite_version(*)
2228
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2229
+ Processing by PostsController#index as HTML
2230
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2231
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 442)
2232
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms | Allocations: 2719)
2233
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2234
+ Processing by PostsController#index as HTML
2235
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2236
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 124)
2237
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 889)
2238
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2239
+ Processing by PostsController#index as HTML
2240
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2241
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 124)
2242
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 891)
2243
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2244
+ Processing by PostsController#index as HTML
2245
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2246
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 125)
2247
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 897)
2248
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2249
+ Processing by PostsController#index as HTML
2250
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2251
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 85)
2252
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 861)
2253
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2254
+ Processing by PostsController#index as HTML
2255
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2256
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 83)
2257
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 856)
2258
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2259
+ Processing by PostsController#index as HTML
2260
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2261
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2262
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 858)
2263
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2264
+ Processing by PostsController#index as HTML
2265
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2266
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2267
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 860)
2268
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2269
+ Processing by PostsController#index as HTML
2270
+ Rendering posts/index.html.erb within layouts/application
2271
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2272
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 746)
2273
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:28:28 +0100
2274
+ Processing by PostsController#index as HTML
2275
+ Rendering posts/index.html.erb within layouts/application
2276
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2277
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
2278
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
2279
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 88)
2280
+ Notifier#wellcome_message: processed outbound mail in 4.5ms
2281
+ Rendering notifier/good_bye_message.html.erb
2282
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
2283
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
2284
+  (1.8ms) SELECT sqlite_version(*)
2285
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2286
+ Processing by PostsController#index as HTML
2287
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2288
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 442)
2289
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms | Allocations: 2719)
2290
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2291
+ Processing by PostsController#index as HTML
2292
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2293
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 124)
2294
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 889)
2295
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2296
+ Processing by PostsController#index as HTML
2297
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2298
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 124)
2299
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 891)
2300
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2301
+ Processing by PostsController#index as HTML
2302
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
2303
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 124)
2304
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 893)
2305
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2306
+ Processing by PostsController#index as HTML
2307
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2308
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 148)
2309
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 924)
2310
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2311
+ Processing by PostsController#index as HTML
2312
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2313
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 124)
2314
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 897)
2315
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2316
+ Processing by PostsController#index as HTML
2317
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2318
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 124)
2319
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 899)
2320
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2321
+ Processing by PostsController#index as HTML
2322
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
2323
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 124)
2324
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 901)
2325
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2326
+ Processing by PostsController#index as HTML
2327
+ Rendering posts/index.html.erb within layouts/application
2328
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
2329
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 746)
2330
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:47 +0100
2331
+ Processing by PostsController#index as HTML
2332
+ Rendering posts/index.html.erb within layouts/application
2333
+ Rendered posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
2334
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 318)
2335
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
2336
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 88)
2337
+ Notifier#wellcome_message: processed outbound mail in 8.4ms
2338
+ Rendering notifier/good_bye_message.html.erb
2339
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 87)
2340
+ Notifier#good_bye_message: processed outbound mail in 3.8ms