themes 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -13
- data/Rakefile +2 -1
- data/lib/themes.rb +6 -5
- data/lib/themes/engine.rb +1 -3
- data/lib/themes/loader.rb +3 -0
- data/lib/themes/version.rb +1 -1
- data/spec/dummy/log/test.log +0 -264
- data/spec/{dummy → dummy3}/README.rdoc +0 -0
- data/spec/{dummy → dummy3}/Rakefile +0 -0
- data/spec/dummy3/app +1 -0
- data/spec/{dummy → dummy3}/config.ru +0 -0
- data/spec/{dummy → dummy3}/config/application.rb +0 -0
- data/spec/{dummy → dummy3}/config/boot.rb +0 -0
- data/spec/{dummy → dummy3}/config/database.yml +0 -0
- data/spec/{dummy → dummy3}/config/environment.rb +0 -0
- data/spec/{dummy → dummy3}/config/environments/development.rb +0 -0
- data/spec/{dummy → dummy3}/config/environments/production.rb +0 -0
- data/spec/{dummy → dummy3}/config/environments/test.rb +0 -0
- data/spec/{dummy → dummy3}/config/initializers/backtrace_silencers.rb +0 -0
- data/spec/{dummy → dummy3}/config/initializers/inflections.rb +0 -0
- data/spec/{dummy → dummy3}/config/initializers/mime_types.rb +0 -0
- data/spec/{dummy → dummy3}/config/initializers/secret_token.rb +0 -0
- data/spec/{dummy → dummy3}/config/initializers/session_store.rb +0 -0
- data/spec/{dummy → dummy3}/config/initializers/wrap_parameters.rb +0 -0
- data/spec/{dummy → dummy3}/config/locales/en.yml +0 -0
- data/spec/{dummy → dummy3}/config/routes.rb +0 -0
- data/spec/{dummy → dummy3}/config/themes/test.rb +0 -0
- data/spec/dummy3/log/test.log +232 -0
- data/spec/{dummy → dummy3}/public/404.html +0 -0
- data/spec/{dummy → dummy3}/public/422.html +0 -0
- data/spec/{dummy → dummy3}/public/500.html +0 -0
- data/spec/{dummy → dummy3}/public/favicon.ico +0 -0
- data/spec/{dummy → dummy3}/script/rails +0 -0
- data/spec/dummy4/README.rdoc +261 -0
- data/spec/dummy4/Rakefile +7 -0
- data/spec/dummy4/app +1 -0
- data/spec/dummy4/bin/bundle +3 -0
- data/spec/dummy4/bin/rails +4 -0
- data/spec/dummy4/bin/rake +4 -0
- data/spec/dummy4/bin/setup +29 -0
- data/spec/dummy4/config.ru +4 -0
- data/spec/dummy4/config/application.rb +26 -0
- data/spec/dummy4/config/boot.rb +3 -0
- data/spec/dummy4/config/database.yml +26 -0
- data/spec/dummy4/config/environment.rb +5 -0
- data/spec/dummy4/config/environments/development.rb +41 -0
- data/spec/dummy4/config/environments/production.rb +79 -0
- data/spec/dummy4/config/environments/test.rb +42 -0
- data/spec/dummy4/config/initializers/assets.rb +11 -0
- data/spec/dummy4/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy4/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy4/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy4/config/initializers/inflections.rb +16 -0
- data/spec/dummy4/config/initializers/mime_types.rb +4 -0
- data/spec/dummy4/config/initializers/secret_token.rb +12 -0
- data/spec/dummy4/config/initializers/session_store.rb +3 -0
- data/spec/dummy4/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy4/config/locales/en.yml +23 -0
- data/spec/dummy4/config/routes.rb +57 -0
- data/spec/dummy4/config/secrets.yml +22 -0
- data/spec/dummy4/config/themes/test.rb +8 -0
- data/spec/dummy4/log/test.log +196 -0
- data/spec/dummy4/public/404.html +26 -0
- data/spec/dummy4/public/422.html +26 -0
- data/spec/dummy4/public/500.html +25 -0
- data/spec/dummy4/public/favicon.ico +0 -0
- data/spec/dummy4/script/rails +6 -0
- data/spec/dummy5/README.rdoc +261 -0
- data/spec/dummy5/Rakefile +7 -0
- data/spec/dummy5/app +1 -0
- data/spec/dummy5/bin/bundle +3 -0
- data/spec/dummy5/bin/rails +4 -0
- data/spec/dummy5/bin/rake +4 -0
- data/spec/dummy5/bin/setup +36 -0
- data/spec/dummy5/bin/update +31 -0
- data/spec/dummy5/bin/yarn +11 -0
- data/spec/dummy5/config.ru +4 -0
- data/spec/dummy5/config/application.rb +19 -0
- data/spec/dummy5/config/boot.rb +4 -0
- data/spec/dummy5/config/cable.yml +10 -0
- data/spec/dummy5/config/database.yml +26 -0
- data/spec/dummy5/config/environment.rb +5 -0
- data/spec/dummy5/config/environments/development.rb +61 -0
- data/spec/dummy5/config/environments/production.rb +94 -0
- data/spec/dummy5/config/environments/test.rb +46 -0
- data/spec/dummy5/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy5/config/initializers/assets.rb +14 -0
- data/spec/dummy5/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy5/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy5/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy5/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy5/config/initializers/inflections.rb +16 -0
- data/spec/dummy5/config/initializers/mime_types.rb +4 -0
- data/spec/dummy5/config/initializers/new_framework_defaults_5_2.rb +38 -0
- data/spec/dummy5/config/initializers/secret_token.rb +12 -0
- data/spec/dummy5/config/initializers/session_store.rb +3 -0
- data/spec/dummy5/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy5/config/locales/en.yml +33 -0
- data/spec/dummy5/config/routes.rb +4 -0
- data/spec/dummy5/config/secrets.yml +22 -0
- data/spec/dummy5/config/storage.yml +34 -0
- data/spec/dummy5/config/themes/test.rb +8 -0
- data/spec/dummy5/log/test.log +336 -0
- data/spec/dummy5/public/404.html +26 -0
- data/spec/dummy5/public/422.html +26 -0
- data/spec/dummy5/public/500.html +25 -0
- data/spec/dummy5/public/favicon.ico +0 -0
- data/spec/dummy5/script/rails +6 -0
- data/spec/dummy6/README.rdoc +261 -0
- data/spec/dummy6/Rakefile +7 -0
- data/spec/dummy6/app +1 -0
- data/spec/dummy6/bin/bundle +3 -0
- data/spec/dummy6/bin/rails +4 -0
- data/spec/dummy6/bin/rake +4 -0
- data/spec/dummy6/bin/setup +36 -0
- data/spec/dummy6/bin/update +31 -0
- data/spec/dummy6/bin/yarn +11 -0
- data/spec/dummy6/config.ru +4 -0
- data/spec/dummy6/config/application.rb +19 -0
- data/spec/dummy6/config/boot.rb +3 -0
- data/spec/dummy6/config/cable.yml +10 -0
- data/spec/dummy6/config/database.yml +26 -0
- data/spec/dummy6/config/environment.rb +5 -0
- data/spec/dummy6/config/environments/development.rb +62 -0
- data/spec/dummy6/config/environments/production.rb +112 -0
- data/spec/dummy6/config/environments/test.rb +48 -0
- data/spec/dummy6/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy6/config/initializers/assets.rb +14 -0
- data/spec/dummy6/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy6/config/initializers/content_security_policy.rb +30 -0
- data/spec/dummy6/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy6/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy6/config/initializers/inflections.rb +16 -0
- data/spec/dummy6/config/initializers/mime_types.rb +4 -0
- data/spec/dummy6/config/initializers/new_framework_defaults_5_2.rb +38 -0
- data/spec/dummy6/config/initializers/new_framework_defaults_6_0.rb +45 -0
- data/spec/dummy6/config/initializers/secret_token.rb +12 -0
- data/spec/dummy6/config/initializers/session_store.rb +3 -0
- data/spec/dummy6/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy6/config/locales/en.yml +33 -0
- data/spec/dummy6/config/routes.rb +3 -0
- data/spec/dummy6/config/secrets.yml +22 -0
- data/spec/dummy6/config/storage.yml +34 -0
- data/spec/dummy6/config/themes/test.rb +8 -0
- data/spec/dummy6/log/development.log +0 -0
- data/spec/dummy6/log/test.log +630 -0
- data/spec/dummy6/public/404.html +26 -0
- data/spec/dummy6/public/422.html +26 -0
- data/spec/dummy6/public/500.html +25 -0
- data/spec/dummy6/public/favicon.ico +0 -0
- data/spec/dummy6/script/rails +6 -0
- data/spec/dummy_app_folder/assets/config/manifest.js +3 -0
- data/spec/{dummy/app → dummy_app_folder}/assets/javascripts/application.js +0 -0
- data/spec/{dummy/app → dummy_app_folder}/assets/stylesheets/application.css +0 -0
- data/spec/{dummy/app → dummy_app_folder}/controllers/application_controller.rb +0 -0
- data/spec/{dummy/app → dummy_app_folder}/controllers/posts_controller.rb +0 -0
- data/spec/{dummy/app → dummy_app_folder}/helpers/application_helper.rb +0 -0
- data/spec/{dummy/app → dummy_app_folder}/mailers/notifier.rb +0 -0
- data/spec/dummy_app_folder/views/layouts/application.html.erb +6 -0
- data/spec/{dummy/app → dummy_app_folder}/views/notifier/good_bye_message.html.erb +0 -0
- data/spec/{dummy/app → dummy_app_folder}/views/notifier/wellcome_message.html.erb +0 -0
- data/spec/{dummy/app → dummy_app_folder}/views/posts/index.html.erb +0 -0
- data/spec/dummy_app_folder/views/themes/test/layouts/application.html.erb +7 -0
- data/spec/{dummy/app → dummy_app_folder}/views/themes/test/notifier/wellcome_message.html.erb +0 -0
- data/spec/{dummy/app → dummy_app_folder}/views/themes/test/posts/index.html.erb +0 -0
- data/spec/{controllers → features}/posts_controller_spec.rb +5 -9
- data/spec/generators/new_theme_generator_spec.rb +4 -4
- data/spec/spec_helper.rb +8 -7
- data/spec/themes_engine_spec.rb +5 -5
- metadata +452 -111
- data/spec/dummy/app/views/layouts/application.html.erb +0 -4
- data/spec/dummy/app/views/themes/test/layouts/application.html.erb +0 -4
|
@@ -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 http://guides.rubyonrails.org/i18n.html.
|
|
31
|
+
|
|
32
|
+
en:
|
|
33
|
+
hello: "Hello world"
|
|
@@ -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,336 @@
|
|
|
1
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:34 +0100
|
|
2
|
+
Processing by PostsController#index as HTML
|
|
3
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
4
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (1.0ms)
|
|
5
|
+
Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
|
6
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:24:34 +0100
|
|
7
|
+
Processing by PostsController#index as HTML
|
|
8
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
9
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
10
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
11
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
12
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
13
|
+
Notifier#wellcome_message: processed outbound mail in 148.3ms
|
|
14
|
+
Rendering notifier/good_bye_message.html.erb
|
|
15
|
+
Rendered notifier/good_bye_message.html.erb (0.3ms)
|
|
16
|
+
Notifier#good_bye_message: processed outbound mail in 5.5ms
|
|
17
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:35 +0100
|
|
18
|
+
Processing by PostsController#index as HTML
|
|
19
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
20
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
|
|
21
|
+
Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
|
22
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:28:35 +0100
|
|
23
|
+
Processing by PostsController#index as HTML
|
|
24
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
25
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
26
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
27
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
28
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
29
|
+
Notifier#wellcome_message: processed outbound mail in 157.8ms
|
|
30
|
+
Rendering notifier/good_bye_message.html.erb
|
|
31
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
32
|
+
Notifier#good_bye_message: processed outbound mail in 3.8ms
|
|
33
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:30 +0100
|
|
34
|
+
Processing by PostsController#index as HTML
|
|
35
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
36
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
|
|
37
|
+
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
|
38
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:39:30 +0100
|
|
39
|
+
Processing by PostsController#index as HTML
|
|
40
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
41
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
42
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
43
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
44
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
45
|
+
Notifier#wellcome_message: processed outbound mail in 155.5ms
|
|
46
|
+
Rendering notifier/good_bye_message.html.erb
|
|
47
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
48
|
+
Notifier#good_bye_message: processed outbound mail in 4.4ms
|
|
49
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:04 +0100
|
|
50
|
+
Processing by PostsController#index as HTML
|
|
51
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
52
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
53
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
54
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 16:52:04 +0100
|
|
55
|
+
Processing by PostsController#index as HTML
|
|
56
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
57
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
58
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
59
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
60
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.2ms)
|
|
61
|
+
Notifier#wellcome_message: processed outbound mail in 144.8ms
|
|
62
|
+
Rendering notifier/good_bye_message.html.erb
|
|
63
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
64
|
+
Notifier#good_bye_message: processed outbound mail in 4.3ms
|
|
65
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:05 +0100
|
|
66
|
+
Processing by PostsController#index as HTML
|
|
67
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
68
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (2.4ms)
|
|
69
|
+
Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.0ms)
|
|
70
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:11:05 +0100
|
|
71
|
+
Processing by PostsController#index as HTML
|
|
72
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
73
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
74
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
75
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
76
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
77
|
+
Notifier#wellcome_message: processed outbound mail in 145.1ms
|
|
78
|
+
Rendering notifier/good_bye_message.html.erb
|
|
79
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
80
|
+
Notifier#good_bye_message: processed outbound mail in 4.2ms
|
|
81
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:12 +0100
|
|
82
|
+
Processing by PostsController#index as HTML
|
|
83
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
84
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
85
|
+
Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
|
86
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:15:12 +0100
|
|
87
|
+
Processing by PostsController#index as HTML
|
|
88
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
89
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
90
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
91
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
92
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
93
|
+
Notifier#wellcome_message: processed outbound mail in 152.0ms
|
|
94
|
+
Rendering notifier/good_bye_message.html.erb
|
|
95
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
96
|
+
Notifier#good_bye_message: processed outbound mail in 4.1ms
|
|
97
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:44 +0100
|
|
98
|
+
Processing by PostsController#index as HTML
|
|
99
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
100
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
101
|
+
Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
|
102
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:17:45 +0100
|
|
103
|
+
Processing by PostsController#index as HTML
|
|
104
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
105
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
106
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
|
107
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
108
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
109
|
+
Notifier#wellcome_message: processed outbound mail in 149.2ms
|
|
110
|
+
Rendering notifier/good_bye_message.html.erb
|
|
111
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
112
|
+
Notifier#good_bye_message: processed outbound mail in 4.0ms
|
|
113
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:16 +0100
|
|
114
|
+
Processing by PostsController#index as HTML
|
|
115
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
116
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
117
|
+
Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
|
118
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-02 17:25:16 +0100
|
|
119
|
+
Processing by PostsController#index as HTML
|
|
120
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
121
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
122
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
123
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
124
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
125
|
+
Notifier#wellcome_message: processed outbound mail in 151.0ms
|
|
126
|
+
Rendering notifier/good_bye_message.html.erb
|
|
127
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
128
|
+
Notifier#good_bye_message: processed outbound mail in 4.2ms
|
|
129
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:57 +0100
|
|
130
|
+
Processing by PostsController#index as HTML
|
|
131
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
132
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
|
|
133
|
+
Completed 200 OK in 16ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
|
134
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:32:57 +0100
|
|
135
|
+
Processing by PostsController#index as HTML
|
|
136
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
137
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
138
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
139
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
140
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
141
|
+
Notifier#wellcome_message: processed outbound mail in 154.1ms
|
|
142
|
+
Rendering notifier/good_bye_message.html.erb
|
|
143
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
144
|
+
Notifier#good_bye_message: processed outbound mail in 4.2ms
|
|
145
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:52 +0100
|
|
146
|
+
Processing by PostsController#index as HTML
|
|
147
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
148
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (1.8ms)
|
|
149
|
+
Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.0ms)
|
|
150
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:41:52 +0100
|
|
151
|
+
Processing by PostsController#index as HTML
|
|
152
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
153
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
154
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
155
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
156
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
157
|
+
Notifier#wellcome_message: processed outbound mail in 152.6ms
|
|
158
|
+
Rendering notifier/good_bye_message.html.erb
|
|
159
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
160
|
+
Notifier#good_bye_message: processed outbound mail in 4.3ms
|
|
161
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:55:29 +0100
|
|
162
|
+
Processing by PostsController#index as HTML
|
|
163
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
164
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.7ms)
|
|
165
|
+
Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
|
166
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:55:29 +0100
|
|
167
|
+
Processing by PostsController#index as HTML
|
|
168
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
169
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
170
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
171
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
172
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
173
|
+
Notifier#wellcome_message: processed outbound mail in 146.4ms
|
|
174
|
+
Rendering notifier/good_bye_message.html.erb
|
|
175
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
176
|
+
Notifier#good_bye_message: processed outbound mail in 4.0ms
|
|
177
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:35 +0100
|
|
178
|
+
Processing by PostsController#index as HTML
|
|
179
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
180
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
181
|
+
Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
|
182
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 07:59:35 +0100
|
|
183
|
+
Processing by PostsController#index as HTML
|
|
184
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
185
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
186
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
187
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
188
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
189
|
+
Notifier#wellcome_message: processed outbound mail in 153.0ms
|
|
190
|
+
Rendering notifier/good_bye_message.html.erb
|
|
191
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
192
|
+
Notifier#good_bye_message: processed outbound mail in 4.4ms
|
|
193
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:46 +0100
|
|
194
|
+
Processing by PostsController#index as HTML
|
|
195
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
196
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
197
|
+
Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
|
198
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:01:47 +0100
|
|
199
|
+
Processing by PostsController#index as HTML
|
|
200
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
201
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
202
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
203
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
204
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
205
|
+
Notifier#wellcome_message: processed outbound mail in 157.7ms
|
|
206
|
+
Rendering notifier/good_bye_message.html.erb
|
|
207
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
208
|
+
Notifier#good_bye_message: processed outbound mail in 4.3ms
|
|
209
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:22 +0100
|
|
210
|
+
Processing by PostsController#index as HTML
|
|
211
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
212
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
213
|
+
Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
|
214
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:04:22 +0100
|
|
215
|
+
Processing by PostsController#index as HTML
|
|
216
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
217
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
218
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
219
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
220
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
221
|
+
Notifier#wellcome_message: processed outbound mail in 149.3ms
|
|
222
|
+
Rendering notifier/good_bye_message.html.erb
|
|
223
|
+
Rendered notifier/good_bye_message.html.erb (0.3ms)
|
|
224
|
+
Notifier#good_bye_message: processed outbound mail in 4.6ms
|
|
225
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:22 +0100
|
|
226
|
+
Processing by PostsController#index as HTML
|
|
227
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
228
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
|
|
229
|
+
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
|
230
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:16:22 +0100
|
|
231
|
+
Processing by PostsController#index as HTML
|
|
232
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
233
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
234
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
235
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
236
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
|
|
237
|
+
Notifier#wellcome_message: processed outbound mail in 148.6ms
|
|
238
|
+
Rendering notifier/good_bye_message.html.erb
|
|
239
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
240
|
+
Notifier#good_bye_message: processed outbound mail in 4.3ms
|
|
241
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:47 +0100
|
|
242
|
+
Processing by PostsController#index as HTML
|
|
243
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
244
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
245
|
+
Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
246
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:40:47 +0100
|
|
247
|
+
Processing by PostsController#index as HTML
|
|
248
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
249
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
250
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
251
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
252
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.4ms)
|
|
253
|
+
Notifier#wellcome_message: processed outbound mail in 218.5ms
|
|
254
|
+
Rendering notifier/good_bye_message.html.erb
|
|
255
|
+
Rendered notifier/good_bye_message.html.erb (0.3ms)
|
|
256
|
+
Notifier#good_bye_message: processed outbound mail in 4.4ms
|
|
257
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:15 +0100
|
|
258
|
+
Processing by PostsController#index as HTML
|
|
259
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
260
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.9ms)
|
|
261
|
+
Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
|
262
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:48:15 +0100
|
|
263
|
+
Processing by PostsController#index as HTML
|
|
264
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
265
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
266
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
|
267
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
268
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
269
|
+
Notifier#wellcome_message: processed outbound mail in 173.2ms
|
|
270
|
+
Rendering notifier/good_bye_message.html.erb
|
|
271
|
+
Rendered notifier/good_bye_message.html.erb (0.3ms)
|
|
272
|
+
Notifier#good_bye_message: processed outbound mail in 4.7ms
|
|
273
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:19 +0100
|
|
274
|
+
Processing by PostsController#index as HTML
|
|
275
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
276
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (1.8ms)
|
|
277
|
+
Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
|
278
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:19 +0100
|
|
279
|
+
Processing by PostsController#index as HTML
|
|
280
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
281
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
282
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
283
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
284
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
285
|
+
Notifier#wellcome_message: processed outbound mail in 151.4ms
|
|
286
|
+
Rendering notifier/good_bye_message.html.erb
|
|
287
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
288
|
+
Notifier#good_bye_message: processed outbound mail in 4.0ms
|
|
289
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:23 +0100
|
|
290
|
+
Processing by PostsController#index as HTML
|
|
291
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
292
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.8ms)
|
|
293
|
+
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
|
294
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 08:54:23 +0100
|
|
295
|
+
Processing by PostsController#index as HTML
|
|
296
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
297
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
298
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
299
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
300
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
301
|
+
Notifier#wellcome_message: processed outbound mail in 167.9ms
|
|
302
|
+
Rendering notifier/good_bye_message.html.erb
|
|
303
|
+
Rendered notifier/good_bye_message.html.erb (0.3ms)
|
|
304
|
+
Notifier#good_bye_message: processed outbound mail in 4.5ms
|
|
305
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:32 +0100
|
|
306
|
+
Processing by PostsController#index as HTML
|
|
307
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
308
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (2.2ms)
|
|
309
|
+
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
|
310
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:32 +0100
|
|
311
|
+
Processing by PostsController#index as HTML
|
|
312
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
313
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
314
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
315
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
316
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
317
|
+
Notifier#wellcome_message: processed outbound mail in 152.4ms
|
|
318
|
+
Rendering notifier/good_bye_message.html.erb
|
|
319
|
+
Rendered notifier/good_bye_message.html.erb (0.2ms)
|
|
320
|
+
Notifier#good_bye_message: processed outbound mail in 4.4ms
|
|
321
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:40 +0100
|
|
322
|
+
Processing by PostsController#index as HTML
|
|
323
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
324
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (2.1ms)
|
|
325
|
+
Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.0ms)
|
|
326
|
+
Started GET "/posts" for 127.0.0.1 at 2020-01-03 09:32:40 +0100
|
|
327
|
+
Processing by PostsController#index as HTML
|
|
328
|
+
Rendering themes/test/posts/index.html.erb within layouts/application
|
|
329
|
+
Rendered themes/test/posts/index.html.erb within layouts/application (0.0ms)
|
|
330
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
331
|
+
Rendering themes/test/notifier/wellcome_message.html.erb
|
|
332
|
+
Rendered themes/test/notifier/wellcome_message.html.erb (0.3ms)
|
|
333
|
+
Notifier#wellcome_message: processed outbound mail in 280.6ms
|
|
334
|
+
Rendering notifier/good_bye_message.html.erb
|
|
335
|
+
Rendered notifier/good_bye_message.html.erb (0.3ms)
|
|
336
|
+
Notifier#good_bye_message: processed outbound mail in 4.6ms
|