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,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 @@
1
+ spec/dummy4db/config/../../configdb/themes
@@ -0,0 +1,550 @@
1
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:58 +0100
2
+ Processing by PostsController#index as HTML
3
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.8ms)
4
+ Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms)
5
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:58 +0100
6
+ Processing by PostsController#index as HTML
7
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
8
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
9
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
10
+
11
+ Notifier#wellcome_message: processed outbound mail in 150.9ms
12
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
13
+
14
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
15
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:45:28 +0100
16
+ Processing by PostsController#index as HTML
17
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
18
+ Completed 200 OK in 15ms (Views: 14.4ms)
19
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:45:28 +0100
20
+ Processing by PostsController#index as HTML
21
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
22
+ Completed 200 OK in 0ms (Views: 0.3ms)
23
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
24
+
25
+ Notifier#wellcome_message: processed outbound mail in 145.6ms
26
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
27
+
28
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
29
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:47:40 +0100
30
+ Processing by PostsController#index as HTML
31
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
32
+ Completed 200 OK in 14ms (Views: 13.6ms)
33
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:47:40 +0100
34
+ Processing by PostsController#index as HTML
35
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
36
+ Completed 200 OK in 0ms (Views: 0.3ms)
37
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
38
+
39
+ Notifier#wellcome_message: processed outbound mail in 150.2ms
40
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
41
+
42
+ Notifier#good_bye_message: processed outbound mail in 3.5ms
43
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:49:38 +0100
44
+ Processing by PostsController#index as HTML
45
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
46
+ Completed 200 OK in 13ms (Views: 13.1ms)
47
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:49:38 +0100
48
+ Processing by PostsController#index as HTML
49
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
50
+ Completed 200 OK in 0ms (Views: 0.3ms)
51
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
52
+
53
+ Notifier#wellcome_message: processed outbound mail in 146.6ms
54
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
55
+
56
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
57
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:39 +0100
58
+ Processing by PostsController#index as HTML
59
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.3ms)
60
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
61
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:39 +0100
62
+ Processing by PostsController#index as HTML
63
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
64
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
65
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
66
+
67
+ Notifier#wellcome_message: processed outbound mail in 151.6ms
68
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
69
+
70
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
71
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:50 +0100
72
+ Processing by PostsController#index as HTML
73
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
74
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
75
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:50 +0100
76
+ Processing by PostsController#index as HTML
77
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
78
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
79
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
80
+
81
+ Notifier#wellcome_message: processed outbound mail in 149.6ms
82
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
83
+
84
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
85
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:26 +0100
86
+ Processing by PostsController#index as HTML
87
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
88
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
89
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:26 +0100
90
+ Processing by PostsController#index as HTML
91
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
92
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
93
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
94
+
95
+ Notifier#wellcome_message: processed outbound mail in 151.3ms
96
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
97
+
98
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
99
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:27 +0100
100
+ Processing by PostsController#index as HTML
101
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
102
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
103
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:27 +0100
104
+ Processing by PostsController#index as HTML
105
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
106
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
107
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
108
+
109
+ Notifier#wellcome_message: processed outbound mail in 146.2ms
110
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
111
+
112
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
113
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:50 +0100
114
+ Processing by PostsController#index as HTML
115
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
116
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
117
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:50 +0100
118
+ Processing by PostsController#index as HTML
119
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
120
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
121
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
122
+
123
+ Notifier#wellcome_message: processed outbound mail in 195.6ms
124
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
125
+
126
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
127
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:19 +0100
128
+ Processing by PostsController#index as HTML
129
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
130
+ Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
131
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:19 +0100
132
+ Processing by PostsController#index as HTML
133
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
134
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
135
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
136
+
137
+ Notifier#wellcome_message: processed outbound mail in 203.5ms
138
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
139
+
140
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
141
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:28 +0100
142
+ Processing by PostsController#index as HTML
143
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.9ms)
144
+ Completed 200 OK in 26ms (Views: 26.2ms | ActiveRecord: 0.0ms)
145
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:28 +0100
146
+ Processing by PostsController#index as HTML
147
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
148
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
149
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
150
+
151
+ Notifier#wellcome_message: processed outbound mail in 152.0ms
152
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
153
+
154
+ Notifier#good_bye_message: processed outbound mail in 3.9ms
155
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:32 +0100
156
+ Processing by PostsController#index as HTML
157
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
158
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
159
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:32 +0100
160
+ Processing by PostsController#index as HTML
161
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
162
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
163
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
164
+
165
+ Notifier#wellcome_message: processed outbound mail in 212.8ms
166
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
167
+
168
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
169
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:45 +0100
170
+ Processing by PostsController#index as HTML
171
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
172
+ Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
173
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:45 +0100
174
+ Processing by PostsController#index as HTML
175
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
176
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
177
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
178
+
179
+ Notifier#wellcome_message: processed outbound mail in 153.0ms
180
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
181
+
182
+ Notifier#good_bye_message: processed outbound mail in 3.5ms
183
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:50 +0100
184
+ Processing by PostsController#index as HTML
185
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.5ms)
186
+ Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
187
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:50 +0100
188
+ Processing by PostsController#index as HTML
189
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
190
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
191
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
192
+
193
+ Notifier#wellcome_message: processed outbound mail in 199.2ms
194
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
195
+
196
+ Notifier#good_bye_message: processed outbound mail in 3.9ms
197
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:18 +0100
198
+ Processing by PostsController#index as HTML
199
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
200
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
201
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:18 +0100
202
+ Processing by PostsController#index as HTML
203
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
204
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
205
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
206
+
207
+ Notifier#wellcome_message: processed outbound mail in 160.1ms
208
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
209
+
210
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
211
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:22 +0100
212
+ Processing by PostsController#index as HTML
213
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
214
+ Completed 200 OK in 12ms (Views: 12.3ms | ActiveRecord: 0.0ms)
215
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:22 +0100
216
+ Processing by PostsController#index as HTML
217
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
218
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
219
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
220
+
221
+ Notifier#wellcome_message: processed outbound mail in 201.1ms
222
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
223
+
224
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
225
+ themes.path_setup
226
+ themes.middleware
227
+ themes.setup_theme
228
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
229
+ configure test theme
230
+ Processing by PostsController#index as HTML
231
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.4ms)
232
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
233
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
234
+ configure test theme
235
+ Processing by PostsController#index as HTML
236
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
237
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
238
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
239
+ Processing by PostsController#index as HTML
240
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.2ms)
241
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
242
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
243
+ Processing by PostsController#index as HTML
244
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
245
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
246
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:12 +0100
247
+ Processing by PostsController#index as HTML
248
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
249
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
250
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:13 +0100
251
+ Processing by PostsController#index as HTML
252
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
253
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
254
+ configure test theme
255
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
256
+
257
+ Notifier#wellcome_message: processed outbound mail in 161.4ms
258
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
259
+
260
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
261
+ configure test theme
262
+ configure test theme
263
+ configure test theme
264
+ configure test theme
265
+ configure test theme
266
+ configure test theme
267
+ themes.path_setup
268
+ themes.middleware
269
+ themes.setup_theme
270
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
271
+ configure test theme
272
+ Processing by PostsController#index as HTML
273
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.3ms)
274
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
275
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
276
+ configure test theme
277
+ Processing by PostsController#index as HTML
278
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
279
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
280
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
281
+ Processing by PostsController#index as HTML
282
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
283
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
284
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
285
+ Processing by PostsController#index as HTML
286
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
287
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
288
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
289
+ Processing by PostsController#index as HTML
290
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
291
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
292
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:17 +0100
293
+ Processing by PostsController#index as HTML
294
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
295
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
296
+ configure test theme
297
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
298
+
299
+ Notifier#wellcome_message: processed outbound mail in 211.7ms
300
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
301
+
302
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
303
+ configure test theme
304
+ configure test theme
305
+ configure test theme
306
+ configure test theme
307
+ configure test theme
308
+ configure test theme
309
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:10 +0100
310
+ Processing by PostsController#index as HTML
311
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (2.5ms)
312
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
313
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:10 +0100
314
+ Processing by PostsController#index as HTML
315
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
316
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
317
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:10 +0100
318
+ Processing by PostsController#index as HTML
319
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
320
+ Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
321
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:10 +0100
322
+ Processing by PostsController#index as HTML
323
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
324
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
325
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:10 +0100
326
+ Processing by PostsController#index as HTML
327
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
328
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
329
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:03:10 +0100
330
+ Processing by PostsController#index as HTML
331
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
332
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
333
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
334
+
335
+ Notifier#wellcome_message: processed outbound mail in 154.6ms
336
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
337
+
338
+ Notifier#good_bye_message: processed outbound mail in 3.5ms
339
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:16 +0100
340
+ Processing by PostsController#index as HTML
341
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.2ms)
342
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
343
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:16 +0100
344
+ Processing by PostsController#index as HTML
345
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
346
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
347
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:16 +0100
348
+ Processing by PostsController#index as HTML
349
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
350
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
351
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:16 +0100
352
+ Processing by PostsController#index as HTML
353
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
354
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
355
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:16 +0100
356
+ Processing by PostsController#index as HTML
357
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
358
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
359
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:16 +0100
360
+ Processing by PostsController#index as HTML
361
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
362
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
363
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
364
+
365
+ Notifier#wellcome_message: processed outbound mail in 160.9ms
366
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
367
+
368
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
369
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:21 +0100
370
+ Processing by PostsController#index as HTML
371
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (2.2ms)
372
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
373
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:21 +0100
374
+ Processing by PostsController#index as HTML
375
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.2ms)
376
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
377
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:21 +0100
378
+ Processing by PostsController#index as HTML
379
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
380
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
381
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:21 +0100
382
+ Processing by PostsController#index as HTML
383
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
384
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
385
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:21 +0100
386
+ Processing by PostsController#index as HTML
387
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
388
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
389
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:21 +0100
390
+ Processing by PostsController#index as HTML
391
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
392
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
393
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
394
+
395
+ Notifier#wellcome_message: processed outbound mail in 217.5ms
396
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
397
+
398
+ Notifier#good_bye_message: processed outbound mail in 3.9ms
399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:44 +0100
400
+ Processing by PostsController#index as HTML
401
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.1ms)
402
+ Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
403
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:44 +0100
404
+ Processing by PostsController#index as HTML
405
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
406
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
407
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:45 +0100
408
+ Processing by PostsController#index as HTML
409
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
410
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
411
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:45 +0100
412
+ Processing by PostsController#index as HTML
413
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
414
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
415
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:45 +0100
416
+ Processing by PostsController#index as HTML
417
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
418
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
419
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:45 +0100
420
+ Processing by PostsController#index as HTML
421
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
422
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
423
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.3ms)
424
+
425
+ Notifier#wellcome_message: processed outbound mail in 154.0ms
426
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
427
+
428
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
429
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:48 +0100
430
+ Processing by PostsController#index as HTML
431
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.9ms)
432
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
433
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:48 +0100
434
+ Processing by PostsController#index as HTML
435
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.2ms)
436
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
437
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:48 +0100
438
+ Processing by PostsController#index as HTML
439
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
440
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
441
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:48 +0100
442
+ Processing by PostsController#index as HTML
443
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
444
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
445
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:48 +0100
446
+ Processing by PostsController#index as HTML
447
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
448
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
449
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:21:48 +0100
450
+ Processing by PostsController#index as HTML
451
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
452
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
453
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.3ms)
454
+
455
+ Notifier#wellcome_message: processed outbound mail in 204.1ms
456
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
457
+
458
+ Notifier#good_bye_message: processed outbound mail in 3.7ms
459
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
460
+ Processing by PostsController#index as HTML
461
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.2ms)
462
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
463
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
464
+ Processing by PostsController#index as HTML
465
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
466
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
467
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
468
+ Processing by PostsController#index as HTML
469
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
470
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
471
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
472
+ Processing by PostsController#index as HTML
473
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
474
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
475
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
476
+ Processing by PostsController#index as HTML
477
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
478
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
479
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
480
+ Processing by PostsController#index as HTML
481
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
482
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
483
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
484
+ Processing by PostsController#index as HTML
485
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
486
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
487
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
488
+ Processing by PostsController#index as HTML
489
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
490
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
491
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
492
+ Processing by PostsController#index as HTML
493
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
494
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
495
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:14 +0100
496
+ Processing by PostsController#index as HTML
497
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
498
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
499
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
500
+
501
+ Notifier#wellcome_message: processed outbound mail in 158.8ms
502
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
503
+
504
+ Notifier#good_bye_message: processed outbound mail in 4.0ms
505
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
506
+ Processing by PostsController#index as HTML
507
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.1ms)
508
+ Completed 200 OK in 13ms (Views: 13.2ms | ActiveRecord: 0.0ms)
509
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
510
+ Processing by PostsController#index as HTML
511
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
512
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
513
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
514
+ Processing by PostsController#index as HTML
515
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.7ms)
516
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
517
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
518
+ Processing by PostsController#index as HTML
519
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
520
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
521
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
522
+ Processing by PostsController#index as HTML
523
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
524
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
525
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
526
+ Processing by PostsController#index as HTML
527
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
528
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
529
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
530
+ Processing by PostsController#index as HTML
531
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
532
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
533
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
534
+ Processing by PostsController#index as HTML
535
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
536
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
537
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
538
+ Processing by PostsController#index as HTML
539
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
540
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
541
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:18 +0100
542
+ Processing by PostsController#index as HTML
543
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
544
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
545
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.3ms)
546
+
547
+ Notifier#wellcome_message: processed outbound mail in 209.2ms
548
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
549
+
550
+ Notifier#good_bye_message: processed outbound mail in 3.9ms