themes 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +5 -13
  2. data/Rakefile +2 -1
  3. data/lib/themes.rb +6 -5
  4. data/lib/themes/engine.rb +1 -3
  5. data/lib/themes/loader.rb +3 -0
  6. data/lib/themes/version.rb +1 -1
  7. data/spec/dummy/log/test.log +0 -264
  8. data/spec/{dummy → dummy3}/README.rdoc +0 -0
  9. data/spec/{dummy → dummy3}/Rakefile +0 -0
  10. data/spec/dummy3/app +1 -0
  11. data/spec/{dummy → dummy3}/config.ru +0 -0
  12. data/spec/{dummy → dummy3}/config/application.rb +0 -0
  13. data/spec/{dummy → dummy3}/config/boot.rb +0 -0
  14. data/spec/{dummy → dummy3}/config/database.yml +0 -0
  15. data/spec/{dummy → dummy3}/config/environment.rb +0 -0
  16. data/spec/{dummy → dummy3}/config/environments/development.rb +0 -0
  17. data/spec/{dummy → dummy3}/config/environments/production.rb +0 -0
  18. data/spec/{dummy → dummy3}/config/environments/test.rb +0 -0
  19. data/spec/{dummy → dummy3}/config/initializers/backtrace_silencers.rb +0 -0
  20. data/spec/{dummy → dummy3}/config/initializers/inflections.rb +0 -0
  21. data/spec/{dummy → dummy3}/config/initializers/mime_types.rb +0 -0
  22. data/spec/{dummy → dummy3}/config/initializers/secret_token.rb +0 -0
  23. data/spec/{dummy → dummy3}/config/initializers/session_store.rb +0 -0
  24. data/spec/{dummy → dummy3}/config/initializers/wrap_parameters.rb +0 -0
  25. data/spec/{dummy → dummy3}/config/locales/en.yml +0 -0
  26. data/spec/{dummy → dummy3}/config/routes.rb +0 -0
  27. data/spec/{dummy → dummy3}/config/themes/test.rb +0 -0
  28. data/spec/dummy3/log/test.log +232 -0
  29. data/spec/{dummy → dummy3}/public/404.html +0 -0
  30. data/spec/{dummy → dummy3}/public/422.html +0 -0
  31. data/spec/{dummy → dummy3}/public/500.html +0 -0
  32. data/spec/{dummy → dummy3}/public/favicon.ico +0 -0
  33. data/spec/{dummy → dummy3}/script/rails +0 -0
  34. data/spec/dummy4/README.rdoc +261 -0
  35. data/spec/dummy4/Rakefile +7 -0
  36. data/spec/dummy4/app +1 -0
  37. data/spec/dummy4/bin/bundle +3 -0
  38. data/spec/dummy4/bin/rails +4 -0
  39. data/spec/dummy4/bin/rake +4 -0
  40. data/spec/dummy4/bin/setup +29 -0
  41. data/spec/dummy4/config.ru +4 -0
  42. data/spec/dummy4/config/application.rb +26 -0
  43. data/spec/dummy4/config/boot.rb +3 -0
  44. data/spec/dummy4/config/database.yml +26 -0
  45. data/spec/dummy4/config/environment.rb +5 -0
  46. data/spec/dummy4/config/environments/development.rb +41 -0
  47. data/spec/dummy4/config/environments/production.rb +79 -0
  48. data/spec/dummy4/config/environments/test.rb +42 -0
  49. data/spec/dummy4/config/initializers/assets.rb +11 -0
  50. data/spec/dummy4/config/initializers/backtrace_silencers.rb +7 -0
  51. data/spec/dummy4/config/initializers/cookies_serializer.rb +3 -0
  52. data/spec/dummy4/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/spec/dummy4/config/initializers/inflections.rb +16 -0
  54. data/spec/dummy4/config/initializers/mime_types.rb +4 -0
  55. data/spec/dummy4/config/initializers/secret_token.rb +12 -0
  56. data/spec/dummy4/config/initializers/session_store.rb +3 -0
  57. data/spec/dummy4/config/initializers/wrap_parameters.rb +14 -0
  58. data/spec/dummy4/config/locales/en.yml +23 -0
  59. data/spec/dummy4/config/routes.rb +57 -0
  60. data/spec/dummy4/config/secrets.yml +22 -0
  61. data/spec/dummy4/config/themes/test.rb +8 -0
  62. data/spec/dummy4/log/test.log +196 -0
  63. data/spec/dummy4/public/404.html +26 -0
  64. data/spec/dummy4/public/422.html +26 -0
  65. data/spec/dummy4/public/500.html +25 -0
  66. data/spec/dummy4/public/favicon.ico +0 -0
  67. data/spec/dummy4/script/rails +6 -0
  68. data/spec/dummy5/README.rdoc +261 -0
  69. data/spec/dummy5/Rakefile +7 -0
  70. data/spec/dummy5/app +1 -0
  71. data/spec/dummy5/bin/bundle +3 -0
  72. data/spec/dummy5/bin/rails +4 -0
  73. data/spec/dummy5/bin/rake +4 -0
  74. data/spec/dummy5/bin/setup +36 -0
  75. data/spec/dummy5/bin/update +31 -0
  76. data/spec/dummy5/bin/yarn +11 -0
  77. data/spec/dummy5/config.ru +4 -0
  78. data/spec/dummy5/config/application.rb +19 -0
  79. data/spec/dummy5/config/boot.rb +4 -0
  80. data/spec/dummy5/config/cable.yml +10 -0
  81. data/spec/dummy5/config/database.yml +26 -0
  82. data/spec/dummy5/config/environment.rb +5 -0
  83. data/spec/dummy5/config/environments/development.rb +61 -0
  84. data/spec/dummy5/config/environments/production.rb +94 -0
  85. data/spec/dummy5/config/environments/test.rb +46 -0
  86. data/spec/dummy5/config/initializers/application_controller_renderer.rb +8 -0
  87. data/spec/dummy5/config/initializers/assets.rb +14 -0
  88. data/spec/dummy5/config/initializers/backtrace_silencers.rb +7 -0
  89. data/spec/dummy5/config/initializers/content_security_policy.rb +25 -0
  90. data/spec/dummy5/config/initializers/cookies_serializer.rb +5 -0
  91. data/spec/dummy5/config/initializers/filter_parameter_logging.rb +4 -0
  92. data/spec/dummy5/config/initializers/inflections.rb +16 -0
  93. data/spec/dummy5/config/initializers/mime_types.rb +4 -0
  94. data/spec/dummy5/config/initializers/new_framework_defaults_5_2.rb +38 -0
  95. data/spec/dummy5/config/initializers/secret_token.rb +12 -0
  96. data/spec/dummy5/config/initializers/session_store.rb +3 -0
  97. data/spec/dummy5/config/initializers/wrap_parameters.rb +14 -0
  98. data/spec/dummy5/config/locales/en.yml +33 -0
  99. data/spec/dummy5/config/routes.rb +4 -0
  100. data/spec/dummy5/config/secrets.yml +22 -0
  101. data/spec/dummy5/config/storage.yml +34 -0
  102. data/spec/dummy5/config/themes/test.rb +8 -0
  103. data/spec/dummy5/log/test.log +336 -0
  104. data/spec/dummy5/public/404.html +26 -0
  105. data/spec/dummy5/public/422.html +26 -0
  106. data/spec/dummy5/public/500.html +25 -0
  107. data/spec/dummy5/public/favicon.ico +0 -0
  108. data/spec/dummy5/script/rails +6 -0
  109. data/spec/dummy6/README.rdoc +261 -0
  110. data/spec/dummy6/Rakefile +7 -0
  111. data/spec/dummy6/app +1 -0
  112. data/spec/dummy6/bin/bundle +3 -0
  113. data/spec/dummy6/bin/rails +4 -0
  114. data/spec/dummy6/bin/rake +4 -0
  115. data/spec/dummy6/bin/setup +36 -0
  116. data/spec/dummy6/bin/update +31 -0
  117. data/spec/dummy6/bin/yarn +11 -0
  118. data/spec/dummy6/config.ru +4 -0
  119. data/spec/dummy6/config/application.rb +19 -0
  120. data/spec/dummy6/config/boot.rb +3 -0
  121. data/spec/dummy6/config/cable.yml +10 -0
  122. data/spec/dummy6/config/database.yml +26 -0
  123. data/spec/dummy6/config/environment.rb +5 -0
  124. data/spec/dummy6/config/environments/development.rb +62 -0
  125. data/spec/dummy6/config/environments/production.rb +112 -0
  126. data/spec/dummy6/config/environments/test.rb +48 -0
  127. data/spec/dummy6/config/initializers/application_controller_renderer.rb +8 -0
  128. data/spec/dummy6/config/initializers/assets.rb +14 -0
  129. data/spec/dummy6/config/initializers/backtrace_silencers.rb +7 -0
  130. data/spec/dummy6/config/initializers/content_security_policy.rb +30 -0
  131. data/spec/dummy6/config/initializers/cookies_serializer.rb +5 -0
  132. data/spec/dummy6/config/initializers/filter_parameter_logging.rb +4 -0
  133. data/spec/dummy6/config/initializers/inflections.rb +16 -0
  134. data/spec/dummy6/config/initializers/mime_types.rb +4 -0
  135. data/spec/dummy6/config/initializers/new_framework_defaults_5_2.rb +38 -0
  136. data/spec/dummy6/config/initializers/new_framework_defaults_6_0.rb +45 -0
  137. data/spec/dummy6/config/initializers/secret_token.rb +12 -0
  138. data/spec/dummy6/config/initializers/session_store.rb +3 -0
  139. data/spec/dummy6/config/initializers/wrap_parameters.rb +14 -0
  140. data/spec/dummy6/config/locales/en.yml +33 -0
  141. data/spec/dummy6/config/routes.rb +3 -0
  142. data/spec/dummy6/config/secrets.yml +22 -0
  143. data/spec/dummy6/config/storage.yml +34 -0
  144. data/spec/dummy6/config/themes/test.rb +8 -0
  145. data/spec/dummy6/log/development.log +0 -0
  146. data/spec/dummy6/log/test.log +630 -0
  147. data/spec/dummy6/public/404.html +26 -0
  148. data/spec/dummy6/public/422.html +26 -0
  149. data/spec/dummy6/public/500.html +25 -0
  150. data/spec/dummy6/public/favicon.ico +0 -0
  151. data/spec/dummy6/script/rails +6 -0
  152. data/spec/dummy_app_folder/assets/config/manifest.js +3 -0
  153. data/spec/{dummy/app → dummy_app_folder}/assets/javascripts/application.js +0 -0
  154. data/spec/{dummy/app → dummy_app_folder}/assets/stylesheets/application.css +0 -0
  155. data/spec/{dummy/app → dummy_app_folder}/controllers/application_controller.rb +0 -0
  156. data/spec/{dummy/app → dummy_app_folder}/controllers/posts_controller.rb +0 -0
  157. data/spec/{dummy/app → dummy_app_folder}/helpers/application_helper.rb +0 -0
  158. data/spec/{dummy/app → dummy_app_folder}/mailers/notifier.rb +0 -0
  159. data/spec/dummy_app_folder/views/layouts/application.html.erb +6 -0
  160. data/spec/{dummy/app → dummy_app_folder}/views/notifier/good_bye_message.html.erb +0 -0
  161. data/spec/{dummy/app → dummy_app_folder}/views/notifier/wellcome_message.html.erb +0 -0
  162. data/spec/{dummy/app → dummy_app_folder}/views/posts/index.html.erb +0 -0
  163. data/spec/dummy_app_folder/views/themes/test/layouts/application.html.erb +7 -0
  164. data/spec/{dummy/app → dummy_app_folder}/views/themes/test/notifier/wellcome_message.html.erb +0 -0
  165. data/spec/{dummy/app → dummy_app_folder}/views/themes/test/posts/index.html.erb +0 -0
  166. data/spec/{controllers → features}/posts_controller_spec.rb +5 -9
  167. data/spec/generators/new_theme_generator_spec.rb +4 -4
  168. data/spec/spec_helper.rb +8 -7
  169. data/spec/themes_engine_spec.rb +5 -5
  170. metadata +452 -111
  171. data/spec/dummy/app/views/layouts/application.html.erb +0 -4
  172. data/spec/dummy/app/views/themes/test/layouts/application.html.erb +0 -4
@@ -0,0 +1,45 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains migration options to ease your Rails 6.0 upgrade.
4
+ #
5
+ # Once upgraded flip defaults one by one to migrate to the new default.
6
+ #
7
+ # Read the Guide for Upgrading Ruby on Rails for more info on each option.
8
+
9
+ # Don't force requests from old versions of IE to be UTF-8 encoded.
10
+ # Rails.application.config.action_view.default_enforce_utf8 = false
11
+
12
+ # Embed purpose and expiry metadata inside signed and encrypted
13
+ # cookies for increased security.
14
+ #
15
+ # This option is not backwards compatible with earlier Rails versions.
16
+ # It's best enabled when your entire app is migrated and stable on 6.0.
17
+ # Rails.application.config.action_dispatch.use_cookies_with_metadata = true
18
+
19
+ # Change the return value of `ActionDispatch::Response#content_type` to Content-Type header without modification.
20
+ # Rails.application.config.action_dispatch.return_only_media_type_on_content_type = false
21
+
22
+ # Return false instead of self when enqueuing is aborted from a callback.
23
+ # Rails.application.config.active_job.return_false_on_aborted_enqueue = true
24
+
25
+ # Send Active Storage analysis and purge jobs to dedicated queues.
26
+ # Rails.application.config.active_storage.queues.analysis = :active_storage_analysis
27
+ # Rails.application.config.active_storage.queues.purge = :active_storage_purge
28
+
29
+ # When assigning to a collection of attachments declared via `has_many_attached`, replace existing
30
+ # attachments instead of appending. Use #attach to add new attachments without replacing existing ones.
31
+ # Rails.application.config.active_storage.replace_on_assign_to_many = true
32
+
33
+ # Use ActionMailer::MailDeliveryJob for sending parameterized and normal mail.
34
+ #
35
+ # The default delivery jobs (ActionMailer::Parameterized::DeliveryJob, ActionMailer::DeliveryJob),
36
+ # will be removed in Rails 6.1. This setting is not backwards compatible with earlier Rails versions.
37
+ # If you send mail in the background, job workers need to have a copy of
38
+ # MailDeliveryJob to ensure all delivery jobs are processed properly.
39
+ # Make sure your entire app is migrated and stable on 6.0 before using this setting.
40
+ # Rails.application.config.action_mailer.delivery_job = "ActionMailer::MailDeliveryJob"
41
+
42
+ # Enable the same cache key to be reused when the object being cached of type
43
+ # `ActiveRecord::Relation` changes by moving the volatile information (max updated at and count)
44
+ # of the relation's cache key into the cache version to support recycling cache key.
45
+ # Rails.application.config.active_record.collection_cache_versioning = true
@@ -0,0 +1,12 @@
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 your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '21eb9ba70ea7174e26cd1795bf9b89266e855c21e92518f29aeae429cc7f21bc02ab111b7f048ad146eebc8900358d492f8b4c651e9020d723402c5d6fa4226d'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at https://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ resources :posts
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 333feaf1d702a6a32b5973b23d1ae66d147bff06ef1017205a848fa1245fec7a2d2e787caddefcc1dc664dbb9161de02637d4c0ce9458682eda9142fdab98f48
15
+
16
+ test:
17
+ secret_key_base: f3cb3666c7480eac4e3d714fddb427eb78135e9c77a2fa980deb465945f56bb91fe94c1d6e2a5e290c987fea75d464912c2b9f7de7ebd313cf1ccc9c2285da44
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1,8 @@
1
+ module Themes
2
+ class Loader
3
+ def self.configure(app)
4
+ app.config.theme.name = 'test'
5
+ app.config.theme.email = 'test@test.cat'
6
+ end
7
+ end
8
+ end
File without changes
@@ -0,0 +1,630 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ Processing by PostsController#index as HTML
7
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
8
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
9
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
10
+ Completed 200 OK in 8.4ms (Views: 8.2ms | ActiveRecord: 0.0ms)
11
+ Processing by PostsController#index as HTML
12
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
13
+ Processing by PostsController#index as HTML
14
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
15
+ Connecting to database specified by database.yml
16
+ Processing by PostsController#index as HTML
17
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
18
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
19
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
20
+ Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
21
+ Processing by PostsController#index as HTML
22
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
23
+ Processing by PostsController#index as HTML
24
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
25
+ Connecting to database specified by database.yml
26
+ Processing by PostsController#index as HTML
27
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
28
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
29
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
30
+ Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
31
+ Processing by PostsController#index as HTML
32
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
33
+ Processing by PostsController#index as HTML
34
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35
+ Connecting to database specified by database.yml
36
+ Processing by PostsController#index as HTML
37
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
38
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
39
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
40
+ Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
41
+ Processing by PostsController#index as HTML
42
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
43
+ Processing by PostsController#index as HTML
44
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
45
+ Connecting to database specified by database.yml
46
+ Processing by PostsController#index as HTML
47
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
48
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
49
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
50
+ Completed 200 OK in 8.1ms (Views: 7.8ms | ActiveRecord: 0.0ms)
51
+ Processing by PostsController#index as HTML
52
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
53
+ Processing by PostsController#index as HTML
54
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
55
+ Connecting to database specified by database.yml
56
+ Processing by PostsController#index as HTML
57
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
58
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
59
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
60
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
61
+ Processing by PostsController#index as HTML
62
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
63
+ Processing by PostsController#index as HTML
64
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
65
+ Connecting to database specified by database.yml
66
+ Processing by PostsController#index as HTML
67
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
68
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
69
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
70
+ Completed 200 OK in 8.6ms (Views: 8.3ms | ActiveRecord: 0.0ms)
71
+ Processing by PostsController#index as HTML
72
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
73
+ Processing by PostsController#index as HTML
74
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
75
+ Connecting to database specified by database.yml
76
+ Processing by PostsController#index as HTML
77
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
78
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
79
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
80
+ Completed 200 OK in 8.4ms (Views: 8.1ms | ActiveRecord: 0.0ms)
81
+ Processing by PostsController#index as HTML
82
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
83
+ Processing by PostsController#index as HTML
84
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
85
+ Rendered themes/test/notifier/wellcome_message.html.erb (2.3ms)
86
+
87
+ Notifier#wellcome_message: processed outbound mail in 176.6ms
88
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
89
+
90
+ Notifier#good_bye_message: processed outbound mail in 5.7ms
91
+ Processing by PostsController#index as HTML
92
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
93
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.3ms)
94
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
96
+ Processing by PostsController#index as HTML
97
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.2ms)
98
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
99
+ Processing by PostsController#index as HTML
100
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
101
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
102
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
103
+
104
+ Notifier#wellcome_message: processed outbound mail in 154.2ms
105
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
106
+
107
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
108
+ Processing by PostsController#index as HTML
109
+ Rendering themes/test/posts/index.html.erb within layouts/application
110
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
111
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
112
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
113
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms)
114
+ Processing by PostsController#index as HTML
115
+ Rendering themes/test/posts/index.html.erb within layouts/application
116
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
117
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
118
+ Processing by PostsController#index as HTML
119
+ Rendering themes/test/posts/index.html.erb within layouts/application
120
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
121
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
122
+ Rendering themes/test/notifier/wellcome_message.html.erb
123
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
124
+ Notifier#wellcome_message: processed outbound mail in 166.1ms
125
+ Rendering notifier/good_bye_message.html.erb
126
+ Rendered notifier/good_bye_message.html.erb (0.9ms)
127
+ Notifier#good_bye_message: processed outbound mail in 5.4ms
128
+ Processing by PostsController#index as HTML
129
+ Rendering themes/test/posts/index.html.erb within layouts/application
130
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
131
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
132
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
133
+ Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.0ms)
134
+ Processing by PostsController#index as HTML
135
+ Rendering themes/test/posts/index.html.erb within layouts/application
136
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
137
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
138
+ Processing by PostsController#index as HTML
139
+ Rendering themes/test/posts/index.html.erb within layouts/application
140
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
141
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
142
+ Rendering themes/test/notifier/wellcome_message.html.erb
143
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
144
+ Notifier#wellcome_message: processed outbound mail in 162.8ms
145
+ Rendering notifier/good_bye_message.html.erb
146
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
147
+ Notifier#good_bye_message: processed outbound mail in 4.3ms
148
+ Processing by PostsController#index as HTML
149
+ Rendering themes/test/posts/index.html.erb within layouts/application
150
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
151
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
152
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
153
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.0ms)
154
+ Processing by PostsController#index as HTML
155
+ Rendering themes/test/posts/index.html.erb within layouts/application
156
+ Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
157
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
158
+ Processing by PostsController#index as HTML
159
+ Rendering themes/test/posts/index.html.erb within layouts/application
160
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
161
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
162
+ Rendering themes/test/notifier/wellcome_message.html.erb
163
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
164
+ Notifier#wellcome_message: processed outbound mail in 174.3ms
165
+ Rendering notifier/good_bye_message.html.erb
166
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
167
+ Notifier#good_bye_message: processed outbound mail in 4.7ms
168
+ Processing by PostsController#index as HTML
169
+ Rendering themes/test/posts/index.html.erb within layouts/application
170
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
171
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.2ms)
172
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
173
+ Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms)
174
+ Processing by PostsController#index as HTML
175
+ Rendering themes/test/posts/index.html.erb within layouts/application
176
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
177
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
178
+ Processing by PostsController#index as HTML
179
+ Rendering themes/test/posts/index.html.erb within layouts/application
180
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
181
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
182
+ Rendering themes/test/notifier/wellcome_message.html.erb
183
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
184
+ Notifier#wellcome_message: processed outbound mail in 169.4ms
185
+ Rendering notifier/good_bye_message.html.erb
186
+ Rendered notifier/good_bye_message.html.erb (0.2ms)
187
+ Notifier#good_bye_message: processed outbound mail in 4.9ms
188
+ Processing by PostsController#index as HTML
189
+ Rendering themes/test/posts/index.html.erb within layouts/application
190
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
191
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.4ms)
192
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
193
+ Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.0ms)
194
+ Processing by PostsController#index as HTML
195
+ Rendering themes/test/posts/index.html.erb within layouts/application
196
+ Rendered themes/test/posts/index.html.erb within layouts/application (2.3ms)
197
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
198
+ Processing by PostsController#index as HTML
199
+ Rendering themes/test/posts/index.html.erb within layouts/application
200
+ Rendered themes/test/posts/index.html.erb within layouts/application (0.1ms)
201
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
202
+ Rendering themes/test/notifier/wellcome_message.html.erb
203
+ Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
204
+ Notifier#wellcome_message: processed outbound mail in 245.3ms
205
+ Rendering notifier/good_bye_message.html.erb
206
+ Rendered notifier/good_bye_message.html.erb (0.3ms)
207
+ Notifier#good_bye_message: processed outbound mail in 6.4ms
208
+  (2.7ms) SELECT sqlite_version(*)
209
+ Rendering themes/test/notifier/wellcome_message.html.erb
210
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 2.1ms | Allocations: 346)
211
+ Notifier#wellcome_message: processed outbound mail in 17.7ms
212
+ Rendering notifier/good_bye_message.html.erb
213
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
214
+ Notifier#good_bye_message: processed outbound mail in 1.8ms
215
+  (1.1ms) SELECT sqlite_version(*)
216
+ Processing by PostsController#index as HTML
217
+ Rendering themes/test/posts/index.html.erb within layouts/application
218
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 3.3ms | Allocations: 998)
219
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms | Allocations: 4855)
220
+ Processing by PostsController#index as HTML
221
+ Rendering themes/test/posts/index.html.erb within layouts/application
222
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 96)
223
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 528)
224
+ Processing by PostsController#index as HTML
225
+ Rendering themes/test/posts/index.html.erb within layouts/application
226
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
227
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 334)
228
+ Rendering themes/test/notifier/wellcome_message.html.erb
229
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 87)
230
+ Notifier#wellcome_message: processed outbound mail in 8.8ms
231
+ Rendering notifier/good_bye_message.html.erb
232
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 85)
233
+ Notifier#good_bye_message: processed outbound mail in 4.4ms
234
+  (1.3ms) SELECT sqlite_version(*)
235
+ Processing by PostsController#index as HTML
236
+ Rendering themes/test/posts/index.html.erb within layouts/application
237
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.1ms | Allocations: 999)
238
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4856)
239
+ Processing by PostsController#index as HTML
240
+ Rendering themes/test/posts/index.html.erb within layouts/application
241
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 96)
242
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 528)
243
+ Processing by PostsController#index as HTML
244
+ Rendering themes/test/posts/index.html.erb within layouts/application
245
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
246
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
247
+ Rendering themes/test/notifier/wellcome_message.html.erb
248
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
249
+ Notifier#wellcome_message: processed outbound mail in 5.3ms
250
+ Rendering notifier/good_bye_message.html.erb
251
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 85)
252
+ Notifier#good_bye_message: processed outbound mail in 2.6ms
253
+  (1.4ms) SELECT sqlite_version(*)
254
+ Processing by PostsController#index as HTML
255
+ Rendering themes/test/posts/index.html.erb within layouts/application
256
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.0ms | Allocations: 999)
257
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4856)
258
+ Processing by PostsController#index as HTML
259
+ Rendering themes/test/posts/index.html.erb within layouts/application
260
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 96)
261
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 528)
262
+ Processing by PostsController#index as HTML
263
+ Rendering themes/test/posts/index.html.erb within layouts/application
264
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 10)
265
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
266
+ Rendering themes/test/notifier/wellcome_message.html.erb
267
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
268
+ Notifier#wellcome_message: processed outbound mail in 8.6ms
269
+ Rendering notifier/good_bye_message.html.erb
270
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 85)
271
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
272
+  (1.3ms) SELECT sqlite_version(*)
273
+ Processing by PostsController#index as HTML
274
+ Rendering themes/test/posts/index.html.erb within layouts/application
275
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.1ms | Allocations: 999)
276
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 4856)
277
+ Processing by PostsController#index as HTML
278
+ Rendering themes/test/posts/index.html.erb within layouts/application
279
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 96)
280
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 528)
281
+ Processing by PostsController#index as HTML
282
+ Rendering themes/test/posts/index.html.erb within layouts/application
283
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 10)
284
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 334)
285
+ Rendering themes/test/notifier/wellcome_message.html.erb
286
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
287
+ Notifier#wellcome_message: processed outbound mail in 5.6ms
288
+ Rendering notifier/good_bye_message.html.erb
289
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 85)
290
+ Notifier#good_bye_message: processed outbound mail in 3.3ms
291
+  (1.2ms) SELECT sqlite_version(*)
292
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:23 +0100
293
+ Processing by PostsController#index as HTML
294
+ Rendering themes/test/posts/index.html.erb within layouts/application
295
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.1ms | Allocations: 345)
296
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms | Allocations: 2551)
297
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:23 +0100
298
+ Processing by PostsController#index as HTML
299
+ Rendering themes/test/posts/index.html.erb within layouts/application
300
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
301
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 320)
302
+ Rendering themes/test/notifier/wellcome_message.html.erb
303
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.4ms | Allocations: 85)
304
+ Notifier#wellcome_message: processed outbound mail in 7.1ms
305
+ Rendering notifier/good_bye_message.html.erb
306
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.5ms | Allocations: 85)
307
+ Notifier#good_bye_message: processed outbound mail in 3.6ms
308
+  (2.7ms) SELECT sqlite_version(*)
309
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:30 +0100
310
+ Processing by PostsController#index as HTML
311
+ Rendering themes/test/posts/index.html.erb within layouts/application
312
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 345)
313
+ Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.0ms | Allocations: 2550)
314
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:30 +0100
315
+ Processing by PostsController#index as HTML
316
+ Rendering themes/test/posts/index.html.erb within layouts/application
317
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
318
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
319
+ Rendering themes/test/notifier/wellcome_message.html.erb
320
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 88)
321
+ Notifier#wellcome_message: processed outbound mail in 5.5ms
322
+ Rendering notifier/good_bye_message.html.erb
323
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.4ms | Allocations: 85)
324
+ Notifier#good_bye_message: processed outbound mail in 3.0ms
325
+  (1.2ms) SELECT sqlite_version(*)
326
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:29:46 +0100
327
+ Processing by PostsController#index as HTML
328
+ Rendering themes/test/posts/index.html.erb within layouts/application
329
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 345)
330
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms | Allocations: 2550)
331
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:29:46 +0100
332
+ Processing by PostsController#index as HTML
333
+ Rendering themes/test/posts/index.html.erb within layouts/application
334
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
335
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
336
+ Rendering themes/test/notifier/wellcome_message.html.erb
337
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 90)
338
+ Notifier#wellcome_message: processed outbound mail in 7.1ms
339
+ Rendering notifier/good_bye_message.html.erb
340
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
341
+ Notifier#good_bye_message: processed outbound mail in 2.0ms
342
+  (1.2ms) SELECT sqlite_version(*)
343
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:37:47 +0100
344
+ Processing by PostsController#index as HTML
345
+ Rendering themes/test/posts/index.html.erb within layouts/application
346
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 345)
347
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms | Allocations: 2550)
348
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:37:47 +0100
349
+ Processing by PostsController#index as HTML
350
+ Rendering themes/test/posts/index.html.erb within layouts/application
351
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
352
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
353
+ Rendering themes/test/notifier/wellcome_message.html.erb
354
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.8ms | Allocations: 85)
355
+ Notifier#wellcome_message: processed outbound mail in 6.0ms
356
+ Rendering notifier/good_bye_message.html.erb
357
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
358
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
359
+  (1.2ms) SELECT sqlite_version(*)
360
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:12 +0100
361
+ Processing by PostsController#index as HTML
362
+ Rendering themes/test/posts/index.html.erb within layouts/application
363
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 345)
364
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2556)
365
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:12 +0100
366
+ Processing by PostsController#index as HTML
367
+ Rendering themes/test/posts/index.html.erb within layouts/application
368
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
369
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
370
+ Rendering themes/test/notifier/wellcome_message.html.erb
371
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 85)
372
+ Notifier#wellcome_message: processed outbound mail in 5.2ms
373
+ Rendering notifier/good_bye_message.html.erb
374
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
375
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
376
+  (1.2ms) SELECT sqlite_version(*)
377
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:27 +0100
378
+ Processing by PostsController#index as HTML
379
+ Rendering themes/test/posts/index.html.erb within layouts/application
380
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 345)
381
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms | Allocations: 2556)
382
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:27 +0100
383
+ Processing by PostsController#index as HTML
384
+ Rendering themes/test/posts/index.html.erb within layouts/application
385
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
386
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
387
+ Rendering themes/test/notifier/wellcome_message.html.erb
388
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
389
+ Notifier#wellcome_message: processed outbound mail in 5.1ms
390
+ Rendering notifier/good_bye_message.html.erb
391
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
392
+ Notifier#good_bye_message: processed outbound mail in 2.0ms
393
+  (2.6ms) SELECT sqlite_version(*)
394
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:00 +0100
395
+ Processing by PostsController#index as HTML
396
+ Rendering themes/test/posts/index.html.erb within layouts/application
397
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.2ms | Allocations: 345)
398
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms | Allocations: 2556)
399
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:00 +0100
400
+ Processing by PostsController#index as HTML
401
+ Rendering themes/test/posts/index.html.erb within layouts/application
402
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
403
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
404
+ Rendering themes/test/notifier/wellcome_message.html.erb
405
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
406
+ Notifier#wellcome_message: processed outbound mail in 4.3ms
407
+ Rendering notifier/good_bye_message.html.erb
408
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
409
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
410
+  (2.8ms) SELECT sqlite_version(*)
411
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:00 +0100
412
+ Processing by PostsController#index as HTML
413
+ Rendering themes/test/posts/index.html.erb within layouts/application
414
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 3.4ms | Allocations: 345)
415
+ Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms | Allocations: 2556)
416
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:00 +0100
417
+ Processing by PostsController#index as HTML
418
+ Rendering themes/test/posts/index.html.erb within layouts/application
419
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
420
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
421
+ Rendering themes/test/notifier/wellcome_message.html.erb
422
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.3ms | Allocations: 85)
423
+ Notifier#wellcome_message: processed outbound mail in 6.5ms
424
+ Rendering notifier/good_bye_message.html.erb
425
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.3ms | Allocations: 85)
426
+ Notifier#good_bye_message: processed outbound mail in 2.9ms
427
+  (1.5ms) SELECT sqlite_version(*)
428
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:08 +0100
429
+ Processing by PostsController#index as HTML
430
+ Rendering themes/test/posts/index.html.erb within layouts/application
431
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 345)
432
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms | Allocations: 2557)
433
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:08 +0100
434
+ Processing by PostsController#index as HTML
435
+ Rendering themes/test/posts/index.html.erb within layouts/application
436
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
437
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 320)
438
+ Rendering themes/test/notifier/wellcome_message.html.erb
439
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.5ms | Allocations: 85)
440
+ Notifier#wellcome_message: processed outbound mail in 7.8ms
441
+ Rendering notifier/good_bye_message.html.erb
442
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.5ms | Allocations: 85)
443
+ Notifier#good_bye_message: processed outbound mail in 3.2ms
444
+  (1.2ms) SELECT sqlite_version(*)
445
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:41 +0100
446
+ Processing by PostsController#index as HTML
447
+ Rendering themes/test/posts/index.html.erb within layouts/application
448
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 345)
449
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms | Allocations: 2557)
450
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:41 +0100
451
+ Processing by PostsController#index as HTML
452
+ Rendering themes/test/posts/index.html.erb within layouts/application
453
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
454
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 320)
455
+ Rendering themes/test/notifier/wellcome_message.html.erb
456
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 85)
457
+ Notifier#wellcome_message: processed outbound mail in 7.5ms
458
+ Rendering notifier/good_bye_message.html.erb
459
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
460
+ Notifier#good_bye_message: processed outbound mail in 1.8ms
461
+  (1.2ms) SELECT sqlite_version(*)
462
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:12 +0100
463
+ Processing by PostsController#index as HTML
464
+ Rendering themes/test/posts/index.html.erb within layouts/application
465
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 345)
466
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms | Allocations: 2557)
467
+ Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:12 +0100
468
+ Processing by PostsController#index as HTML
469
+ Rendering themes/test/posts/index.html.erb within layouts/application
470
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
471
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
472
+ Rendering themes/test/notifier/wellcome_message.html.erb
473
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
474
+ Notifier#wellcome_message: processed outbound mail in 5.3ms
475
+ Rendering notifier/good_bye_message.html.erb
476
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 85)
477
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
478
+  (2.7ms) SELECT sqlite_version(*)
479
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:52 +0100
480
+ Processing by PostsController#index as HTML
481
+ Rendering themes/test/posts/index.html.erb within layouts/application
482
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 3.4ms | Allocations: 345)
483
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms | Allocations: 2556)
484
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:52 +0100
485
+ Processing by PostsController#index as HTML
486
+ Rendering themes/test/posts/index.html.erb within layouts/application
487
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
488
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
489
+ Rendering themes/test/notifier/wellcome_message.html.erb
490
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.4ms | Allocations: 85)
491
+ Notifier#wellcome_message: processed outbound mail in 7.2ms
492
+ Rendering notifier/good_bye_message.html.erb
493
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.5ms | Allocations: 85)
494
+ Notifier#good_bye_message: processed outbound mail in 3.8ms
495
+  (2.7ms) SELECT sqlite_version(*)
496
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:47 +0100
497
+ Processing by PostsController#index as HTML
498
+ Rendering themes/test/posts/index.html.erb within layouts/application
499
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.2ms | Allocations: 345)
500
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms | Allocations: 2557)
501
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:47 +0100
502
+ Processing by PostsController#index as HTML
503
+ Rendering themes/test/posts/index.html.erb within layouts/application
504
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
505
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
506
+ Rendering themes/test/notifier/wellcome_message.html.erb
507
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 85)
508
+ Notifier#wellcome_message: processed outbound mail in 4.9ms
509
+ Rendering notifier/good_bye_message.html.erb
510
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 85)
511
+ Notifier#good_bye_message: processed outbound mail in 1.7ms
512
+  (1.6ms) SELECT sqlite_version(*)
513
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:22 +0100
514
+ Processing by PostsController#index as HTML
515
+ Rendering themes/test/posts/index.html.erb within layouts/application
516
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 368)
517
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms | Allocations: 2642)
518
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:22 +0100
519
+ Processing by PostsController#index as HTML
520
+ Rendering themes/test/posts/index.html.erb within layouts/application
521
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
522
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
523
+ Rendering themes/test/notifier/wellcome_message.html.erb
524
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
525
+ Notifier#wellcome_message: processed outbound mail in 5.8ms
526
+ Rendering notifier/good_bye_message.html.erb
527
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
528
+ Notifier#good_bye_message: processed outbound mail in 2.1ms
529
+  (1.4ms) SELECT sqlite_version(*)
530
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:31 +0100
531
+ Processing by PostsController#index as HTML
532
+ Rendering themes/test/posts/index.html.erb within layouts/application
533
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 368)
534
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms | Allocations: 2643)
535
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:31 +0100
536
+ Processing by PostsController#index as HTML
537
+ Rendering themes/test/posts/index.html.erb within layouts/application
538
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
539
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
540
+ Rendering themes/test/notifier/wellcome_message.html.erb
541
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
542
+ Notifier#wellcome_message: processed outbound mail in 5.2ms
543
+ Rendering notifier/good_bye_message.html.erb
544
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.2ms | Allocations: 87)
545
+ Notifier#good_bye_message: processed outbound mail in 2.5ms
546
+  (1.5ms) SELECT sqlite_version(*)
547
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:43 +0100
548
+ Processing by PostsController#index as HTML
549
+ Rendering themes/test/posts/index.html.erb within layouts/application
550
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 1.3ms | Allocations: 368)
551
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms | Allocations: 2642)
552
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:43 +0100
553
+ Processing by PostsController#index as HTML
554
+ Rendering themes/test/posts/index.html.erb within layouts/application
555
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
556
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
557
+ Rendering themes/test/notifier/wellcome_message.html.erb
558
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
559
+ Notifier#wellcome_message: processed outbound mail in 10.4ms
560
+ Rendering notifier/good_bye_message.html.erb
561
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
562
+ Notifier#good_bye_message: processed outbound mail in 2.3ms
563
+  (1.3ms) SELECT sqlite_version(*)
564
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:18 +0100
565
+ Processing by PostsController#index as HTML
566
+ Rendering themes/test/posts/index.html.erb within layouts/application
567
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 368)
568
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms | Allocations: 2642)
569
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:18 +0100
570
+ Processing by PostsController#index as HTML
571
+ Rendering themes/test/posts/index.html.erb within layouts/application
572
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
573
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 320)
574
+ Rendering themes/test/notifier/wellcome_message.html.erb
575
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
576
+ Notifier#wellcome_message: processed outbound mail in 5.9ms
577
+ Rendering notifier/good_bye_message.html.erb
578
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
579
+ Notifier#good_bye_message: processed outbound mail in 2.6ms
580
+  (3.3ms) SELECT sqlite_version(*)
581
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:17 +0100
582
+ Processing by PostsController#index as HTML
583
+ Rendering themes/test/posts/index.html.erb within layouts/application
584
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.4ms | Allocations: 368)
585
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms | Allocations: 2643)
586
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:17 +0100
587
+ Processing by PostsController#index as HTML
588
+ Rendering themes/test/posts/index.html.erb within layouts/application
589
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
590
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 320)
591
+ Rendering themes/test/notifier/wellcome_message.html.erb
592
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.3ms | Allocations: 87)
593
+ Notifier#wellcome_message: processed outbound mail in 7.3ms
594
+ Rendering notifier/good_bye_message.html.erb
595
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
596
+ Notifier#good_bye_message: processed outbound mail in 2.8ms
597
+  (3.3ms) SELECT sqlite_version(*)
598
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:11 +0100
599
+ Processing by PostsController#index as HTML
600
+ Rendering themes/test/posts/index.html.erb within layouts/application
601
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 2.3ms | Allocations: 368)
602
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms | Allocations: 2643)
603
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:11 +0100
604
+ Processing by PostsController#index as HTML
605
+ Rendering themes/test/posts/index.html.erb within layouts/application
606
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
607
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 320)
608
+ Rendering themes/test/notifier/wellcome_message.html.erb
609
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 0.4ms | Allocations: 87)
610
+ Notifier#wellcome_message: processed outbound mail in 10.9ms
611
+ Rendering notifier/good_bye_message.html.erb
612
+ Rendered notifier/good_bye_message.html.erb (Duration: 0.3ms | Allocations: 87)
613
+ Notifier#good_bye_message: processed outbound mail in 2.7ms
614
+  (2.9ms) SELECT sqlite_version(*)
615
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:26 +0100
616
+ Processing by PostsController#index as HTML
617
+ Rendering themes/test/posts/index.html.erb within layouts/application
618
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 4.2ms | Allocations: 368)
619
+ Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms | Allocations: 2642)
620
+ Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:26 +0100
621
+ Processing by PostsController#index as HTML
622
+ Rendering themes/test/posts/index.html.erb within layouts/application
623
+ Rendered themes/test/posts/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
624
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 320)
625
+ Rendering themes/test/notifier/wellcome_message.html.erb
626
+ Rendered themes/test/notifier/wellcome_message.html.erb (Duration: 1.4ms | Allocations: 87)
627
+ Notifier#wellcome_message: processed outbound mail in 7.9ms
628
+ Rendering notifier/good_bye_message.html.erb
629
+ Rendered notifier/good_bye_message.html.erb (Duration: 1.3ms | Allocations: 87)
630
+ Notifier#good_bye_message: processed outbound mail in 3.5ms