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,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '55d8e411e4a58ee4abf227cf7038b0fc110301671137cca76aabd1c9fed8b1dbeeb7805db43273a2f5c1ccdf837bdbe9114e7b0f2ef2c8fce450468e892913e6'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ resources :posts
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
58
+ end
@@ -0,0 +1 @@
1
+ spec/dummy3db/config/../../configdb/themes
@@ -0,0 +1,764 @@
1
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:14 +0100
2
+ Processing by PostsController#index as HTML
3
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.5ms)
4
+ Completed 200 OK in 16.6ms (Views: 16.4ms)
5
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:14 +0100
6
+ Processing by PostsController#index as HTML
7
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
8
+ Completed 200 OK in 0.4ms (Views: 0.3ms)
9
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
10
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
11
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:21 +0100
12
+ Processing by PostsController#index as HTML
13
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
14
+ Completed 200 OK in 9.3ms (Views: 9.1ms)
15
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:21 +0100
16
+ Processing by PostsController#index as HTML
17
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
18
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
19
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
20
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
21
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:51 +0100
22
+ Processing by PostsController#index as HTML
23
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
24
+ Completed 200 OK in 9.3ms (Views: 9.1ms)
25
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:51 +0100
26
+ Processing by PostsController#index as HTML
27
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
28
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
29
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
30
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
31
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:21:33 +0100
32
+ Processing by PostsController#index as HTML
33
+ Rendered themes/test/posts/index.html.erb within layouts/application (4.7ms)
34
+ Completed 200 OK in 13.3ms (Views: 13.1ms)
35
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:21:33 +0100
36
+ Processing by PostsController#index as HTML
37
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
38
+ Completed 200 OK in 0.4ms (Views: 0.3ms)
39
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
40
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
41
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:24:10 +0100
42
+ Processing by PostsController#index as HTML
43
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
44
+ Completed 200 OK in 9.7ms (Views: 9.4ms)
45
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:24:10 +0100
46
+ Processing by PostsController#index as HTML
47
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
48
+ Completed 200 OK in 0.4ms (Views: 0.4ms)
49
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
50
+ Rendered notifier/good_bye_message.html.erb (0.6ms)
51
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:22 +0100
52
+ Processing by PostsController#index as HTML
53
+ Rendered themes/test/posts/index.html.erb within layouts/application (4.6ms)
54
+ Completed 200 OK in 13.1ms (Views: 12.8ms)
55
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:22 +0100
56
+ Processing by PostsController#index as HTML
57
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
58
+ Completed 200 OK in 0.4ms (Views: 0.4ms)
59
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
60
+ Rendered notifier/good_bye_message.html.erb (0.7ms)
61
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:33:06 +0100
62
+ Processing by PostsController#index as HTML
63
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.5ms)
64
+ Completed 200 OK in 18.1ms (Views: 17.8ms)
65
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:33:06 +0100
66
+ Processing by PostsController#index as HTML
67
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
68
+ Completed 200 OK in 0.5ms (Views: 0.4ms)
69
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
70
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
71
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:42:02 +0100
72
+ Processing by PostsController#index as HTML
73
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
74
+ Completed 200 OK in 16.6ms (Views: 16.4ms)
75
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:42:02 +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 0.3ms (Views: 0.3ms)
79
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
80
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
81
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:45:32 +0100
82
+ Processing by PostsController#index as HTML
83
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.4ms)
84
+ Completed 200 OK in 10.3ms (Views: 10.1ms)
85
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:45:32 +0100
86
+ Processing by PostsController#index as HTML
87
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
88
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
89
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
90
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
91
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:47:43 +0100
92
+ Processing by PostsController#index as HTML
93
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
94
+ Completed 200 OK in 9.3ms (Views: 9.1ms)
95
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:47:43 +0100
96
+ Processing by PostsController#index as HTML
97
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
98
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
99
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
100
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
101
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:49:41 +0100
102
+ Processing by PostsController#index as HTML
103
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.3ms)
104
+ Completed 200 OK in 9.9ms (Views: 9.6ms)
105
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:49:41 +0100
106
+ Processing by PostsController#index as HTML
107
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
108
+ Completed 200 OK in 0.3ms (Views: 0.3ms)
109
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
110
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
111
+ Connecting to database specified by database.yml
112
+ Connecting to database specified by database.yml
113
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:54 +0100
114
+ Processing by PostsController#index as HTML
115
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
116
+ Completed 200 OK in 9.2ms (Views: 8.9ms | ActiveRecord: 0.0ms)
117
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:54 +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 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
121
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
122
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
123
+ Connecting to database specified by database.yml
124
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:29 +0100
125
+ Processing by PostsController#index as HTML
126
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
127
+ Completed 200 OK in 9.3ms (Views: 9.1ms | ActiveRecord: 0.0ms)
128
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:29 +0100
129
+ Processing by PostsController#index as HTML
130
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
131
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
132
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
133
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
134
+ Connecting to database specified by database.yml
135
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:32 +0100
136
+ Processing by PostsController#index as HTML
137
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
138
+ Completed 200 OK in 17.8ms (Views: 17.5ms | ActiveRecord: 0.0ms)
139
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:32 +0100
140
+ Processing by PostsController#index as HTML
141
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
142
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
143
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
144
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
145
+ Connecting to database specified by database.yml
146
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:32:39 +0100
147
+ Processing by PostsController#index as HTML
148
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.7ms)
149
+ Completed 200 OK in 12.8ms (Views: 12.3ms | ActiveRecord: 0.0ms)
150
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:32:39 +0100
151
+ Processing by PostsController#index as HTML
152
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
153
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
154
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
155
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
156
+ Connecting to database specified by database.yml
157
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:39:36 +0100
158
+ Processing by PostsController#index as HTML
159
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
160
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
161
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:39:36 +0100
162
+ Processing by PostsController#index as HTML
163
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
164
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
165
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
166
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
167
+ Connecting to database specified by database.yml
168
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:54 +0100
169
+ Processing by PostsController#index as HTML
170
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
171
+ Completed 200 OK in 8.3ms (Views: 8.0ms | ActiveRecord: 0.0ms)
172
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:54 +0100
173
+ Processing by PostsController#index as HTML
174
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
175
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
176
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
177
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
178
+ Connecting to database specified by database.yml
179
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:23 +0100
180
+ Processing by PostsController#index as HTML
181
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
182
+ Completed 200 OK in 8.6ms (Views: 8.3ms | ActiveRecord: 0.0ms)
183
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:23 +0100
184
+ Processing by PostsController#index as HTML
185
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
186
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
187
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
188
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
189
+ Connecting to database specified by database.yml
190
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:37 +0100
191
+ Processing by PostsController#index as HTML
192
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.3ms)
193
+ Completed 200 OK in 18.9ms (Views: 18.4ms | ActiveRecord: 0.0ms)
194
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:37 +0100
195
+ Processing by PostsController#index as HTML
196
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
197
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
198
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
199
+ Rendered notifier/good_bye_message.html.erb (0.7ms)
200
+ Connecting to database specified by database.yml
201
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:40 +0100
202
+ Processing by PostsController#index as HTML
203
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
204
+ Completed 200 OK in 8.4ms (Views: 8.2ms | ActiveRecord: 0.0ms)
205
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:40 +0100
206
+ Processing by PostsController#index as HTML
207
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
208
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
209
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
210
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
211
+ Connecting to database specified by database.yml
212
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:55 +0100
213
+ Processing by PostsController#index as HTML
214
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.6ms)
215
+ Completed 200 OK in 16.8ms (Views: 16.6ms | ActiveRecord: 0.0ms)
216
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:55 +0100
217
+ Processing by PostsController#index as HTML
218
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
219
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
220
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
221
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
222
+ Connecting to database specified by database.yml
223
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:33:00 +0100
224
+ Processing by PostsController#index as HTML
225
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
226
+ Completed 200 OK in 15.4ms (Views: 15.1ms | ActiveRecord: 0.0ms)
227
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:33:00 +0100
228
+ Processing by PostsController#index as HTML
229
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
230
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
231
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
232
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
233
+ Connecting to database specified by database.yml
234
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:25 +0100
235
+ Processing by PostsController#index as HTML
236
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
237
+ Completed 200 OK in 9.2ms (Views: 8.9ms | ActiveRecord: 0.0ms)
238
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:25 +0100
239
+ Processing by PostsController#index as HTML
240
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
241
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
242
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
243
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
244
+ Connecting to database specified by database.yml
245
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:29 +0100
246
+ Processing by PostsController#index as HTML
247
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
248
+ Completed 200 OK in 9.3ms (Views: 8.9ms | ActiveRecord: 0.0ms)
249
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:46:29 +0100
250
+ Processing by PostsController#index as HTML
251
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
252
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
253
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
254
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
255
+ Connecting to database specified by database.yml
256
+ Connecting to database specified by database.yml
257
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 16:23:29 +0100
258
+ Processing by PostsController#index as HTML
259
+ Rendered posts/index.html.erb within layouts/application (2.3ms)
260
+ Completed 200 OK in 15.8ms (Views: 15.5ms | ActiveRecord: 0.0ms)
261
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 16:23:29 +0100
262
+ Processing by PostsController#index as HTML
263
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
264
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
265
+ Rendered notifier/wellcome_message.html.erb (0.7ms)
266
+ Rendered notifier/good_bye_message.html.erb (1.1ms)
267
+ Connecting to database specified by database.yml
268
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 16:25:53 +0100
269
+ Processing by PostsController#index as HTML
270
+ Rendered posts/index.html.erb within layouts/application (0.9ms)
271
+ Completed 200 OK in 7.1ms (Views: 6.9ms | ActiveRecord: 0.0ms)
272
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 16:25:53 +0100
273
+ Processing by PostsController#index as HTML
274
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
275
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
276
+ Rendered notifier/wellcome_message.html.erb (0.3ms)
277
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
278
+ Connecting to database specified by database.yml
279
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 16:26:16 +0100
280
+ Processing by PostsController#index as HTML
281
+ Rendered posts/index.html.erb within layouts/application (0.8ms)
282
+ Completed 200 OK in 6.9ms (Views: 6.6ms | ActiveRecord: 0.0ms)
283
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 16:26:16 +0100
284
+ Processing by PostsController#index as HTML
285
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
286
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
287
+ themes.path_setup
288
+ themes.middleware
289
+ themes.setup_theme
290
+ Connecting to database specified by database.yml
291
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:22 +0100
292
+ configure test theme
293
+ Processing by PostsController#index as HTML
294
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.4ms)
295
+ Completed 200 OK in 17.0ms (Views: 16.7ms | ActiveRecord: 0.0ms)
296
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:22 +0100
297
+ configure test theme
298
+ Processing by PostsController#index as HTML
299
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
300
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
301
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:22 +0100
302
+ Processing by PostsController#index as HTML
303
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
304
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
305
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:22 +0100
306
+ Processing by PostsController#index as HTML
307
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
308
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
309
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:22 +0100
310
+ Processing by PostsController#index as HTML
311
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
312
+ Completed 200 OK in 2.4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
313
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:22 +0100
314
+ Processing by PostsController#index as HTML
315
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
316
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
317
+ configure test theme
318
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
319
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
320
+ configure test theme
321
+ configure test theme
322
+ configure test theme
323
+ configure test theme
324
+ configure test theme
325
+ configure test theme
326
+ themes.path_setup
327
+ themes.middleware
328
+ themes.setup_theme
329
+ Connecting to database specified by database.yml
330
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:27 +0100
331
+ configure test theme
332
+ Processing by PostsController#index as HTML
333
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
334
+ Completed 200 OK in 15.0ms (Views: 14.7ms | ActiveRecord: 0.0ms)
335
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:27 +0100
336
+ configure test theme
337
+ Processing by PostsController#index as HTML
338
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
339
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
340
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:27 +0100
341
+ Processing by PostsController#index as HTML
342
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
343
+ Completed 200 OK in 3.7ms (Views: 3.6ms | ActiveRecord: 0.0ms)
344
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:27 +0100
345
+ Processing by PostsController#index as HTML
346
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.2ms)
347
+ Completed 200 OK in 3.4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
348
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:27 +0100
349
+ Processing by PostsController#index as HTML
350
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
351
+ Completed 200 OK in 2.4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
352
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 12:20:27 +0100
353
+ Processing by PostsController#index as HTML
354
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
355
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
356
+ configure test theme
357
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.9ms)
358
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
359
+ configure test theme
360
+ configure test theme
361
+ configure test theme
362
+ configure test theme
363
+ configure test theme
364
+ configure test theme
365
+ Connecting to database specified by database.yml
366
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:59 +0100
367
+ Processing by PostsController#index as HTML
368
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
369
+ Completed 200 OK in 9.8ms (Views: 9.5ms | ActiveRecord: 0.0ms)
370
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:59 +0100
371
+ Processing by PostsController#index as HTML
372
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
373
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
374
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:59 +0100
375
+ Processing by PostsController#index as HTML
376
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.2ms)
377
+ Completed 200 OK in 3.9ms (Views: 3.8ms | ActiveRecord: 0.0ms)
378
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:59 +0100
379
+ Processing by PostsController#index as HTML
380
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
381
+ Completed 200 OK in 3.8ms (Views: 3.6ms | ActiveRecord: 0.0ms)
382
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:59 +0100
383
+ Processing by PostsController#index as HTML
384
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
385
+ Completed 200 OK in 2.5ms (Views: 2.4ms | ActiveRecord: 0.0ms)
386
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:05:59 +0100
387
+ Processing by PostsController#index as HTML
388
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
389
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
390
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
391
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
392
+ Connecting to database specified by database.yml
393
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:25:14 +0100
394
+ Processing by PostsController#index as HTML
395
+ Rendered posts/index.html.erb within layouts/application (1.2ms)
396
+ Completed 200 OK in 9.0ms (Views: 8.7ms | ActiveRecord: 0.0ms)
397
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:25:14 +0100
398
+ Processing by PostsController#index as HTML
399
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
400
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
401
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:25:14 +0100
402
+ Processing by PostsController#index as HTML
403
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
404
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
405
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:25:14 +0100
406
+ Processing by PostsController#index as HTML
407
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
408
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
409
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:25:14 +0100
410
+ Processing by PostsController#index as HTML
411
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
412
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
413
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:25:14 +0100
414
+ Processing by PostsController#index as HTML
415
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
416
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
417
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
418
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
419
+ Connecting to database specified by database.yml
420
+ Connecting to database specified by database.yml
421
+ Connecting to database specified by database.yml
422
+ Connecting to database specified by database.yml
423
+ Connecting to database specified by database.yml
424
+ Connecting to database specified by database.yml
425
+ Connecting to database specified by database.yml
426
+ Connecting to database specified by database.yml
427
+ Connecting to database specified by database.yml
428
+ Connecting to database specified by database.yml
429
+ Connecting to database specified by database.yml
430
+ Connecting to database specified by database.yml
431
+ Connecting to database specified by database.yml
432
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:41:11 +0100
433
+ Processing by PostsController#index as HTML
434
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.1ms)
435
+ Completed 200 OK in 9.6ms (Views: 9.3ms | ActiveRecord: 0.0ms)
436
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:41:11 +0100
437
+ Processing by PostsController#index as HTML
438
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
439
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
440
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:41:11 +0100
441
+ Processing by PostsController#index as HTML
442
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.2ms)
443
+ Completed 200 OK in 3.7ms (Views: 3.6ms | ActiveRecord: 0.0ms)
444
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:41:11 +0100
445
+ Processing by PostsController#index as HTML
446
+ Rendered themes/test2/posts/index.html.erb within layouts/application (0.3ms)
447
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
448
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:41:11 +0100
449
+ Processing by PostsController#index as HTML
450
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
451
+ Completed 200 OK in 2.4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
452
+ Started GET "/posts" for 127.0.0.1 at 2020-01-07 16:41:11 +0100
453
+ Processing by PostsController#index as HTML
454
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
455
+ Completed 200 OK in 0.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
456
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.5ms)
457
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
458
+ Connecting to database specified by database.yml
459
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:12:15 +0100
460
+ Processing by PostsController#index as HTML
461
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.1ms)
462
+ Completed 200 OK in 9.4ms (Views: 9.2ms | ActiveRecord: 0.0ms)
463
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:12:15 +0100
464
+ Processing by PostsController#index as HTML
465
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.2ms)
466
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
467
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:12:15 +0100
468
+ Processing by PostsController#index as HTML
469
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
470
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
471
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:12:15 +0100
472
+ Processing by PostsController#index as HTML
473
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
474
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
475
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:12:15 +0100
476
+ Processing by PostsController#index as HTML
477
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
478
+ Completed 200 OK in 2.4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
479
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:12:15 +0100
480
+ Processing by PostsController#index as HTML
481
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
482
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
483
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.3ms)
484
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
485
+ Connecting to database specified by database.yml
486
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:32 +0100
487
+ Processing by PostsController#index as HTML
488
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.0ms)
489
+ Completed 200 OK in 9.7ms (Views: 9.5ms | ActiveRecord: 0.0ms)
490
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:32 +0100
491
+ Processing by PostsController#index as HTML
492
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
493
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
494
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:32 +0100
495
+ Processing by PostsController#index as HTML
496
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
497
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
498
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:32 +0100
499
+ Processing by PostsController#index as HTML
500
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
501
+ Completed 200 OK in 4.6ms (Views: 4.4ms | ActiveRecord: 0.0ms)
502
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:32 +0100
503
+ Processing by PostsController#index as HTML
504
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
505
+ Completed 200 OK in 2.6ms (Views: 2.5ms | ActiveRecord: 0.0ms)
506
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:32 +0100
507
+ Processing by PostsController#index as HTML
508
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
509
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
510
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
511
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
512
+ Connecting to database specified by database.yml
513
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:37 +0100
514
+ Processing by PostsController#index as HTML
515
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (2.2ms)
516
+ Completed 200 OK in 17.2ms (Views: 16.8ms | ActiveRecord: 0.0ms)
517
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:37 +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 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
521
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:37 +0100
522
+ Processing by PostsController#index as HTML
523
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
524
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
525
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:37 +0100
526
+ Processing by PostsController#index as HTML
527
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
528
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
529
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:37 +0100
530
+ Processing by PostsController#index as HTML
531
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
532
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
533
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:14:37 +0100
534
+ Processing by PostsController#index as HTML
535
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
536
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
537
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.2ms)
538
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
539
+ Connecting to database specified by database.yml
540
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:00 +0100
541
+ Processing by PostsController#index as HTML
542
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.1ms)
543
+ Completed 200 OK in 9.8ms (Views: 9.5ms | ActiveRecord: 0.0ms)
544
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:00 +0100
545
+ Processing by PostsController#index as HTML
546
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
547
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
548
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:00 +0100
549
+ Processing by PostsController#index as HTML
550
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
551
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
552
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:00 +0100
553
+ Processing by PostsController#index as HTML
554
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
555
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
556
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:00 +0100
557
+ Processing by PostsController#index as HTML
558
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
559
+ Completed 200 OK in 2.5ms (Views: 2.4ms | ActiveRecord: 0.0ms)
560
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:00 +0100
561
+ Processing by PostsController#index as HTML
562
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
563
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
564
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.2ms)
565
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
566
+ Connecting to database specified by database.yml
567
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:03 +0100
568
+ Processing by PostsController#index as HTML
569
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.8ms)
570
+ Completed 200 OK in 8.3ms (Views: 8.0ms | ActiveRecord: 0.0ms)
571
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:03 +0100
572
+ Processing by PostsController#index as HTML
573
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.2ms)
574
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
575
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:03 +0100
576
+ Processing by PostsController#index as HTML
577
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.2ms)
578
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
579
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:03 +0100
580
+ Processing by PostsController#index as HTML
581
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
582
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
583
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:03 +0100
584
+ Processing by PostsController#index as HTML
585
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
586
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
587
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 11:22:03 +0100
588
+ Processing by PostsController#index as HTML
589
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
590
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
591
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.6ms)
592
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
593
+ Connecting to database specified by database.yml
594
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
595
+ Processing by PostsController#index as HTML
596
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.3ms)
597
+ Completed 200 OK in 10.2ms (Views: 9.9ms | ActiveRecord: 0.0ms)
598
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
599
+ Processing by PostsController#index as HTML
600
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
601
+ Completed 200 OK in 3.7ms (Views: 3.6ms | ActiveRecord: 0.0ms)
602
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
603
+ Processing by PostsController#index as HTML
604
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
605
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
606
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
607
+ Processing by PostsController#index as HTML
608
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
609
+ Completed 200 OK in 3.9ms (Views: 3.8ms | ActiveRecord: 0.0ms)
610
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
611
+ Processing by PostsController#index as HTML
612
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
613
+ Completed 200 OK in 3.9ms (Views: 3.8ms | ActiveRecord: 0.0ms)
614
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
615
+ Processing by PostsController#index as HTML
616
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
617
+ Completed 200 OK in 4.8ms (Views: 4.7ms | ActiveRecord: 0.0ms)
618
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
619
+ Processing by PostsController#index as HTML
620
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
621
+ Completed 200 OK in 3.9ms (Views: 3.7ms | ActiveRecord: 0.0ms)
622
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
623
+ Processing by PostsController#index as HTML
624
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
625
+ Completed 200 OK in 3.8ms (Views: 3.7ms | ActiveRecord: 0.0ms)
626
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
627
+ Processing by PostsController#index as HTML
628
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
629
+ Completed 200 OK in 2.5ms (Views: 2.4ms | ActiveRecord: 0.0ms)
630
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:29:44 +0100
631
+ Processing by PostsController#index as HTML
632
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
633
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
634
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
635
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
636
+ Connecting to database specified by database.yml
637
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
638
+ Processing by PostsController#index as HTML
639
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.2ms)
640
+ Completed 200 OK in 9.7ms (Views: 9.4ms | ActiveRecord: 0.0ms)
641
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
642
+ Processing by PostsController#index as HTML
643
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
644
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
645
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
646
+ Processing by PostsController#index as HTML
647
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
648
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
649
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
650
+ Processing by PostsController#index as HTML
651
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
652
+ Completed 200 OK in 3.8ms (Views: 3.7ms | ActiveRecord: 0.0ms)
653
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
654
+ Processing by PostsController#index as HTML
655
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
656
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
657
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
658
+ Processing by PostsController#index as HTML
659
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
660
+ Completed 200 OK in 3.7ms (Views: 3.6ms | ActiveRecord: 0.0ms)
661
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
662
+ Processing by PostsController#index as HTML
663
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
664
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
665
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
666
+ Processing by PostsController#index as HTML
667
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
668
+ Completed 200 OK in 3.5ms (Views: 3.3ms | ActiveRecord: 0.0ms)
669
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
670
+ Processing by PostsController#index as HTML
671
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
672
+ Completed 200 OK in 2.7ms (Views: 2.6ms | ActiveRecord: 0.0ms)
673
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:30:20 +0100
674
+ Processing by PostsController#index as HTML
675
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
676
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
677
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
678
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
679
+ Connecting to database specified by database.yml
680
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
681
+ Processing by PostsController#index as HTML
682
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.2ms)
683
+ Completed 200 OK in 9.7ms (Views: 9.4ms | ActiveRecord: 0.0ms)
684
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
685
+ Processing by PostsController#index as HTML
686
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
687
+ Completed 200 OK in 3.7ms (Views: 3.5ms | ActiveRecord: 0.0ms)
688
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
689
+ Processing by PostsController#index as HTML
690
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
691
+ Completed 200 OK in 3.7ms (Views: 3.6ms | ActiveRecord: 0.0ms)
692
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
693
+ Processing by PostsController#index as HTML
694
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
695
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
696
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
697
+ Processing by PostsController#index as HTML
698
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
699
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
700
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
701
+ Processing by PostsController#index as HTML
702
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
703
+ Completed 200 OK in 3.6ms (Views: 3.6ms | ActiveRecord: 0.0ms)
704
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
705
+ Processing by PostsController#index as HTML
706
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
707
+ Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
708
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:29 +0100
709
+ Processing by PostsController#index as HTML
710
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.3ms)
711
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
712
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:30 +0100
713
+ Processing by PostsController#index as HTML
714
+ Rendered posts/index.html.erb within layouts/application (0.2ms)
715
+ Completed 200 OK in 2.4ms (Views: 2.3ms | ActiveRecord: 0.0ms)
716
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:30 +0100
717
+ Processing by PostsController#index as HTML
718
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
719
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
720
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.2ms)
721
+ Rendered notifier/good_bye_message.html.erb (0.4ms)
722
+ Connecting to database specified by database.yml
723
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
724
+ Processing by PostsController#index as HTML
725
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (1.0ms)
726
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
727
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
728
+ Processing by PostsController#index as HTML
729
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.4ms)
730
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
731
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
732
+ Processing by PostsController#index as HTML
733
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
734
+ Completed 200 OK in 3.5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
735
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
736
+ Processing by PostsController#index as HTML
737
+ Rendered themes/testdb/posts/index.html.erb within layouts/application (0.3ms)
738
+ Completed 200 OK in 3.8ms (Views: 3.7ms | ActiveRecord: 0.0ms)
739
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
740
+ Processing by PostsController#index as HTML
741
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.5ms)
742
+ Completed 200 OK in 3.8ms (Views: 3.7ms | ActiveRecord: 0.0ms)
743
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
744
+ Processing by PostsController#index as HTML
745
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
746
+ Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
747
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
748
+ Processing by PostsController#index as HTML
749
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
750
+ Completed 200 OK in 4.2ms (Views: 4.1ms | ActiveRecord: 0.0ms)
751
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
752
+ Processing by PostsController#index as HTML
753
+ Rendered themes/testdb2/posts/index.html.erb within layouts/application (0.4ms)
754
+ Completed 200 OK in 4.3ms (Views: 4.2ms | ActiveRecord: 0.0ms)
755
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
756
+ Processing by PostsController#index as HTML
757
+ Rendered posts/index.html.erb within layouts/application (0.3ms)
758
+ Completed 200 OK in 2.6ms (Views: 2.4ms | ActiveRecord: 0.0ms)
759
+ Started GET "/posts" for 127.0.0.1 at 2020-01-08 12:31:33 +0100
760
+ Processing by PostsController#index as HTML
761
+ Rendered posts/index.html.erb within layouts/application (0.0ms)
762
+ Completed 200 OK in 0.7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
763
+ Rendered themes/testdb/notifier/wellcome_message.html.erb (0.4ms)
764
+ Rendered notifier/good_bye_message.html.erb (0.3ms)