rails_web_cache 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +2 -0
  3. data/.gitignore +21 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +11 -0
  6. data/Gemfile +15 -0
  7. data/Gemfile.lock +178 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +43 -0
  10. data/Rakefile +28 -0
  11. data/app/assets/config/rails_web_cache_manifest.js +2 -0
  12. data/app/assets/images/rails_web_cache/.keep +0 -0
  13. data/app/assets/javascripts/rails_web_cache/application.js +17 -0
  14. data/app/assets/javascripts/rails_web_cache/bootstrap.js +6 -0
  15. data/app/assets/javascripts/rails_web_cache/jquery.js +2 -0
  16. data/app/assets/javascripts/rails_web_cache/keys.js +22 -0
  17. data/app/assets/javascripts/rails_web_cache/popper.js +5 -0
  18. data/app/assets/stylesheets/rails_web_cache/application.css +14 -0
  19. data/app/assets/stylesheets/rails_web_cache/bootstrap.css +7 -0
  20. data/app/controllers/rails_web_cache/application_controller.rb +7 -0
  21. data/app/controllers/rails_web_cache/keys_controller.rb +84 -0
  22. data/app/helpers/rails_web_cache/keys_helper.rb +18 -0
  23. data/app/views/layouts/rails_web_cache/application.html.erb +16 -0
  24. data/app/views/rails_web_cache/keys/index.html.erb +95 -0
  25. data/app/views/rails_web_cache/keys/show.html.erb +26 -0
  26. data/app/views/rails_web_cache/shared/_header.html.erb +17 -0
  27. data/bin/rails +20 -0
  28. data/config/routes.rb +11 -0
  29. data/lib/rails_web_cache/base.rb +44 -0
  30. data/lib/rails_web_cache/engine.rb +21 -0
  31. data/lib/rails_web_cache/entry.rb +19 -0
  32. data/lib/rails_web_cache/file_store.rb +9 -0
  33. data/lib/rails_web_cache/memory_store.rb +9 -0
  34. data/lib/rails_web_cache/redis_cache_store.rb +23 -0
  35. data/lib/rails_web_cache/version.rb +5 -0
  36. data/lib/rails_web_cache.rb +46 -0
  37. data/rails_web_cache.gemspec +39 -0
  38. data/spec/controllers/keys_controller_spec.rb +41 -0
  39. data/spec/dummy/Rakefile +6 -0
  40. data/spec/dummy/app/assets/config/manifest.js +3 -0
  41. data/spec/dummy/app/assets/javascripts/application.js +14 -0
  42. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  43. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  44. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  45. data/spec/dummy/bin/bundle +5 -0
  46. data/spec/dummy/bin/rails +6 -0
  47. data/spec/dummy/bin/rake +6 -0
  48. data/spec/dummy/bin/setup +38 -0
  49. data/spec/dummy/bin/update +33 -0
  50. data/spec/dummy/bin/yarn +13 -0
  51. data/spec/dummy/config/application.rb +23 -0
  52. data/spec/dummy/config/boot.rb +7 -0
  53. data/spec/dummy/config/environment.rb +7 -0
  54. data/spec/dummy/config/environments/development.rb +47 -0
  55. data/spec/dummy/config/environments/production.rb +74 -0
  56. data/spec/dummy/config/environments/test.rb +40 -0
  57. data/spec/dummy/config/initializers/application_controller_renderer.rb +10 -0
  58. data/spec/dummy/config/initializers/assets.rb +14 -0
  59. data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
  60. data/spec/dummy/config/initializers/content_security_policy.rb +26 -0
  61. data/spec/dummy/config/initializers/cookies_serializer.rb +7 -0
  62. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  63. data/spec/dummy/config/initializers/inflections.rb +18 -0
  64. data/spec/dummy/config/initializers/mime_types.rb +6 -0
  65. data/spec/dummy/config/initializers/wrap_parameters.rb +11 -0
  66. data/spec/dummy/config/locales/en.yml +33 -0
  67. data/spec/dummy/config/puma.rb +39 -0
  68. data/spec/dummy/config/routes.rb +5 -0
  69. data/spec/dummy/config/spring.rb +8 -0
  70. data/spec/dummy/config.ru +7 -0
  71. data/spec/dummy/log/development.log +630 -0
  72. data/spec/dummy/log/test.log +1791 -0
  73. data/spec/dummy/public/404.html +67 -0
  74. data/spec/dummy/public/422.html +67 -0
  75. data/spec/dummy/public/500.html +66 -0
  76. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  77. data/spec/dummy/public/apple-touch-icon.png +0 -0
  78. data/spec/dummy/public/favicon.ico +0 -0
  79. data/spec/dummy/tmp/development_secret.txt +1 -0
  80. data/spec/helpers/keys_helper_spec.rb +28 -0
  81. data/spec/rails_helper.rb +50 -0
  82. data/spec/rails_web_cache_spec.rb +37 -0
  83. data/spec/routing/keys_controller_spec.rb +31 -0
  84. data/spec/spec_helper.rb +101 -0
  85. metadata +237 -0
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # ActiveSupport::Reloader.to_prepare do
6
+ # ApplicationController.renderer.defaults.merge!(
7
+ # http_host: 'example.org',
8
+ # https: false
9
+ # )
10
+ # end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # Version of your assets, change this if you want to expire all your assets.
6
+ Rails.application.config.assets.version = '1.0'
7
+
8
+ # Add additional assets to the asset load path.
9
+ # Rails.application.config.assets.paths << Emoji.images_path
10
+
11
+ # Precompile additional assets.
12
+ # application.js, application.css, and all non-JS/CSS in the app/assets
13
+ # folder are already added.
14
+ # Rails.application.config.assets.precompile += %w( admin.js admin.css )
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
5
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
6
+
7
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
8
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+ # Be sure to restart your server when you modify this file.
3
+
4
+ # Define an application-wide content security policy
5
+ # For further information see the following documentation
6
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
7
+
8
+ # Rails.application.config.content_security_policy do |policy|
9
+ # policy.default_src :self, :https
10
+ # policy.font_src :self, :https, :data
11
+ # policy.img_src :self, :https, :data
12
+ # policy.object_src :none
13
+ # policy.script_src :self, :https
14
+ # policy.style_src :self, :https
15
+
16
+ # # Specify URI for violation reports
17
+ # # policy.report_uri "/csp-violation-report-endpoint"
18
+ # end
19
+
20
+ # If you are using UJS then enable automatic nonce generation
21
+ # Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
22
+
23
+ # Report CSP violations to a specified URI
24
+ # For further information see the following documentation:
25
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
26
+ # Rails.application.config.content_security_policy_report_only = true
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # Specify a serializer for the signed and encrypted cookie jars.
6
+ # Valid options are :json, :marshal, and :hybrid.
7
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # Configure sensitive parameters which will be filtered from the log file.
6
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # Add new inflection rules using the following format. Inflections
6
+ # are locale specific, and you may define rules for as many different
7
+ # locales as you wish. All of these examples are active by default:
8
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
9
+ # inflect.plural /^(ox)$/i, '\1en'
10
+ # inflect.singular /^(ox)en/i, '\1'
11
+ # inflect.irregular 'person', 'people'
12
+ # inflect.uncountable %w( fish sheep )
13
+ # end
14
+
15
+ # These inflection rules are supported but not enabled by default:
16
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
17
+ # inflect.acronym 'RESTful'
18
+ # end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # Add new mime types for use in respond_to blocks:
6
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Be sure to restart your server when you modify this file.
4
+
5
+ # This file contains settings for ActionController::ParamsWrapper which
6
+ # is enabled by default.
7
+
8
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
9
+ ActiveSupport.on_load(:action_controller) do
10
+ wrap_parameters format: [:json]
11
+ 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,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Puma can serve each request in a thread from an internal thread pool.
4
+ # The `threads` method setting takes two numbers: a minimum and maximum.
5
+ # Any libraries that use thread pools should be configured to match
6
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
7
+ # and maximum; this matches the default thread size of Active Record.
8
+ #
9
+ threads_count = ENV.fetch('RAILS_MAX_THREADS') { 5 }
10
+ threads threads_count, threads_count
11
+
12
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
13
+ #
14
+ port ENV.fetch('PORT') { 3000 }
15
+
16
+ # Specifies the `environment` that Puma will run in.
17
+ #
18
+ environment ENV.fetch('RAILS_ENV') { 'development' }
19
+
20
+ # Specifies the `pidfile` that Puma will use.
21
+ pidfile ENV.fetch('PIDFILE') { 'tmp/pids/server.pid' }
22
+
23
+ # Specifies the number of `workers` to boot in clustered mode.
24
+ # Workers are forked web server processes. If using threads and workers together
25
+ # the concurrency of the application would be max `threads` * `workers`.
26
+ # Workers do not work on JRuby or Windows (both of which do not support
27
+ # processes).
28
+ #
29
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
30
+
31
+ # Use the `preload_app!` method when specifying a `workers` number.
32
+ # This directive tells Puma to first boot the application and load code
33
+ # before forking the application. This takes advantage of Copy On Write
34
+ # process behavior so workers use less memory.
35
+ #
36
+ # preload_app!
37
+
38
+ # Allow puma to be restarted by `rails restart` command.
39
+ plugin :tmp_restart
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.routes.draw do
4
+ mount RailsWebCache::Engine => '/rails_web_cache'
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ %w[
4
+ .ruby-version
5
+ .rbenv-vars
6
+ tmp/restart.txt
7
+ tmp/caching-dev.txt
8
+ ].each { |path| Spring.watch(path) }
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is used by Rack-based servers to start the application.
4
+
5
+ require_relative 'config/environment'
6
+
7
+ run Rails.application
@@ -0,0 +1,630 @@
1
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:30:06 +0100
2
+ Processing by Rails::WelcomeController#index as HTML
3
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
4
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 19.5ms | Allocations: 416)
5
+ Completed 200 OK in 42ms (Views: 29.2ms | Allocations: 2136)
6
+
7
+
8
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:38:58 +0100
9
+ Processing by Rails::WelcomeController#index as HTML
10
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
11
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 5.5ms | Allocations: 192)
12
+ Completed 200 OK in 7ms (Views: 6.2ms | Allocations: 704)
13
+
14
+
15
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:00 +0100
16
+ Processing by Rails::WelcomeController#index as HTML
17
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
18
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.4ms | Allocations: 8)
19
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 216)
20
+
21
+
22
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:26 +0100
23
+
24
+ NoMethodError (undefined method `root_path' for #<ActionDispatch::Routing::Mapper:0x00007fdfba63f2d0>):
25
+
26
+ /Users/boris/Gems/rails_web_cache/config/routes.rb:5:in `block in <top (required)>'
27
+ actionpack (6.0.2.1) lib/action_dispatch/routing/mapper.rb:649:in `instance_exec'
28
+ actionpack (6.0.2.1) lib/action_dispatch/routing/mapper.rb:649:in `block in with_default_scope'
29
+ actionpack (6.0.2.1) lib/action_dispatch/routing/mapper.rb:887:in `scope'
30
+ actionpack (6.0.2.1) lib/action_dispatch/routing/mapper.rb:648:in `with_default_scope'
31
+ actionpack (6.0.2.1) lib/action_dispatch/routing/route_set.rb:427:in `eval_block'
32
+ actionpack (6.0.2.1) lib/action_dispatch/routing/route_set.rb:411:in `draw'
33
+ /Users/boris/Gems/rails_web_cache/config/routes.rb:3:in `<top (required)>'
34
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:41:in `load'
35
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:41:in `block in load_paths'
36
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:41:in `each'
37
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:41:in `load_paths'
38
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:20:in `reload!'
39
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:30:in `block in updater'
40
+ activesupport (6.0.2.1) lib/active_support/file_update_checker.rb:83:in `execute'
41
+ railties (6.0.2.1) lib/rails/application/routes_reloader.rb:10:in `execute'
42
+ railties (6.0.2.1) lib/rails/application/finisher.rb:197:in `block (2 levels) in <module:Finisher>'
43
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:429:in `instance_exec'
44
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:429:in `block in make_lambda'
45
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:201:in `block (2 levels) in halting'
46
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:607:in `block (2 levels) in default_terminator'
47
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:606:in `catch'
48
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:606:in `block in default_terminator'
49
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:202:in `block in halting'
50
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:514:in `block in invoke_before'
51
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:514:in `each'
52
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:514:in `invoke_before'
53
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:134:in `run_callbacks'
54
+ activesupport (6.0.2.1) lib/active_support/execution_wrapper.rb:111:in `run!'
55
+ activesupport (6.0.2.1) lib/active_support/reloader.rb:114:in `run!'
56
+ activesupport (6.0.2.1) lib/active_support/execution_wrapper.rb:73:in `block in run!'
57
+ activesupport (6.0.2.1) lib/active_support/execution_wrapper.rb:70:in `tap'
58
+ activesupport (6.0.2.1) lib/active_support/execution_wrapper.rb:70:in `run!'
59
+ activesupport (6.0.2.1) lib/active_support/reloader.rb:63:in `run!'
60
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
61
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
62
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
63
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
64
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
65
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
66
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
67
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
68
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
69
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
70
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
71
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
72
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
73
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
74
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
75
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
76
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
77
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
78
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
79
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
80
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
81
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
82
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
83
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
84
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
85
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:33 +0100
86
+ Processing by Rails::WelcomeController#index as HTML
87
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
88
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.1ms | Allocations: 7)
89
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 218)
90
+
91
+
92
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:34 +0100
93
+ Processing by Rails::WelcomeController#index as HTML
94
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
95
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.1ms | Allocations: 7)
96
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 214)
97
+
98
+
99
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:50 +0100
100
+ Processing by Rails::WelcomeController#index as HTML
101
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
102
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 3.8ms | Allocations: 191)
103
+ Completed 200 OK in 5ms (Views: 4.3ms | Allocations: 707)
104
+
105
+
106
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:58 +0100
107
+ Processing by Rails::WelcomeController#index as HTML
108
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
109
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 6.1ms | Allocations: 416)
110
+ Completed 200 OK in 9ms (Views: 8.2ms | Allocations: 2136)
111
+
112
+
113
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:41:59 +0100
114
+ Processing by Rails::WelcomeController#index as HTML
115
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
116
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 5.6ms | Allocations: 191)
117
+ Completed 200 OK in 7ms (Views: 6.4ms | Allocations: 702)
118
+
119
+
120
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:42:17 +0100
121
+ Processing by Rails::WelcomeController#index as HTML
122
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
123
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.3ms | Allocations: 7)
124
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 215)
125
+
126
+
127
+ Started GET "/home" for 127.0.0.1 at 2019-12-25 20:42:19 +0100
128
+
129
+ ActionController::RoutingError (No route matches [GET] "/home"):
130
+
131
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
132
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
133
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
134
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
135
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
136
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
137
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
138
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
139
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
140
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
141
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
142
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
143
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
144
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
145
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
146
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
147
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
148
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
149
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
150
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
151
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
152
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
153
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
154
+ Started GET "/rails_web_cache" for 127.0.0.1 at 2019-12-25 20:42:26 +0100
155
+ Processing by RailsWebCache::HomeController#index as HTML
156
+ Completed 406 Not Acceptable in 1ms (Allocations: 1074)
157
+
158
+
159
+
160
+ ActionController::MissingExactTemplate (RailsWebCache::HomeController#index is missing a template for request formats: text/html):
161
+
162
+ actionpack (6.0.2.1) lib/action_controller/metal/implicit_render.rb:45:in `default_render'
163
+ actionpack (6.0.2.1) lib/action_controller/metal/basic_implicit_render.rb:6:in `block in send_action'
164
+ actionpack (6.0.2.1) lib/action_controller/metal/basic_implicit_render.rb:6:in `tap'
165
+ actionpack (6.0.2.1) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
166
+ actionpack (6.0.2.1) lib/abstract_controller/base.rb:196:in `process_action'
167
+ actionpack (6.0.2.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
168
+ actionpack (6.0.2.1) lib/abstract_controller/callbacks.rb:42:in `block in process_action'
169
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:135:in `run_callbacks'
170
+ actionpack (6.0.2.1) lib/abstract_controller/callbacks.rb:41:in `process_action'
171
+ actionpack (6.0.2.1) lib/action_controller/metal/rescue.rb:22:in `process_action'
172
+ actionpack (6.0.2.1) lib/action_controller/metal/instrumentation.rb:33:in `block in process_action'
173
+ activesupport (6.0.2.1) lib/active_support/notifications.rb:180:in `block in instrument'
174
+ activesupport (6.0.2.1) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
175
+ activesupport (6.0.2.1) lib/active_support/notifications.rb:180:in `instrument'
176
+ actionpack (6.0.2.1) lib/action_controller/metal/instrumentation.rb:32:in `process_action'
177
+ actionpack (6.0.2.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
178
+ actionpack (6.0.2.1) lib/abstract_controller/base.rb:136:in `process'
179
+ actionview (6.0.2.1) lib/action_view/rendering.rb:39:in `process'
180
+ actionpack (6.0.2.1) lib/action_controller/metal.rb:191:in `dispatch'
181
+ actionpack (6.0.2.1) lib/action_controller/metal.rb:252:in `dispatch'
182
+ actionpack (6.0.2.1) lib/action_dispatch/routing/route_set.rb:51:in `dispatch'
183
+ actionpack (6.0.2.1) lib/action_dispatch/routing/route_set.rb:33:in `serve'
184
+ actionpack (6.0.2.1) lib/action_dispatch/journey/router.rb:49:in `block in serve'
185
+ actionpack (6.0.2.1) lib/action_dispatch/journey/router.rb:32:in `each'
186
+ actionpack (6.0.2.1) lib/action_dispatch/journey/router.rb:32:in `serve'
187
+ actionpack (6.0.2.1) lib/action_dispatch/routing/route_set.rb:837:in `call'
188
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
189
+ railties (6.0.2.1) lib/rails/railtie.rb:190:in `public_send'
190
+ railties (6.0.2.1) lib/rails/railtie.rb:190:in `method_missing'
191
+ actionpack (6.0.2.1) lib/action_dispatch/routing/mapper.rb:19:in `block in <class:Constraints>'
192
+ actionpack (6.0.2.1) lib/action_dispatch/routing/mapper.rb:48:in `serve'
193
+ actionpack (6.0.2.1) lib/action_dispatch/journey/router.rb:49:in `block in serve'
194
+ actionpack (6.0.2.1) lib/action_dispatch/journey/router.rb:32:in `each'
195
+ actionpack (6.0.2.1) lib/action_dispatch/journey/router.rb:32:in `serve'
196
+ actionpack (6.0.2.1) lib/action_dispatch/routing/route_set.rb:837:in `call'
197
+ rack (2.0.8) lib/rack/tempfile_reaper.rb:15:in `call'
198
+ rack (2.0.8) lib/rack/etag.rb:25:in `call'
199
+ rack (2.0.8) lib/rack/conditional_get.rb:25:in `call'
200
+ rack (2.0.8) lib/rack/head.rb:12:in `call'
201
+ actionpack (6.0.2.1) lib/action_dispatch/http/content_security_policy.rb:18:in `call'
202
+ rack (2.0.8) lib/rack/session/abstract/id.rb:259:in `context'
203
+ rack (2.0.8) lib/rack/session/abstract/id.rb:253:in `call'
204
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/cookies.rb:648:in `call'
205
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
206
+ activesupport (6.0.2.1) lib/active_support/callbacks.rb:101:in `run_callbacks'
207
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
208
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
209
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
210
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
211
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
212
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
213
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
214
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
215
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
216
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
217
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
218
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
219
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
220
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
221
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
222
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
223
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
224
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
225
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
226
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
227
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
228
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
229
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
230
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
231
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
232
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
233
+ Started GET "/home" for 127.0.0.1 at 2019-12-25 20:42:33 +0100
234
+
235
+ ActionController::RoutingError (No route matches [GET] "/home"):
236
+
237
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
238
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
239
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
240
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
241
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
242
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
243
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
244
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
245
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
246
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
247
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
248
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
249
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
250
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
251
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
252
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
253
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
254
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
255
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
256
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
257
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
258
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
259
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
260
+ Started GET "/home" for 127.0.0.1 at 2019-12-25 20:42:44 +0100
261
+
262
+ ActionController::RoutingError (No route matches [GET] "/home"):
263
+
264
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
265
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
266
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
267
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
268
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
269
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
270
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
271
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
272
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
273
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
274
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
275
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
276
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
277
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
278
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
279
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
280
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
281
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
282
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
283
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
284
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
285
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
286
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
287
+ Started GET "/home" for 127.0.0.1 at 2019-12-25 20:42:46 +0100
288
+
289
+ ActionController::RoutingError (No route matches [GET] "/home"):
290
+
291
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
292
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
293
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
294
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
295
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
296
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
297
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
298
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
299
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
300
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
301
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
302
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
303
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
304
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
305
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
306
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
307
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
308
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
309
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
310
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
311
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
312
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
313
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
314
+ Started GET "/home" for 127.0.0.1 at 2019-12-25 20:43:01 +0100
315
+
316
+ ActionController::RoutingError (No route matches [GET] "/home"):
317
+
318
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
319
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
320
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
321
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
322
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
323
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
324
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
325
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
326
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
327
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
328
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
329
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
330
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
331
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
332
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
333
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
334
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
335
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
336
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
337
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
338
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
339
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
340
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
341
+ Started GET "/rails_web_cache" for 127.0.0.1 at 2019-12-25 20:43:13 +0100
342
+
343
+ ActionController::RoutingError (No route matches [GET] "/rails_web_cache"):
344
+
345
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
346
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
347
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
348
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
349
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
350
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
351
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
352
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
353
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
354
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
355
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
356
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
357
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
358
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
359
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
360
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
361
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
362
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
363
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
364
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
365
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
366
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
367
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
368
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:46:23 +0100
369
+ Processing by Rails::WelcomeController#index as HTML
370
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
371
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 9.5ms | Allocations: 416)
372
+ Completed 200 OK in 13ms (Views: 12.0ms | Allocations: 2136)
373
+
374
+
375
+ Started GET "/aze" for 127.0.0.1 at 2019-12-25 20:46:25 +0100
376
+
377
+ ActionController::RoutingError (No route matches [GET] "/aze"):
378
+
379
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
380
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
381
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
382
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
383
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
384
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
385
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
386
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
387
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
388
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
389
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
390
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
391
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
392
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
393
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
394
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
395
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
396
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
397
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
398
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
399
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
400
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
401
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
402
+ Started GET "/rails_web_cache_path" for 127.0.0.1 at 2019-12-25 20:46:29 +0100
403
+
404
+ ActionController::RoutingError (No route matches [GET] "/rails_web_cache_path"):
405
+
406
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
407
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
408
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
409
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
410
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
411
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
412
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
413
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
414
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
415
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
416
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
417
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
418
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
419
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
420
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
421
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
422
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
423
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
424
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
425
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
426
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
427
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
428
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
429
+ Started GET "/rails_web_cache" for 127.0.0.1 at 2019-12-25 20:46:36 +0100
430
+
431
+ ActionController::RoutingError (No route matches [GET] "/rails_web_cache"):
432
+
433
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
434
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
435
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
436
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
437
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
438
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
439
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
440
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
441
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
442
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
443
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
444
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
445
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
446
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
447
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
448
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
449
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
450
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
451
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
452
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
453
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
454
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
455
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
456
+ Started GET "/rails_web_cache" for 127.0.0.1 at 2019-12-25 20:46:38 +0100
457
+
458
+ ActionController::RoutingError (No route matches [GET] "/rails_web_cache"):
459
+
460
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
461
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
462
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
463
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
464
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
465
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
466
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
467
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
468
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
469
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
470
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
471
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
472
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
473
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
474
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
475
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
476
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
477
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
478
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
479
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
480
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
481
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
482
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
483
+ Started GET "/rails_web_cache" for 127.0.0.1 at 2019-12-25 20:46:48 +0100
484
+
485
+ ActionController::RoutingError (No route matches [GET] "/rails_web_cache"):
486
+
487
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
488
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
489
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
490
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
491
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
492
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
493
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
494
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
495
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
496
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
497
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
498
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
499
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
500
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
501
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
502
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
503
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
504
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
505
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
506
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
507
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
508
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
509
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
510
+ Started GET "/rails_web_cache" for 127.0.0.1 at 2019-12-25 20:46:50 +0100
511
+
512
+ ActionController::RoutingError (No route matches [GET] "/rails_web_cache"):
513
+
514
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
515
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
516
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
517
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
518
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
519
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
520
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
521
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
522
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
523
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
524
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
525
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
526
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
527
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
528
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
529
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
530
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
531
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
532
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
533
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
534
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
535
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
536
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
537
+ Started GET "/" for 127.0.0.1 at 2019-12-25 20:49:16 +0100
538
+ Processing by Rails::WelcomeController#index as HTML
539
+ Rendering /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb
540
+ Rendered /Users/boris/.rvm/gems/ruby-2.6.3/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 5.0ms | Allocations: 197)
541
+ Completed 200 OK in 7ms (Views: 6.2ms | Allocations: 834)
542
+
543
+
544
+ Started GET "/ae" for 127.0.0.1 at 2019-12-25 20:58:51 +0100
545
+
546
+ ActionController::RoutingError (No route matches [GET] "/ae"):
547
+
548
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
549
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
550
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
551
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
552
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
553
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
554
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
555
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
556
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
557
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
558
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
559
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
560
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
561
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
562
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
563
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
564
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
565
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
566
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
567
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
568
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
569
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
570
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
571
+ Started GET "/ae" for 127.0.0.1 at 2019-12-25 20:59:06 +0100
572
+
573
+ ActionController::RoutingError (No route matches [GET] "/ae"):
574
+
575
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
576
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
577
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
578
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
579
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
580
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
581
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
582
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
583
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
584
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
585
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
586
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
587
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
588
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
589
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
590
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
591
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
592
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
593
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
594
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
595
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
596
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
597
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
598
+ Started GET "/home" for 127.0.0.1 at 2019-12-25 20:59:08 +0100
599
+
600
+ ActionController::RoutingError (No route matches [GET] "/home"):
601
+
602
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
603
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
604
+ railties (6.0.2.1) lib/rails/rack/logger.rb:38:in `call_app'
605
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `block in call'
606
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `block in tagged'
607
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:28:in `tagged'
608
+ activesupport (6.0.2.1) lib/active_support/tagged_logging.rb:80:in `tagged'
609
+ railties (6.0.2.1) lib/rails/rack/logger.rb:26:in `call'
610
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
611
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
612
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/request_id.rb:27:in `call'
613
+ rack (2.0.8) lib/rack/method_override.rb:22:in `call'
614
+ rack (2.0.8) lib/rack/runtime.rb:22:in `call'
615
+ activesupport (6.0.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
616
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
617
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/static.rb:126:in `call'
618
+ rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
619
+ actionpack (6.0.2.1) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
620
+ railties (6.0.2.1) lib/rails/engine.rb:526:in `call'
621
+ rack (2.0.8) lib/rack/handler/webrick.rb:86:in `service'
622
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:140:in `service'
623
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/httpserver.rb:96:in `run'
624
+ /Users/boris/.rvm/rubies/ruby-2.6.3/lib/ruby/2.6.0/webrick/server.rb:307:in `block in start_thread'
625
+ DEPRECATION WARNING: SourceAnnotationExtractor is deprecated! Use Rails::SourceAnnotationExtractor instead. (called from <main> at bin/rails:19)
626
+ DEPRECATION WARNING: SourceAnnotationExtractor is deprecated! Use Rails::SourceAnnotationExtractor instead. (called from <main> at bin/rails:19)
627
+ DEPRECATION WARNING: SourceAnnotationExtractor is deprecated! Use Rails::SourceAnnotationExtractor instead. (called from <main> at bin/rails:19)
628
+ DEPRECATION WARNING: SourceAnnotationExtractor is deprecated! Use Rails::SourceAnnotationExtractor instead. (called from <main> at bin/rails:19)
629
+ DEPRECATION WARNING: SourceAnnotationExtractor is deprecated! Use Rails::SourceAnnotationExtractor instead. (called from <main> at bin/rails:19)
630
+ DEPRECATION WARNING: SourceAnnotationExtractor is deprecated! Use Rails::SourceAnnotationExtractor instead. (called from <main> at bin/rails:19)