themes 0.0.5 → 0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (189) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +52 -10
  3. data/lib/generators/themes/templates/theme_loader.rb.erb +3 -4
  4. data/lib/themes.rb +42 -5
  5. data/lib/themes/base_loader.rb +22 -0
  6. data/lib/themes/default_loader.rb +18 -0
  7. data/lib/themes/engine.rb +32 -15
  8. data/lib/themes/helpers.rb +2 -2
  9. data/lib/themes/middleware.rb +13 -0
  10. data/lib/themes/version.rb +1 -1
  11. data/spec/config/themes/test2_loader.rb +7 -0
  12. data/spec/config/themes/test_loader.rb +7 -0
  13. data/spec/configdb/themes/testdb2_loader.rb +5 -0
  14. data/spec/configdb/themes/testdb_loader.rb +5 -0
  15. data/spec/dummy3/config/themes +1 -0
  16. data/spec/dummy3/log/test.log +441 -0
  17. data/spec/dummy3db/README.rdoc +261 -0
  18. data/spec/dummy3db/Rakefile +7 -0
  19. data/spec/dummy3db/app +1 -0
  20. data/spec/dummy3db/config.ru +4 -0
  21. data/spec/dummy3db/config/application.rb +60 -0
  22. data/spec/dummy3db/config/boot.rb +10 -0
  23. data/spec/dummy3db/config/database.yml +26 -0
  24. data/spec/dummy3db/config/environment.rb +5 -0
  25. data/spec/dummy3db/config/environments/development.rb +37 -0
  26. data/spec/dummy3db/config/environments/production.rb +67 -0
  27. data/spec/dummy3db/config/environments/test.rb +37 -0
  28. data/spec/dummy3db/config/initializers/backtrace_silencers.rb +7 -0
  29. data/spec/dummy3db/config/initializers/inflections.rb +15 -0
  30. data/spec/dummy3db/config/initializers/mime_types.rb +5 -0
  31. data/spec/dummy3db/config/initializers/secret_token.rb +7 -0
  32. data/spec/dummy3db/config/initializers/session_store.rb +8 -0
  33. data/spec/dummy3db/config/initializers/wrap_parameters.rb +14 -0
  34. data/spec/dummy3db/config/locales/en.yml +5 -0
  35. data/spec/dummy3db/config/routes.rb +58 -0
  36. data/spec/dummy3db/config/themes +1 -0
  37. data/spec/dummy3db/log/test.log +764 -0
  38. data/spec/dummy3db/public/404.html +26 -0
  39. data/spec/dummy3db/public/422.html +26 -0
  40. data/spec/dummy3db/public/500.html +25 -0
  41. data/spec/{dummy/log/test.log → dummy3db/public/favicon.ico} +0 -0
  42. data/spec/dummy3db/script/rails +6 -0
  43. data/spec/dummy4/config/themes +1 -0
  44. data/spec/dummy4/log/test.log +322 -0
  45. data/spec/dummy4db/README.rdoc +261 -0
  46. data/spec/dummy4db/Rakefile +7 -0
  47. data/spec/dummy4db/app +1 -0
  48. data/spec/dummy4db/bin/bundle +3 -0
  49. data/spec/dummy4db/bin/rails +4 -0
  50. data/spec/dummy4db/bin/rake +4 -0
  51. data/spec/dummy4db/bin/setup +29 -0
  52. data/spec/dummy4db/config.ru +4 -0
  53. data/spec/dummy4db/config/application.rb +27 -0
  54. data/spec/dummy4db/config/boot.rb +3 -0
  55. data/spec/dummy4db/config/database.yml +26 -0
  56. data/spec/dummy4db/config/environment.rb +5 -0
  57. data/spec/dummy4db/config/environments/development.rb +41 -0
  58. data/spec/dummy4db/config/environments/production.rb +79 -0
  59. data/spec/dummy4db/config/environments/test.rb +42 -0
  60. data/spec/dummy4db/config/initializers/assets.rb +11 -0
  61. data/spec/dummy4db/config/initializers/backtrace_silencers.rb +7 -0
  62. data/spec/dummy4db/config/initializers/cookies_serializer.rb +3 -0
  63. data/spec/dummy4db/config/initializers/filter_parameter_logging.rb +4 -0
  64. data/spec/dummy4db/config/initializers/inflections.rb +16 -0
  65. data/spec/dummy4db/config/initializers/mime_types.rb +4 -0
  66. data/spec/dummy4db/config/initializers/secret_token.rb +12 -0
  67. data/spec/dummy4db/config/initializers/session_store.rb +3 -0
  68. data/spec/dummy4db/config/initializers/wrap_parameters.rb +14 -0
  69. data/spec/dummy4db/config/locales/en.yml +23 -0
  70. data/spec/dummy4db/config/routes.rb +57 -0
  71. data/spec/dummy4db/config/secrets.yml +22 -0
  72. data/spec/dummy4db/config/themes +1 -0
  73. data/spec/dummy4db/log/test.log +550 -0
  74. data/spec/dummy4db/public/404.html +26 -0
  75. data/spec/dummy4db/public/422.html +26 -0
  76. data/spec/dummy4db/public/500.html +25 -0
  77. data/spec/dummy4db/public/favicon.ico +0 -0
  78. data/spec/dummy4db/script/rails +6 -0
  79. data/spec/dummy5/config/themes +1 -0
  80. data/spec/dummy5/log/test.log +380 -0
  81. data/spec/dummy5db/README.rdoc +261 -0
  82. data/spec/dummy5db/Rakefile +7 -0
  83. data/spec/dummy5db/app +1 -0
  84. data/spec/dummy5db/bin/bundle +3 -0
  85. data/spec/dummy5db/bin/rails +4 -0
  86. data/spec/dummy5db/bin/rake +4 -0
  87. data/spec/dummy5db/bin/setup +36 -0
  88. data/spec/dummy5db/bin/update +31 -0
  89. data/spec/dummy5db/bin/yarn +11 -0
  90. data/spec/dummy5db/config.ru +4 -0
  91. data/spec/dummy5db/config/application.rb +20 -0
  92. data/spec/dummy5db/config/boot.rb +4 -0
  93. data/spec/dummy5db/config/cable.yml +10 -0
  94. data/spec/dummy5db/config/database.yml +26 -0
  95. data/spec/dummy5db/config/environment.rb +5 -0
  96. data/spec/dummy5db/config/environments/development.rb +61 -0
  97. data/spec/dummy5db/config/environments/production.rb +94 -0
  98. data/spec/dummy5db/config/environments/test.rb +46 -0
  99. data/spec/dummy5db/config/initializers/application_controller_renderer.rb +8 -0
  100. data/spec/dummy5db/config/initializers/assets.rb +14 -0
  101. data/spec/dummy5db/config/initializers/backtrace_silencers.rb +7 -0
  102. data/spec/dummy5db/config/initializers/content_security_policy.rb +25 -0
  103. data/spec/dummy5db/config/initializers/cookies_serializer.rb +5 -0
  104. data/spec/dummy5db/config/initializers/filter_parameter_logging.rb +4 -0
  105. data/spec/dummy5db/config/initializers/inflections.rb +16 -0
  106. data/spec/dummy5db/config/initializers/mime_types.rb +4 -0
  107. data/spec/dummy5db/config/initializers/new_framework_defaults_5_2.rb +38 -0
  108. data/spec/dummy5db/config/initializers/secret_token.rb +12 -0
  109. data/spec/dummy5db/config/initializers/session_store.rb +3 -0
  110. data/spec/dummy5db/config/initializers/wrap_parameters.rb +14 -0
  111. data/spec/dummy5db/config/locales/en.yml +33 -0
  112. data/spec/dummy5db/config/routes.rb +4 -0
  113. data/spec/dummy5db/config/secrets.yml +22 -0
  114. data/spec/dummy5db/config/storage.yml +34 -0
  115. data/spec/dummy5db/config/themes +1 -0
  116. data/spec/dummy5db/log/test.log +756 -0
  117. data/spec/dummy5db/public/404.html +26 -0
  118. data/spec/dummy5db/public/422.html +26 -0
  119. data/spec/dummy5db/public/500.html +25 -0
  120. data/spec/dummy5db/public/favicon.ico +0 -0
  121. data/spec/dummy5db/script/rails +6 -0
  122. data/spec/dummy6/config/themes +1 -0
  123. data/spec/dummy6/log/development.log +8 -0
  124. data/spec/dummy6/log/test.log +1555 -0
  125. data/spec/dummy6db/README.rdoc +261 -0
  126. data/spec/dummy6db/Rakefile +7 -0
  127. data/spec/dummy6db/app +1 -0
  128. data/spec/dummy6db/bin/bundle +3 -0
  129. data/spec/dummy6db/bin/rails +4 -0
  130. data/spec/dummy6db/bin/rake +4 -0
  131. data/spec/dummy6db/bin/setup +36 -0
  132. data/spec/dummy6db/bin/update +31 -0
  133. data/spec/dummy6db/bin/yarn +11 -0
  134. data/spec/dummy6db/config.ru +4 -0
  135. data/spec/dummy6db/config/application.rb +20 -0
  136. data/spec/dummy6db/config/boot.rb +3 -0
  137. data/spec/dummy6db/config/cable.yml +10 -0
  138. data/spec/dummy6db/config/database.yml +26 -0
  139. data/spec/dummy6db/config/environment.rb +5 -0
  140. data/spec/dummy6db/config/environments/development.rb +62 -0
  141. data/spec/dummy6db/config/environments/production.rb +112 -0
  142. data/spec/dummy6db/config/environments/test.rb +48 -0
  143. data/spec/dummy6db/config/initializers/application_controller_renderer.rb +8 -0
  144. data/spec/dummy6db/config/initializers/assets.rb +14 -0
  145. data/spec/dummy6db/config/initializers/backtrace_silencers.rb +7 -0
  146. data/spec/dummy6db/config/initializers/content_security_policy.rb +30 -0
  147. data/spec/dummy6db/config/initializers/cookies_serializer.rb +5 -0
  148. data/spec/dummy6db/config/initializers/filter_parameter_logging.rb +4 -0
  149. data/spec/dummy6db/config/initializers/inflections.rb +16 -0
  150. data/spec/dummy6db/config/initializers/mime_types.rb +4 -0
  151. data/spec/dummy6db/config/initializers/new_framework_defaults_5_2.rb +38 -0
  152. data/spec/dummy6db/config/initializers/new_framework_defaults_6_0.rb +45 -0
  153. data/spec/dummy6db/config/initializers/secret_token.rb +12 -0
  154. data/spec/dummy6db/config/initializers/session_store.rb +3 -0
  155. data/spec/dummy6db/config/initializers/wrap_parameters.rb +14 -0
  156. data/spec/dummy6db/config/locales/en.yml +33 -0
  157. data/spec/dummy6db/config/routes.rb +3 -0
  158. data/spec/dummy6db/config/secrets.yml +22 -0
  159. data/spec/dummy6db/config/storage.yml +34 -0
  160. data/spec/dummy6db/config/themes +1 -0
  161. data/spec/dummy6db/log/development.log +8 -0
  162. data/spec/dummy6db/log/test.log +2340 -0
  163. data/spec/dummy6db/public/404.html +26 -0
  164. data/spec/dummy6db/public/422.html +26 -0
  165. data/spec/dummy6db/public/500.html +25 -0
  166. data/spec/dummy6db/public/favicon.ico +0 -0
  167. data/spec/dummy6db/script/rails +6 -0
  168. data/spec/dummy_app_folder/models/theme_store.rb +10 -0
  169. data/spec/dummy_app_folder/views/themes/test2/layouts/application.html.erb +7 -0
  170. data/spec/dummy_app_folder/views/themes/test2/notifier/wellcome_message.html.erb +3 -0
  171. data/spec/dummy_app_folder/views/themes/test2/posts/index.html.erb +1 -0
  172. data/spec/dummy_app_folder/views/themes/testdb/layouts/application.html.erb +7 -0
  173. data/spec/dummy_app_folder/views/themes/testdb/notifier/wellcome_message.html.erb +3 -0
  174. data/spec/dummy_app_folder/views/themes/testdb/posts/index.html.erb +4 -0
  175. data/spec/dummy_app_folder/views/themes/testdb2/layouts/application.html.erb +7 -0
  176. data/spec/dummy_app_folder/views/themes/testdb2/notifier/wellcome_message.html.erb +3 -0
  177. data/spec/dummy_app_folder/views/themes/testdb2/posts/index.html.erb +4 -0
  178. data/spec/features/posts_controller_spec.rb +57 -12
  179. data/spec/generators/new_theme_generator_spec.rb +3 -4
  180. data/spec/mailer/notifier_spec.rb +13 -5
  181. data/spec/spec_helper.rb +1 -0
  182. data/spec/themes_engine_spec.rb +10 -5
  183. data/spec/tmp/config/themes/brand_new_theme.rb +3 -4
  184. metadata +329 -13
  185. data/lib/themes/loader.rb +0 -3
  186. data/spec/dummy3/config/themes/test.rb +0 -8
  187. data/spec/dummy4/config/themes/test.rb +0 -8
  188. data/spec/dummy5/config/themes/test.rb +0 -8
  189. data/spec/dummy6/config/themes/test.rb +0 -8
@@ -0,0 +1 @@
1
+ spec/dummy5db/config/../../configdb/themes
@@ -0,0 +1,756 @@
1
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:34 +0100
2
+ Processing by PostsController#index as HTML
3
+ Rendering themes/test/posts/index.html.erb within layouts/application
4
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
5
+ Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.0ms)
6
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:34 +0100
7
+ Processing by PostsController#index as HTML
8
+ Rendering themes/test/posts/index.html.erb within layouts/application
9
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
10
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
11
+ Rendering themes/test/notifier/wellcome_message.html.erb
12
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
13
+ Notifier#wellcome_message: processed outbound mail in 148.3ms
14
+ Rendering notifier/good_bye_message.html.erb
15
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
16
+ Notifier#good_bye_message: processed outbound mail in 5.5ms
17
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:35 +0100
18
+ Processing by PostsController#index as HTML
19
+ Rendering themes/test/posts/index.html.erb within layouts/application
20
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
21
+ Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.0ms)
22
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:35 +0100
23
+ Processing by PostsController#index as HTML
24
+ Rendering themes/test/posts/index.html.erb within layouts/application
25
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
26
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
27
+ Rendering themes/test/notifier/wellcome_message.html.erb
28
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
29
+ Notifier#wellcome_message: processed outbound mail in 157.8ms
30
+ Rendering notifier/good_bye_message.html.erb
31
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
32
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
33
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:30 +0100
34
+ Processing by PostsController#index as HTML
35
+ Rendering themes/test/posts/index.html.erb within layouts/application
36
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
37
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.0ms)
38
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:30 +0100
39
+ Processing by PostsController#index as HTML
40
+ Rendering themes/test/posts/index.html.erb within layouts/application
41
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
42
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
43
+ Rendering themes/test/notifier/wellcome_message.html.erb
44
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
45
+ Notifier#wellcome_message: processed outbound mail in 155.5ms
46
+ Rendering notifier/good_bye_message.html.erb
47
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
48
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
49
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:04 +0100
50
+ Processing by PostsController#index as HTML
51
+ Rendering themes/test/posts/index.html.erb within layouts/application
52
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
53
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.0ms)
54
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:04 +0100
55
+ Processing by PostsController#index as HTML
56
+ Rendering themes/test/posts/index.html.erb within layouts/application
57
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
58
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
59
+ Rendering themes/test/notifier/wellcome_message.html.erb
60
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
61
+ Notifier#wellcome_message: processed outbound mail in 144.8ms
62
+ Rendering notifier/good_bye_message.html.erb
63
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
64
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
65
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:05 +0100
66
+ Processing by PostsController#index as HTML
67
+ Rendering themes/test/posts/index.html.erb within layouts/application
68
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.4ms)
69
+ Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.0ms)
70
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:05 +0100
71
+ Processing by PostsController#index as HTML
72
+ Rendering themes/test/posts/index.html.erb within layouts/application
73
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
74
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
75
+ Rendering themes/test/notifier/wellcome_message.html.erb
76
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
77
+ Notifier#wellcome_message: processed outbound mail in 145.1ms
78
+ Rendering notifier/good_bye_message.html.erb
79
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
80
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
81
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:12 +0100
82
+ Processing by PostsController#index as HTML
83
+ Rendering themes/test/posts/index.html.erb within layouts/application
84
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
85
+ Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.0ms)
86
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:12 +0100
87
+ Processing by PostsController#index as HTML
88
+ Rendering themes/test/posts/index.html.erb within layouts/application
89
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
90
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
91
+ Rendering themes/test/notifier/wellcome_message.html.erb
92
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
93
+ Notifier#wellcome_message: processed outbound mail in 152.0ms
94
+ Rendering notifier/good_bye_message.html.erb
95
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
96
+ Notifier#good_bye_message: processed outbound mail in 4.1ms
97
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:44 +0100
98
+ Processing by PostsController#index as HTML
99
+ Rendering themes/test/posts/index.html.erb within layouts/application
100
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
101
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.0ms)
102
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:45 +0100
103
+ Processing by PostsController#index as HTML
104
+ Rendering themes/test/posts/index.html.erb within layouts/application
105
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
106
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
107
+ Rendering themes/test/notifier/wellcome_message.html.erb
108
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
109
+ Notifier#wellcome_message: processed outbound mail in 149.2ms
110
+ Rendering notifier/good_bye_message.html.erb
111
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
112
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
113
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:16 +0100
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.8ms)
117
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.0ms)
118
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:16 +0100
119
+ Processing by PostsController#index as HTML
120
+ Rendering themes/test/posts/index.html.erb within layouts/application
121
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
122
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
123
+ Rendering themes/test/notifier/wellcome_message.html.erb
124
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
125
+ Notifier#wellcome_message: processed outbound mail in 151.0ms
126
+ Rendering notifier/good_bye_message.html.erb
127
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
128
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
129
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:57 +0100
130
+ Processing by PostsController#index as HTML
131
+ Rendering themes/test/posts/index.html.erb within layouts/application
132
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
133
+ Completed 200 OK in 16ms (Views: 13.5ms | ActiveRecord: 0.0ms)
134
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:57 +0100
135
+ Processing by PostsController#index as HTML
136
+ Rendering themes/test/posts/index.html.erb within layouts/application
137
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
138
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
139
+ Rendering themes/test/notifier/wellcome_message.html.erb
140
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
141
+ Notifier#wellcome_message: processed outbound mail in 154.1ms
142
+ Rendering notifier/good_bye_message.html.erb
143
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
144
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
145
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:52 +0100
146
+ Processing by PostsController#index as HTML
147
+ Rendering themes/test/posts/index.html.erb within layouts/application
148
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.8ms)
149
+ Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.0ms)
150
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:52 +0100
151
+ Processing by PostsController#index as HTML
152
+ Rendering themes/test/posts/index.html.erb within layouts/application
153
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
154
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
155
+ Rendering themes/test/notifier/wellcome_message.html.erb
156
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
157
+ Notifier#wellcome_message: processed outbound mail in 152.6ms
158
+ Rendering notifier/good_bye_message.html.erb
159
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
160
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
161
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:55:29 +0100
162
+ Processing by PostsController#index as HTML
163
+ Rendering themes/test/posts/index.html.erb within layouts/application
164
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.7ms)
165
+ Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.0ms)
166
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:55:29 +0100
167
+ Processing by PostsController#index as HTML
168
+ Rendering themes/test/posts/index.html.erb within layouts/application
169
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
170
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
171
+ Rendering themes/test/notifier/wellcome_message.html.erb
172
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
173
+ Notifier#wellcome_message: processed outbound mail in 146.4ms
174
+ Rendering notifier/good_bye_message.html.erb
175
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
176
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
177
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:35 +0100
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.8ms)
181
+ Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.0ms)
182
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:35 +0100
183
+ Processing by PostsController#index as HTML
184
+ Rendering themes/test/posts/index.html.erb within layouts/application
185
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
186
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
187
+ Rendering themes/test/notifier/wellcome_message.html.erb
188
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
189
+ Notifier#wellcome_message: processed outbound mail in 153.0ms
190
+ Rendering notifier/good_bye_message.html.erb
191
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
192
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
193
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:46 +0100
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 (0.8ms)
197
+ Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.0ms)
198
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:47 +0100
199
+ Processing by PostsController#index as HTML
200
+ Rendering themes/test/posts/index.html.erb within layouts/application
201
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
202
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
203
+ Rendering themes/test/notifier/wellcome_message.html.erb
204
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
205
+ Notifier#wellcome_message: processed outbound mail in 157.7ms
206
+ Rendering notifier/good_bye_message.html.erb
207
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
208
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
209
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:22 +0100
210
+ Processing by PostsController#index as HTML
211
+ Rendering themes/test/posts/index.html.erb within layouts/application
212
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
213
+ Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.0ms)
214
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:22 +0100
215
+ Processing by PostsController#index as HTML
216
+ Rendering themes/test/posts/index.html.erb within layouts/application
217
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
218
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
219
+ Rendering themes/test/notifier/wellcome_message.html.erb
220
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
221
+ Notifier#wellcome_message: processed outbound mail in 149.3ms
222
+ Rendering notifier/good_bye_message.html.erb
223
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
224
+ Notifier#good_bye_message: processed outbound mail in 4.6ms
225
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:22 +0100
226
+ Processing by PostsController#index as HTML
227
+ Rendering themes/test/posts/index.html.erb within layouts/application
228
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
229
+ Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.0ms)
230
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:22 +0100
231
+ Processing by PostsController#index as HTML
232
+ Rendering themes/test/posts/index.html.erb within layouts/application
233
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
234
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
235
+ Rendering themes/test/notifier/wellcome_message.html.erb
236
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
237
+ Notifier#wellcome_message: processed outbound mail in 148.6ms
238
+ Rendering notifier/good_bye_message.html.erb
239
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
240
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
241
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:47 +0100
242
+ Processing by PostsController#index as HTML
243
+ Rendering themes/test/posts/index.html.erb within layouts/application
244
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
245
+ Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.0ms)
246
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:47 +0100
247
+ Processing by PostsController#index as HTML
248
+ Rendering themes/test/posts/index.html.erb within layouts/application
249
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
250
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
251
+ Rendering themes/test/notifier/wellcome_message.html.erb
252
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
253
+ Notifier#wellcome_message: processed outbound mail in 218.5ms
254
+ Rendering notifier/good_bye_message.html.erb
255
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
256
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
257
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:15 +0100
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 (0.9ms)
261
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.0ms)
262
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:15 +0100
263
+ Processing by PostsController#index as HTML
264
+ Rendering themes/test/posts/index.html.erb within layouts/application
265
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
266
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
267
+ Rendering themes/test/notifier/wellcome_message.html.erb
268
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
269
+ Notifier#wellcome_message: processed outbound mail in 173.2ms
270
+ Rendering notifier/good_bye_message.html.erb
271
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
272
+ Notifier#good_bye_message: processed outbound mail in 4.7ms
273
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:19 +0100
274
+ Processing by PostsController#index as HTML
275
+ Rendering themes/test/posts/index.html.erb within layouts/application
276
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.8ms)
277
+ Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.0ms)
278
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:19 +0100
279
+ Processing by PostsController#index as HTML
280
+ Rendering themes/test/posts/index.html.erb within layouts/application
281
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
282
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
283
+ Rendering themes/test/notifier/wellcome_message.html.erb
284
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
285
+ Notifier#wellcome_message: processed outbound mail in 151.4ms
286
+ Rendering notifier/good_bye_message.html.erb
287
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
288
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
289
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:23 +0100
290
+ Processing by PostsController#index as HTML
291
+ Rendering themes/test/posts/index.html.erb within layouts/application
292
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
293
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.0ms)
294
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:23 +0100
295
+ Processing by PostsController#index as HTML
296
+ Rendering themes/test/posts/index.html.erb within layouts/application
297
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
298
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
299
+ Rendering themes/test/notifier/wellcome_message.html.erb
300
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
301
+ Notifier#wellcome_message: processed outbound mail in 167.9ms
302
+ Rendering notifier/good_bye_message.html.erb
303
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
304
+ Notifier#good_bye_message: processed outbound mail in 4.5ms
305
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:32 +0100
306
+ Processing by PostsController#index as HTML
307
+ Rendering themes/test/posts/index.html.erb within layouts/application
308
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
309
+ Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.0ms)
310
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:32 +0100
311
+ Processing by PostsController#index as HTML
312
+ Rendering themes/test/posts/index.html.erb within layouts/application
313
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
314
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
315
+ Rendering themes/test/notifier/wellcome_message.html.erb
316
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
317
+ Notifier#wellcome_message: processed outbound mail in 152.4ms
318
+ Rendering notifier/good_bye_message.html.erb
319
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
320
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
321
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:40 +0100
322
+ Processing by PostsController#index as HTML
323
+ Rendering themes/test/posts/index.html.erb within layouts/application
324
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
325
+ Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.0ms)
326
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:40 +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 (0.0ms)
330
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
331
+ Rendering themes/test/notifier/wellcome_message.html.erb
332
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
333
+ Notifier#wellcome_message: processed outbound mail in 280.6ms
334
+ Rendering notifier/good_bye_message.html.erb
335
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
336
+ Notifier#good_bye_message: processed outbound mail in 4.6ms
337
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:08 +0100
338
+ Processing by PostsController#index as HTML
339
+ Rendering themes/test/posts/index.html.erb within layouts/application
340
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
341
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.0ms)
342
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:08 +0100
343
+ Processing by PostsController#index as HTML
344
+ Rendering themes/test/posts/index.html.erb within layouts/application
345
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
346
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
347
+ Rendering themes/test/notifier/wellcome_message.html.erb
348
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
349
+ Notifier#wellcome_message: processed outbound mail in 151.1ms
350
+ Rendering notifier/good_bye_message.html.erb
351
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
352
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
353
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:13 +0100
354
+ Processing by PostsController#index as HTML
355
+ Rendering themes/test/posts/index.html.erb within layouts/application
356
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
357
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.0ms)
358
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:13 +0100
359
+ Processing by PostsController#index as HTML
360
+ Rendering themes/test/posts/index.html.erb within layouts/application
361
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
362
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
363
+ Rendering themes/test/notifier/wellcome_message.html.erb
364
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
365
+ Notifier#wellcome_message: processed outbound mail in 254.5ms
366
+ Rendering notifier/good_bye_message.html.erb
367
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
368
+ Notifier#good_bye_message: processed outbound mail in 4.5ms
369
+ themes.path_setup
370
+ themes.middleware
371
+ themes.setup_theme
372
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
373
+ configure test theme
374
+ Processing by PostsController#index as HTML
375
+ Rendering themes/test/posts/index.html.erb within layouts/application
376
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
377
+ Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.0ms)
378
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
379
+ configure test theme
380
+ Processing by PostsController#index as HTML
381
+ Rendering themes/test/posts/index.html.erb within layouts/application
382
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
383
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.0ms)
384
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
385
+ Processing by PostsController#index as HTML
386
+ Rendering themes/test2/posts/index.html.erb within layouts/application
387
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
388
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
389
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
390
+ Processing by PostsController#index as HTML
391
+ Rendering themes/test2/posts/index.html.erb within layouts/application
392
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
393
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
394
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
395
+ Processing by PostsController#index as HTML
396
+ Rendering posts/index.html.erb within layouts/application
397
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
398
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:19:59 +0100
400
+ Processing by PostsController#index as HTML
401
+ Rendering posts/index.html.erb within layouts/application
402
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
403
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
404
+ configure test theme
405
+ Rendering themes/test/notifier/wellcome_message.html.erb
406
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
407
+ Notifier#wellcome_message: processed outbound mail in 154.7ms
408
+ Rendering notifier/good_bye_message.html.erb
409
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
410
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
411
+ configure test theme
412
+ configure test theme
413
+ configure test theme
414
+ configure test theme
415
+ configure test theme
416
+ configure test theme
417
+ themes.path_setup
418
+ themes.middleware
419
+ themes.setup_theme
420
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
421
+ configure test theme
422
+ Processing by PostsController#index as HTML
423
+ Rendering themes/test/posts/index.html.erb within layouts/application
424
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
425
+ Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.0ms)
426
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
427
+ configure test theme
428
+ Processing by PostsController#index as HTML
429
+ Rendering themes/test/posts/index.html.erb within layouts/application
430
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.4ms)
431
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
432
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
433
+ Processing by PostsController#index as HTML
434
+ Rendering themes/test2/posts/index.html.erb within layouts/application
435
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
436
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
437
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
438
+ Processing by PostsController#index as HTML
439
+ Rendering themes/test2/posts/index.html.erb within layouts/application
440
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.4ms)
441
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
442
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
443
+ Processing by PostsController#index as HTML
444
+ Rendering posts/index.html.erb within layouts/application
445
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
446
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
447
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:07 +0100
448
+ Processing by PostsController#index as HTML
449
+ Rendering posts/index.html.erb within layouts/application
450
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
451
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
452
+ configure test theme
453
+ Rendering themes/test/notifier/wellcome_message.html.erb
454
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
455
+ Notifier#wellcome_message: processed outbound mail in 255.9ms
456
+ Rendering notifier/good_bye_message.html.erb
457
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
458
+ Notifier#good_bye_message: processed outbound mail in 4.6ms
459
+ configure test theme
460
+ configure test theme
461
+ configure test theme
462
+ configure test theme
463
+ configure test theme
464
+ configure test theme
465
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:58:44 +0100
466
+ Processing by PostsController#index as HTML
467
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
468
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.8ms)
469
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.0ms)
470
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:58:44 +0100
471
+ Processing by PostsController#index as HTML
472
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
473
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
474
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
475
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:58:44 +0100
476
+ Processing by PostsController#index as HTML
477
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
478
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
479
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
480
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:58:44 +0100
481
+ Processing by PostsController#index as HTML
482
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
483
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
484
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.0ms)
485
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:58:44 +0100
486
+ Processing by PostsController#index as HTML
487
+ Rendering posts/index.html.erb within layouts/application
488
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
489
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
490
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 10:58:44 +0100
491
+ Processing by PostsController#index as HTML
492
+ Rendering posts/index.html.erb within layouts/application
493
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
494
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
495
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
496
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.2ms)
497
+ Notifier#wellcome_message: processed outbound mail in 162.3ms
498
+ Rendering notifier/good_bye_message.html.erb
499
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
500
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
501
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:55 +0100
502
+ Processing by PostsController#index as HTML
503
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
504
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.0ms)
505
+ Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.0ms)
506
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:55 +0100
507
+ Processing by PostsController#index as HTML
508
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
509
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
510
+ Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
511
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:55 +0100
512
+ Processing by PostsController#index as HTML
513
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
514
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
515
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
516
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:55 +0100
517
+ Processing by PostsController#index as HTML
518
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
519
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
520
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
521
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:55 +0100
522
+ Processing by PostsController#index as HTML
523
+ Rendering posts/index.html.erb within layouts/application
524
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
525
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
526
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:13:55 +0100
527
+ Processing by PostsController#index as HTML
528
+ Rendering posts/index.html.erb within layouts/application
529
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
530
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
531
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
532
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.3ms)
533
+ Notifier#wellcome_message: processed outbound mail in 155.6ms
534
+ Rendering notifier/good_bye_message.html.erb
535
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
536
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
537
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:03 +0100
538
+ Processing by PostsController#index as HTML
539
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
540
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (2.1ms)
541
+ Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.0ms)
542
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:03 +0100
543
+ Processing by PostsController#index as HTML
544
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
545
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
546
+ Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
547
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:03 +0100
548
+ Processing by PostsController#index as HTML
549
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
550
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
551
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
552
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:03 +0100
553
+ Processing by PostsController#index as HTML
554
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
555
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
556
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.0ms)
557
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:03 +0100
558
+ Processing by PostsController#index as HTML
559
+ Rendering posts/index.html.erb within layouts/application
560
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
561
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.0ms)
562
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:03 +0100
563
+ Processing by PostsController#index as HTML
564
+ Rendering posts/index.html.erb within layouts/application
565
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
566
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
567
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
568
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.3ms)
569
+ Notifier#wellcome_message: processed outbound mail in 257.2ms
570
+ Rendering notifier/good_bye_message.html.erb
571
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
572
+ Notifier#good_bye_message: processed outbound mail in 4.2ms
573
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:27 +0100
574
+ Processing by PostsController#index as HTML
575
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
576
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.8ms)
577
+ Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.0ms)
578
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:27 +0100
579
+ Processing by PostsController#index as HTML
580
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
581
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.2ms)
582
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.0ms)
583
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:27 +0100
584
+ Processing by PostsController#index as HTML
585
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
586
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
587
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.0ms)
588
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:27 +0100
589
+ Processing by PostsController#index as HTML
590
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
591
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
592
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
593
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:27 +0100
594
+ Processing by PostsController#index as HTML
595
+ Rendering posts/index.html.erb within layouts/application
596
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
597
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.0ms)
598
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:27 +0100
599
+ Processing by PostsController#index as HTML
600
+ Rendering posts/index.html.erb within layouts/application
601
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
602
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
603
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
604
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.5ms)
605
+ Notifier#wellcome_message: processed outbound mail in 156.7ms
606
+ Rendering notifier/good_bye_message.html.erb
607
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
608
+ Notifier#good_bye_message: processed outbound mail in 4.5ms
609
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:32 +0100
610
+ Processing by PostsController#index as HTML
611
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
612
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.8ms)
613
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.0ms)
614
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:32 +0100
615
+ Processing by PostsController#index as HTML
616
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
617
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
618
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.0ms)
619
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:32 +0100
620
+ Processing by PostsController#index as HTML
621
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
622
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
623
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
624
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:32 +0100
625
+ Processing by PostsController#index as HTML
626
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
627
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
628
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
629
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:32 +0100
630
+ Processing by PostsController#index as HTML
631
+ Rendering posts/index.html.erb within layouts/application
632
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
633
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
634
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:32 +0100
635
+ Processing by PostsController#index as HTML
636
+ Rendering posts/index.html.erb within layouts/application
637
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
638
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
639
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
640
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
641
+ Notifier#wellcome_message: processed outbound mail in 232.2ms
642
+ Rendering notifier/good_bye_message.html.erb
643
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
644
+ Notifier#good_bye_message: processed outbound mail in 4.6ms
645
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
646
+ Processing by PostsController#index as HTML
647
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
648
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.0ms)
649
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.0ms)
650
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
651
+ Processing by PostsController#index as HTML
652
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
653
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
654
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
655
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
656
+ Processing by PostsController#index as HTML
657
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
658
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
659
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
660
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
661
+ Processing by PostsController#index as HTML
662
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
663
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
664
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
665
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
666
+ Processing by PostsController#index as HTML
667
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
668
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
669
+ Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.0ms)
670
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
671
+ Processing by PostsController#index as HTML
672
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
673
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.5ms)
674
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
675
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
676
+ Processing by PostsController#index as HTML
677
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
678
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.5ms)
679
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
680
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
681
+ Processing by PostsController#index as HTML
682
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
683
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.6ms)
684
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
685
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
686
+ Processing by PostsController#index as HTML
687
+ Rendering posts/index.html.erb within layouts/application
688
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
689
+ Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
690
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:56 +0100
691
+ Processing by PostsController#index as HTML
692
+ Rendering posts/index.html.erb within layouts/application
693
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
694
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
695
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
696
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.5ms)
697
+ Notifier#wellcome_message: processed outbound mail in 234.8ms
698
+ Rendering notifier/good_bye_message.html.erb
699
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
700
+ Notifier#good_bye_message: processed outbound mail in 4.8ms
701
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
702
+ Processing by PostsController#index as HTML
703
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
704
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.9ms)
705
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.0ms)
706
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
707
+ Processing by PostsController#index as HTML
708
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
709
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.5ms)
710
+ Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.0ms)
711
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
712
+ Processing by PostsController#index as HTML
713
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
714
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
715
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.0ms)
716
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
717
+ Processing by PostsController#index as HTML
718
+ Rendering themes/testdb/posts/index.html.erb within layouts/application
719
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.5ms)
720
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
721
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
722
+ Processing by PostsController#index as HTML
723
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
724
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
725
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.0ms)
726
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
727
+ Processing by PostsController#index as HTML
728
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
729
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
730
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
731
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
732
+ Processing by PostsController#index as HTML
733
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
734
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
735
+ Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.0ms)
736
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
737
+ Processing by PostsController#index as HTML
738
+ Rendering themes/testdb2/posts/index.html.erb within layouts/application
739
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
740
+ Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.0ms)
741
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
742
+ Processing by PostsController#index as HTML
743
+ Rendering posts/index.html.erb within layouts/application
744
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
745
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
746
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:01 +0100
747
+ Processing by PostsController#index as HTML
748
+ Rendering posts/index.html.erb within layouts/application
749
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
750
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
751
+ Rendering themes/testdb/notifier/wellcome_message.html.erb
752
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.6ms)
753
+ Notifier#wellcome_message: processed outbound mail in 264.5ms
754
+ Rendering notifier/good_bye_message.html.erb
755
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
756
+ Notifier#good_bye_message: processed outbound mail in 4.6ms