diff --git a/README.md b/README.md index b3e4d43..d4d1d31 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -# veracyte-portal-wp1 -The goal of this project is to develop an user management portal for cBioPortal. +# Rails 7 view component template +- Rails 7 +- Stimulus +- View Component +- Turbo & Hotwire diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index f5da996..df63d97 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,7 +1,7 @@ - VeracytePortalWp1 + RailsComponents <%= csrf_meta_tags %> <%= csp_meta_tag %> diff --git a/config/application.rb b/config/application.rb index 0ab445f..01e0427 100644 --- a/config/application.rb +++ b/config/application.rb @@ -20,7 +20,7 @@ require 'action_cable/engine' # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) -module VeracytePortalWp1 +module RailsComponent class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. config.load_defaults 7.0 diff --git a/config/cable.yml b/config/cable.yml index c0b0c21..826a84b 100644 --- a/config/cable.yml +++ b/config/cable.yml @@ -8,4 +8,4 @@ test: production: adapter: redis url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> - channel_prefix: veracyte_portal_wp1_production + channel_prefix: rails_component_production diff --git a/config/database.yml b/config/database.yml index 2d89b18..189a900 100644 --- a/config/database.yml +++ b/config/database.yml @@ -23,13 +23,13 @@ default: &default development: <<: *default - database: veracyte_portal_wp1_development + database: rails_components_development # The specified database role being used to connect to postgres. # To create additional roles in postgres see `$ createuser --help`. # When left blank, postgres will use the default role. This is # the same name as the operating system user running Rails. - #username: veracyte_portal_wp1 + #username: rails_components_wp1 # The password associated with the postgres role (username). #password: @@ -57,7 +57,7 @@ development: # Do not set this db to the same as development or production. test: <<: *default - database: veracyte_portal_wp1_test + database: rails_components_test # As with config/credentials.yml, you never want to store sensitive information, # like your database password, in your source code. If your source code is @@ -81,6 +81,6 @@ test: # production: <<: *default - database: veracyte_portal_wp1_production - username: veracyte_portal_wp1 - password: <%= ENV["VERACYTE_PORTAL_WP1_DATABASE_PASSWORD"] %> + database: rails_components_production + username: rails_components + password: <%= ENV["RAILS_COMPONENTS_DATABASE_PASSWORD"] %> diff --git a/config/environments/production.rb b/config/environments/production.rb index 57b7bfd..f9c7b4a 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -62,7 +62,7 @@ Rails.application.configure do # Use a real queuing backend for Active Job (and separate queues per environment). # config.active_job.queue_adapter = :resque - # config.active_job.queue_name_prefix = "veracyte_portal_wp1_production" + # config.active_job.queue_name_prefix = "rails_component_production" config.action_mailer.perform_caching = false diff --git a/log/development.log b/log/development.log deleted file mode 100644 index 9ae30f8..0000000 --- a/log/development.log +++ /dev/null @@ -1,8967 +0,0 @@ -Started GET "/" for ::1 at 2023-01-11 14:47:46 +0100 - -ActiveRecord::NoDatabaseError (We could not find your database: veracyte_portal_wp1_development. Which can be found in the database configuration file located at config/database.yml. - -To resolve this issue: - -- Did you create the database for this app, or delete it? You may need to create your database. -- Has the database name changed? Check your database.yml config has the correct database name. - -To create your database, run: - - bin/rails db:create -): - -activerecord (7.0.4) lib/active_record/connection_adapters/postgresql_adapter.rb:81:in `rescue in new_client' -activerecord (7.0.4) lib/active_record/connection_adapters/postgresql_adapter.rb:77:in `new_client' -activerecord (7.0.4) lib/active_record/connection_adapters/postgresql_adapter.rb:37:in `postgresql_connection' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:656:in `public_send' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:656:in `new_connection' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:700:in `checkout_new_connection' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:679:in `try_to_checkout_new_connection' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:640:in `acquire_connection' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:341:in `checkout' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:181:in `connection' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/connection_handler.rb:211:in `retrieve_connection' -activerecord (7.0.4) lib/active_record/connection_handling.rb:313:in `retrieve_connection' -activerecord (7.0.4) lib/active_record/connection_handling.rb:280:in `connection' -activerecord (7.0.4) lib/active_record/migration.rb:613:in `connection' -activerecord (7.0.4) lib/active_record/migration.rb:608:in `build_watcher' -activerecord (7.0.4) lib/active_record/migration.rb:590:in `block in call' -activerecord (7.0.4) lib/active_record/migration.rb:589:in `synchronize' -activerecord (7.0.4) lib/active_record/migration.rb:589:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/rails/actions" for ::1 at 2023-01-11 14:47:59 +0100 -  (150.3ms) CREATE DATABASE "veracyte_portal_wp1_development" ENCODING = 'unicode' -  (39.4ms) CREATE DATABASE "veracyte_portal_wp1_test" ENCODING = 'unicode' -Started GET "/" for ::1 at 2023-01-11 14:47:59 +0100 -Processing by Rails::WelcomeController#index as HTML - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/rails/welcome/index.html.erb - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.9ms | Allocations: 291) -Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 2575) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-11 15:15:47 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} -Completed 404 Not Found in 8ms (ActiveRecord: 0.0ms | Allocations: 5268) - - - -AbstractController::ActionNotFound (Component preview 'demo/default' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:63:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:23:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/info/routes" for ::1 at 2023-01-11 15:15:56 +0100 -Processing by Rails::InfoController#routes as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/rails/info/routes.html.erb within layouts/application - Rendered collection of /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/actionpack-7.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb [30 times] (Duration: 3.0ms | Allocations: 4941) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/actionpack-7.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (Duration: 3.4ms | Allocations: 1253) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/rails/info/routes.html.erb within layouts/application (Duration: 8.3ms | Allocations: 9965) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 8.7ms | Allocations: 10254) -Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.0ms | Allocations: 11404) - - -Started GET "/rails/view_components" for ::1 at 2023-01-11 15:16:12 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 3.1ms | Allocations: 574) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 3.7ms | Allocations: 839) -Completed 200 OK in 22ms (Views: 9.1ms | ActiveRecord: 0.0ms | Allocations: 3573) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:16:13 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.7ms | Allocations: 614) - Rendered layout layouts/application.html.erb (Duration: 226.4ms | Allocations: 145683) -Completed 200 OK in 241ms (Views: 227.3ms | ActiveRecord: 0.0ms | Allocations: 147053) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:17:50 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} -Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms | Allocations: 891) - - - -AbstractController::ActionNotFound (Component preview 'demo_component/default' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:63:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:23:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:17:58 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.7ms | Allocations: 308) -Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 1031) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:18:10 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 364) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:18:20 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 398) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.2ms | Allocations: 710) -Completed 200 OK in 10ms (Views: 3.8ms | ActiveRecord: 0.0ms | Allocations: 6164) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:18:24 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.4ms | Allocations: 478) -Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 1337) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:12 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 399) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 711) -Completed 200 OK in 9ms (Views: 3.6ms | ActiveRecord: 0.0ms | Allocations: 6170) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:13 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.6ms | Allocations: 478) -Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 1337) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:15 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 85) -Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 367) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:15 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 329) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:15 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 329) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:31 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 85) -Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms | Allocations: 334) - - -Started GET "/rails/view_components/demo_component/defaut" for ::1 at 2023-01-11 15:21:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/defaut"} -Completed 404 Not Found in 3ms (ActiveRecord: 0.0ms | Allocations: 1493) - - - -AbstractController::ActionNotFound (Component preview 'demo_component/defaut' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:63:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:23:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:42 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 85) -Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 384) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:21:58 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 399) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 711) -Completed 200 OK in 8ms (Views: 3.2ms | ActiveRecord: 0.0ms | Allocations: 6174) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:30:29 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 478) -Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 1511) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:30:30 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.6ms | Allocations: 85) -Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 362) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:31:09 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 85) -Completed 200 OK in 3ms (Views: 0.9ms | Allocations: 331) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:31:15 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 793) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.6ms | Allocations: 1092) -Completed 200 OK in 11ms (Views: 4.1ms | ActiveRecord: 0.0ms | Allocations: 6738) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:31:52 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 399) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 711) -Completed 200 OK in 13ms (Views: 3.5ms | ActiveRecord: 0.0ms | Allocations: 6182) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 15:32:22 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 793) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.6ms | Allocations: 1092) -Completed 200 OK in 10ms (Views: 4.1ms | ActiveRecord: 0.0ms | Allocations: 6700) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:32:26 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.5ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 80.7ms | Allocations: 56257) -Completed 200 OK in 88ms (Views: 81.9ms | ActiveRecord: 0.0ms | Allocations: 58696) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:32:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 810) - Rendered layout layouts/application.html.erb (Duration: 36.2ms | Allocations: 56726) -Completed 200 OK in 47ms (Views: 38.8ms | ActiveRecord: 0.0ms | Allocations: 63784) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:34:40 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 6.7ms | Allocations: 5692) - Rendered layout layouts/application.html.erb (Duration: 6.8ms | Allocations: 5778) -Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.0ms | Allocations: 9108) - - - -ActionView::Template::Error (undefined local variable or method `title' for #, @__vc_original_view_context=#, @output_buffer="
\n

", @lookup_context=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>, @view_renderer=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>>, @view_flow=#, @virtual_path="/demo_component", @__vc_variant=nil, @current_template=nil, @__vc_content_evaluated=false, @__vc_render_in_block=nil> - -

'.freeze;@output_buffer.append=( title );@output_buffer.safe_append='

- ^^^^^ -Did you mean? @title): - 1: <% if @render_args[:component] %> - 2: <% if ViewComponent::Base.config.render_monkey_patch_enabled || Rails.version.to_f >= 6.1 %> - 3: <%= render(@render_args[:component], @render_args[:args], &@render_args[:block]) %> - 4: <% else %> - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - -app/components/demo_component/demo_component.html.erb:2:in `call' -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:35:14 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} -Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms | Allocations: 3574) - - - -NoMethodError (undefined method `att_reader' for DemoComponent:Class - - att_reader :title, :text - ^^^^^^^^^^ -Did you mean? attr_reader - cattr_reader - mattr_reader): - -app/components/demo_component.rb:4:in `' -app/components/demo_component.rb:3:in `
' -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:35:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.0ms | Allocations: 596) - Rendered layout layouts/application.html.erb (Duration: 23.0ms | Allocations: 23047) -Completed 200 OK in 27ms (Views: 24.2ms | ActiveRecord: 0.0ms | Allocations: 24894) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:35:47 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 594) - Rendered layout layouts/application.html.erb (Duration: 18.8ms | Allocations: 22925) -Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.0ms | Allocations: 24761) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:36:21 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.2ms | Allocations: 175) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 7771) -Completed 200 OK in 26ms (Views: 16.5ms | ActiveRecord: 0.0ms | Allocations: 10575) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:41:56 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 70.2ms | Allocations: 33231) -Completed 500 Internal Server Error in 84ms (ActiveRecord: 0.0ms | Allocations: 40246) - - - -ActionView::Template::Error (wrong number of arguments (given 6, expected 0..2)): - -app/assets/config/manifest.js:8 -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:42:13 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 456) -Importmap skipped missing path: components/demo_component/demo_component_controller.js - Rendered layout layouts/application.html.erb (Duration: 41.4ms | Allocations: 58462) -Completed 200 OK in 45ms (Views: 42.8ms | ActiveRecord: 0.0ms | Allocations: 59876) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:42:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.9ms | Allocations: 174) -Importmap skipped missing path: components/demo_component/demo_component_controller.js - Rendered layout layouts/application.html.erb (Duration: 23.5ms | Allocations: 24346) -Completed 200 OK in 33ms (Views: 24.6ms | ActiveRecord: 0.0ms | Allocations: 27198) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:42:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.9ms | Allocations: 7696) -Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms | Allocations: 8519) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:45:17 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 207.5ms | Allocations: 155762) -Completed 200 OK in 226ms (Views: 210.8ms | ActiveRecord: 0.0ms | Allocations: 162823) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:45:56 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 845) -Importmap skipped missing path: components/demo_component/demo_component_controller.js - Rendered layout layouts/application.html.erb (Duration: 215.2ms | Allocations: 160990) -Completed 200 OK in 225ms (Views: 217.7ms | ActiveRecord: 0.0ms | Allocations: 168051) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:46:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 86.8ms | Allocations: 59521) -Completed 200 OK in 97ms (Views: 89.1ms | ActiveRecord: 0.0ms | Allocations: 66580) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:48:11 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.8ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 17.0ms | Allocations: 8285) -Completed 200 OK in 33ms (Views: 18.8ms | ActiveRecord: 0.0ms | Allocations: 11452) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:48:12 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.0ms | Allocations: 7796) -Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 8688) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:48:53 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.4ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 103.1ms | Allocations: 71913) -Completed 200 OK in 116ms (Views: 105.6ms | ActiveRecord: 0.0ms | Allocations: 78971) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:48:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 5.6ms | Allocations: 8270) -Completed 200 OK in 10ms (Views: 7.2ms | ActiveRecord: 0.0ms | Allocations: 9648) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:51:07 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 48.4ms | Allocations: 59917) -Completed 200 OK in 60ms (Views: 51.1ms | ActiveRecord: 0.0ms | Allocations: 66978) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:51:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 459) - Rendered layout layouts/application.html.erb (Duration: 7.4ms | Allocations: 8363) -Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.0ms | Allocations: 9742) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:52:17 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.8ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 39.3ms | Allocations: 12953) -Completed 200 OK in 58ms (Views: 40.5ms | ActiveRecord: 0.0ms | Allocations: 15803) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:52:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 175) - Rendered layout layouts/application.html.erb (Duration: 7.1ms | Allocations: 7888) -Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.0ms | Allocations: 8706) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:52:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.8ms | Allocations: 7789) -Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 8614) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:52:57 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 175) - Rendered layout layouts/application.html.erb (Duration: 14.2ms | Allocations: 8977) -Completed 200 OK in 24ms (Views: 15.5ms | ActiveRecord: 0.0ms | Allocations: 11678) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:54:28 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 88.8ms | Allocations: 69480) -Completed 200 OK in 101ms (Views: 91.2ms | ActiveRecord: 0.0ms | Allocations: 76538) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:54:29 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.7ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 6.3ms | Allocations: 8279) -Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms | Allocations: 9657) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:54:30 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.6ms | Allocations: 7803) -Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 8695) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:54:30 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.0ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 6.0ms | Allocations: 7734) -Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms | Allocations: 8551) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:54:30 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 6.6ms | Allocations: 7738) -Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms | Allocations: 8556) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:59:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 242.6ms | Allocations: 166038) -Completed 200 OK in 255ms (Views: 245.5ms | ActiveRecord: 0.0ms | Allocations: 173097) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:59:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 5.4ms | Allocations: 8287) -Completed 200 OK in 11ms (Views: 6.7ms | ActiveRecord: 0.0ms | Allocations: 9658) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 15:59:05 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 7746) -Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.0ms | Allocations: 8646) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:00:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 86.5ms | Allocations: 72220) -Completed 200 OK in 97ms (Views: 88.9ms | ActiveRecord: 0.0ms | Allocations: 79280) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:02:44 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 47.9ms | Allocations: 60182) -Completed 200 OK in 58ms (Views: 50.4ms | ActiveRecord: 0.0ms | Allocations: 67243) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:02:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.7ms | Allocations: 456) - Rendered layout layouts/application.html.erb (Duration: 14.0ms | Allocations: 9118) -Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms | Allocations: 10498) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:02:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.3ms | Allocations: 7806) -Completed 200 OK in 16ms (Views: 7.4ms | ActiveRecord: 0.0ms | Allocations: 8698) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:02:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.4ms | Allocations: 7768) -Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.0ms | Allocations: 8586) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:02:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.2ms | Allocations: 7720) -Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms | Allocations: 8537) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:04:52 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.7ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 13.1ms | Allocations: 7731) -Completed 200 OK in 28ms (Views: 15.0ms | ActiveRecord: 0.0ms | Allocations: 10523) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:05:44 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 82.6ms | Allocations: 68987) -Completed 200 OK in 95ms (Views: 85.3ms | ActiveRecord: 0.0ms | Allocations: 76047) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:05:47 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 7.5ms | Allocations: 8381) -Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms | Allocations: 9760) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:07:41 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 66.3ms | Allocations: 73739) -Completed 200 OK in 78ms (Views: 69.0ms | ActiveRecord: 0.0ms | Allocations: 80801) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:07:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 4.7ms | Allocations: 8375) -Completed 200 OK in 11ms (Views: 7.5ms | ActiveRecord: 0.0ms | Allocations: 9754) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:07:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.0ms | Allocations: 7806) -Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms | Allocations: 8705) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:07:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.2ms | Allocations: 7806) -Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms | Allocations: 8629) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:07:59 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 57.7ms | Allocations: 72824) -Completed 200 OK in 69ms (Views: 60.3ms | ActiveRecord: 0.0ms | Allocations: 79885) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 12.9ms | Allocations: 8380) -Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.0ms | Allocations: 9759) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 8.2ms | Allocations: 7725) -Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.0ms | Allocations: 8624) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.6ms | Allocations: 7815) -Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms | Allocations: 8638) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.1ms | Allocations: 7806) -Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms | Allocations: 8629) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 7813) -Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 8631) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 7816) -Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 8634) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:08:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.3ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.2ms | Allocations: 7732) -Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms | Allocations: 8549) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:09:10 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.7ms | Allocations: 182) - Rendered layout layouts/application.html.erb (Duration: 12.7ms | Allocations: 7825) -Completed 200 OK in 24ms (Views: 13.5ms | ActiveRecord: 0.0ms | Allocations: 10609) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:09:25 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.0ms | Allocations: 466) - Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 8388) -Completed 200 OK in 13ms (Views: 8.9ms | ActiveRecord: 0.0ms | Allocations: 9676) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:09:27 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 181) - Rendered layout layouts/application.html.erb (Duration: 5.3ms | Allocations: 7814) -Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 8706) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:09:44 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.9ms | Allocations: 468) - Rendered layout layouts/application.html.erb (Duration: 7.3ms | Allocations: 8386) -Completed 200 OK in 13ms (Views: 8.3ms | ActiveRecord: 0.0ms | Allocations: 11452) - - -Started GET "/rails/view_components/" for ::1 at 2023-01-11 16:17:00 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 1.9ms | Allocations: 571) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 2.6ms | Allocations: 840) -Completed 200 OK in 17ms (Views: 5.5ms | Allocations: 3660) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:17:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 420) - Rendered layout layouts/application.html.erb (Duration: 10.7ms | Allocations: 8294) -Completed 200 OK in 24ms (Views: 12.5ms | Allocations: 9264) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:20:02 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 76.4ms | Allocations: 75995) -Completed 200 OK in 90ms (Views: 78.9ms | ActiveRecord: 0.0ms | Allocations: 83063) - - -Started GET "/components/**/*.css" for ::1 at 2023-01-11 16:20:02 +0100 - -ActionController::RoutingError (No route matches [GET] "/components/**/*.css"): - -Started GET "/components*.css" for ::1 at 2023-01-11 16:20:02 +0100 - -ActionController::RoutingError (No route matches [GET] "/components*.css"): - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:20:22 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.8ms | Allocations: 456) - Rendered layout layouts/application.html.erb (Duration: 13.5ms | Allocations: 10274) -Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms | Allocations: 11593) - - - -ActionController::RoutingError (No route matches [GET] "/app/components/**/*.css"): - - -ActionController::RoutingError (No route matches [GET] "/app/components*.css"): - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:20:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.7ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 15.0ms | Allocations: 8043) -Completed 200 OK in 22ms (Views: 16.0ms | ActiveRecord: 0.0ms | Allocations: 10715) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:21:21 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 52.3ms | Allocations: 39324) -Completed 200 OK in 61ms (Views: 53.3ms | ActiveRecord: 0.0ms | Allocations: 41898) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:22:05 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.7ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 12.0ms | Allocations: 7919) -Completed 200 OK in 24ms (Views: 13.0ms | ActiveRecord: 0.0ms | Allocations: 10497) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:22:12 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 15.2ms | Allocations: 7982) -Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.0ms | Allocations: 8801) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:22:26 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 108.4ms | Allocations: 73233) -Completed 200 OK in 119ms (Views: 110.7ms | ActiveRecord: 0.0ms | Allocations: 80291) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:22:40 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 65.5ms | Allocations: 74071) -Completed 200 OK in 79ms (Views: 68.1ms | ActiveRecord: 0.0ms | Allocations: 81131) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:26:58 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 227.3ms | Allocations: 168865) -Completed 200 OK in 239ms (Views: 230.0ms | ActiveRecord: 0.0ms | Allocations: 175926) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:27:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 8306) -Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 9684) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:27:04 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 4.8ms | Allocations: 7751) -Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 8650) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:27:31 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 81.6ms | Allocations: 61778) -Completed 200 OK in 92ms (Views: 84.0ms | ActiveRecord: 0.0ms | Allocations: 68834) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:27:31 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 461) - Rendered layout layouts/application.html.erb (Duration: 4.5ms | Allocations: 8302) -Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 9684) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:27:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.4ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 5.1ms | Allocations: 7724) -Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms | Allocations: 8622) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:28:49 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 97.3ms | Allocations: 103334) -Completed 200 OK in 109ms (Views: 99.8ms | ActiveRecord: 0.0ms | Allocations: 110395) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:29:10 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 25.1ms | Allocations: 31002) -Completed 200 OK in 38ms (Views: 27.6ms | ActiveRecord: 0.0ms | Allocations: 38064) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:29:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 28.2ms | Allocations: 30990) -Completed 200 OK in 42ms (Views: 34.4ms | ActiveRecord: 0.0ms | Allocations: 38052) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:29:47 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 456) - Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 10451) -Completed 200 OK in 9ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 11828) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:30:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 845) - Rendered layout layouts/application.html.erb (Duration: 72.6ms | Allocations: 55949) -Completed 200 OK in 84ms (Views: 75.1ms | ActiveRecord: 0.0ms | Allocations: 63009) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-11 16:30:56 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.6ms | Allocations: 456) - Rendered layout layouts/application.html.erb (Duration: 1.3ms | Allocations: 1828) -Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms | Allocations: 3206) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:40:31 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 729) -Completed 200 OK in 12ms (Views: 4.8ms | ActiveRecord: 0.0ms | Allocations: 6658) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:42:52 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 216) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 481) -Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 1562) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:42:54 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 85) -Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 395) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:42:59 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 0.0ms | Allocations: 6659) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:44:12 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 478) -Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 1555) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:44:14 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.5ms | Allocations: 85) -Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 395) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:44:58 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.4ms | Allocations: 308) -Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 1204) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:46:49 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.6ms | Allocations: 308) -Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 1204) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:47:42 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.2ms | Allocations: 729) -Completed 200 OK in 14ms (Views: 4.0ms | ActiveRecord: 0.0ms | Allocations: 6661) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:48:48 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 729) -Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.0ms | Allocations: 6661) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:48:49 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 4.4ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 4.9ms | Allocations: 478) -Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms | Allocations: 1369) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:53:39 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 215) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.6ms | Allocations: 311) -Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 1209) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 10:53:47 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 3.6ms | Allocations: 778) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 4.1ms | Allocations: 1077) -Completed 200 OK in 18ms (Views: 8.6ms | ActiveRecord: 0.0ms | Allocations: 7821) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 10:53:49 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views/view_component_contrib/preview.html.erb - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views/view_component_contrib/preview.html.erb (Duration: 0.3ms | Allocations: 190) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 661) - Rendered layout layouts/application.html.erb (Duration: 187.5ms | Allocations: 143401) -Completed 200 OK in 226ms (Views: 188.7ms | ActiveRecord: 0.0ms | Allocations: 148538) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 10:59:07 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.2ms | Allocations: 2492) - Rendered layout layouts/application.html.erb (Duration: 4.3ms | Allocations: 2578) -Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 6456) - - - -ActionView::Template::Error (Missing template Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/components/template.html.erb with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? components/template - test_mailer/test_email - rails/mailers/email - rails/mailers/mailer - layouts/mailer - rails/info/routes): - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - 7: <% else %> - 8: <%= render template: @render_args[:template], locals: @render_args[:locals] || {} %> - 9: <% end %> - 10: - 11: <% if ViewComponent::Base.config.show_previews_source %> - -actionview (7.0.4) lib/action_view/path_set.rb:49:in `find' -actionview (7.0.4) lib/action_view/lookup_context.rb:127:in `find' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:49:in `determine_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:7:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:22:in `render' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:37:in `block in render' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:33:in `render' -view_component (2.81.0) app/views/view_components/preview.html.erb:8 -actionview (7.0.4) lib/action_view/base.rb:244:in `public_send' -actionview (7.0.4) lib/action_view/base.rb:244:in `_run' -actionview (7.0.4) lib/action_view/template.rb:157:in `block in render' -activesupport (7.0.4) lib/active_support/notifications.rb:208:in `instrument' -actionview (7.0.4) lib/action_view/template.rb:361:in `instrument_render_template' -actionview (7.0.4) lib/action_view/template.rb:155:in `render' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:65:in `block (2 levels) in render_template' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:60:in `block in render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:75:in `block in render_with_layout' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:74:in `render_with_layout' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:59:in `render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:11:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/rendering.rb:117:in `block in _render_template' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/rendering.rb:116:in `_render_template' -actionpack (7.0.4) lib/action_controller/metal/streaming.rb:216:in `_render_template' -actionview (7.0.4) lib/action_view/rendering.rb:103:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:46:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/renderers.rb:141:in `render_to_body' -actionpack (7.0.4) lib/abstract_controller/rendering.rb:25:in `render' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:30:in `render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block (2 levels) in render' -/Users/esilvert/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/benchmark.rb:311:in `realtime' -activesupport (7.0.4) lib/active_support/core_ext/benchmark.rb:14:in `ms' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block in render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:91:in `cleanup_view_runtime' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:34:in `cleanup_view_runtime' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:21:in `render' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:38:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 10:59:19 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.5ms | Allocations: 2064) - Rendered layout layouts/application.html.erb (Duration: 1.6ms | Allocations: 2141) -Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms | Allocations: 5899) - - - -ActionView::Template::Error (Missing template app/views/components/template.html.erb with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? components/template - view_components/preview - view_components/index - rails/mailers/email - view_components/previews - test_mailer/test_email): - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - 7: <% else %> - 8: <%= render template: @render_args[:template], locals: @render_args[:locals] || {} %> - 9: <% end %> - 10: - 11: <% if ViewComponent::Base.config.show_previews_source %> - -actionview (7.0.4) lib/action_view/path_set.rb:49:in `find' -actionview (7.0.4) lib/action_view/lookup_context.rb:127:in `find' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:49:in `determine_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:7:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:22:in `render' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:37:in `block in render' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:33:in `render' -view_component (2.81.0) app/views/view_components/preview.html.erb:8 -actionview (7.0.4) lib/action_view/base.rb:244:in `public_send' -actionview (7.0.4) lib/action_view/base.rb:244:in `_run' -actionview (7.0.4) lib/action_view/template.rb:157:in `block in render' -activesupport (7.0.4) lib/active_support/notifications.rb:208:in `instrument' -actionview (7.0.4) lib/action_view/template.rb:361:in `instrument_render_template' -actionview (7.0.4) lib/action_view/template.rb:155:in `render' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:65:in `block (2 levels) in render_template' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:60:in `block in render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:75:in `block in render_with_layout' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:74:in `render_with_layout' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:59:in `render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:11:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/rendering.rb:117:in `block in _render_template' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/rendering.rb:116:in `_render_template' -actionpack (7.0.4) lib/action_controller/metal/streaming.rb:216:in `_render_template' -actionview (7.0.4) lib/action_view/rendering.rb:103:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:46:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/renderers.rb:141:in `render_to_body' -actionpack (7.0.4) lib/abstract_controller/rendering.rb:25:in `render' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:30:in `render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block (2 levels) in render' -/Users/esilvert/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/benchmark.rb:311:in `realtime' -activesupport (7.0.4) lib/active_support/core_ext/benchmark.rb:14:in `ms' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block in render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:91:in `cleanup_view_runtime' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:34:in `cleanup_view_runtime' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:21:in `render' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:38:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 10:59:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.5ms | Allocations: 2050) - Rendered layout layouts/application.html.erb (Duration: 1.6ms | Allocations: 2126) -Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms | Allocations: 5880) - - - -ActionView::Template::Error (Missing template components/template.html.erb with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? components/template - view_components/preview - view_components/index - view_components/previews - layouts/mailer - view_component_contrib/preview): - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - 7: <% else %> - 8: <%= render template: @render_args[:template], locals: @render_args[:locals] || {} %> - 9: <% end %> - 10: - 11: <% if ViewComponent::Base.config.show_previews_source %> - -actionview (7.0.4) lib/action_view/path_set.rb:49:in `find' -actionview (7.0.4) lib/action_view/lookup_context.rb:127:in `find' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:49:in `determine_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:7:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:22:in `render' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:37:in `block in render' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:33:in `render' -view_component (2.81.0) app/views/view_components/preview.html.erb:8 -actionview (7.0.4) lib/action_view/base.rb:244:in `public_send' -actionview (7.0.4) lib/action_view/base.rb:244:in `_run' -actionview (7.0.4) lib/action_view/template.rb:157:in `block in render' -activesupport (7.0.4) lib/active_support/notifications.rb:208:in `instrument' -actionview (7.0.4) lib/action_view/template.rb:361:in `instrument_render_template' -actionview (7.0.4) lib/action_view/template.rb:155:in `render' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:65:in `block (2 levels) in render_template' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:60:in `block in render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:75:in `block in render_with_layout' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:74:in `render_with_layout' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:59:in `render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:11:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/rendering.rb:117:in `block in _render_template' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/rendering.rb:116:in `_render_template' -actionpack (7.0.4) lib/action_controller/metal/streaming.rb:216:in `_render_template' -actionview (7.0.4) lib/action_view/rendering.rb:103:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:46:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/renderers.rb:141:in `render_to_body' -actionpack (7.0.4) lib/abstract_controller/rendering.rb:25:in `render' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:30:in `render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block (2 levels) in render' -/Users/esilvert/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/benchmark.rb:311:in `realtime' -activesupport (7.0.4) lib/active_support/core_ext/benchmark.rb:14:in `ms' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block in render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:91:in `cleanup_view_runtime' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:34:in `cleanup_view_runtime' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:21:in `render' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:38:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 10:59:44 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.5ms | Allocations: 2048) - Rendered layout layouts/application.html.erb (Duration: 1.5ms | Allocations: 2124) -Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms | Allocations: 5878) - - - -ActionView::Template::Error (Missing template components/template.html.erb with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? components/template - view_components/preview - view_components/index - view_components/previews - layouts/mailer - view_component_contrib/preview): - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - 7: <% else %> - 8: <%= render template: @render_args[:template], locals: @render_args[:locals] || {} %> - 9: <% end %> - 10: - 11: <% if ViewComponent::Base.config.show_previews_source %> - -actionview (7.0.4) lib/action_view/path_set.rb:49:in `find' -actionview (7.0.4) lib/action_view/lookup_context.rb:127:in `find' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:49:in `determine_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:7:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:22:in `render' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:37:in `block in render' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:33:in `render' -view_component (2.81.0) app/views/view_components/preview.html.erb:8 -actionview (7.0.4) lib/action_view/base.rb:244:in `public_send' -actionview (7.0.4) lib/action_view/base.rb:244:in `_run' -actionview (7.0.4) lib/action_view/template.rb:157:in `block in render' -activesupport (7.0.4) lib/active_support/notifications.rb:208:in `instrument' -actionview (7.0.4) lib/action_view/template.rb:361:in `instrument_render_template' -actionview (7.0.4) lib/action_view/template.rb:155:in `render' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:65:in `block (2 levels) in render_template' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:60:in `block in render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:75:in `block in render_with_layout' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:74:in `render_with_layout' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:59:in `render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:11:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/rendering.rb:117:in `block in _render_template' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/rendering.rb:116:in `_render_template' -actionpack (7.0.4) lib/action_controller/metal/streaming.rb:216:in `_render_template' -actionview (7.0.4) lib/action_view/rendering.rb:103:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:46:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/renderers.rb:141:in `render_to_body' -actionpack (7.0.4) lib/abstract_controller/rendering.rb:25:in `render' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:30:in `render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block (2 levels) in render' -/Users/esilvert/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/benchmark.rb:311:in `realtime' -activesupport (7.0.4) lib/active_support/core_ext/benchmark.rb:14:in `ms' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block in render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:91:in `cleanup_view_runtime' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:34:in `cleanup_view_runtime' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:21:in `render' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:38:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:01:27 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 2103) - Rendered layout layouts/application.html.erb (Duration: 2.1ms | Allocations: 2180) -Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms | Allocations: 5937) - - - -ActionView::Template::Error (Missing template /template.html.erb with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? components/template - test_mailer/test_email - rails/mailers/email - layouts/mailer - rails/mailers/mailer - /application_view_component): - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - 7: <% else %> - 8: <%= render template: @render_args[:template], locals: @render_args[:locals] || {} %> - 9: <% end %> - 10: - 11: <% if ViewComponent::Base.config.show_previews_source %> - -actionview (7.0.4) lib/action_view/path_set.rb:49:in `find' -actionview (7.0.4) lib/action_view/lookup_context.rb:127:in `find' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:49:in `determine_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:7:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:22:in `render' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:37:in `block in render' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:33:in `render' -view_component (2.81.0) app/views/view_components/preview.html.erb:8 -actionview (7.0.4) lib/action_view/base.rb:244:in `public_send' -actionview (7.0.4) lib/action_view/base.rb:244:in `_run' -actionview (7.0.4) lib/action_view/template.rb:157:in `block in render' -activesupport (7.0.4) lib/active_support/notifications.rb:208:in `instrument' -actionview (7.0.4) lib/action_view/template.rb:361:in `instrument_render_template' -actionview (7.0.4) lib/action_view/template.rb:155:in `render' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:65:in `block (2 levels) in render_template' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:60:in `block in render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:75:in `block in render_with_layout' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:74:in `render_with_layout' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:59:in `render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:11:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/rendering.rb:117:in `block in _render_template' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/rendering.rb:116:in `_render_template' -actionpack (7.0.4) lib/action_controller/metal/streaming.rb:216:in `_render_template' -actionview (7.0.4) lib/action_view/rendering.rb:103:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:46:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/renderers.rb:141:in `render_to_body' -actionpack (7.0.4) lib/abstract_controller/rendering.rb:25:in `render' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:30:in `render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block (2 levels) in render' -/Users/esilvert/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/benchmark.rb:311:in `realtime' -activesupport (7.0.4) lib/active_support/core_ext/benchmark.rb:14:in `ms' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block in render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:91:in `cleanup_view_runtime' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:34:in `cleanup_view_runtime' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:21:in `render' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:38:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:02:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 2112) - Rendered layout layouts/application.html.erb (Duration: 1.7ms | Allocations: 2188) -Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms | Allocations: 6009) - - - -ActionView::Template::Error (Missing template /preview_template.html.erb with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? /preview_template - demo/preview - view_components/preview - view_component_contrib/preview - view_components/previews - /template): - 5: <%= render_component(@render_args[:component], &@render_args[:block]) %> - 6: <% end %> - 7: <% else %> - 8: <%= render template: @render_args[:template], locals: @render_args[:locals] || {} %> - 9: <% end %> - 10: - 11: <% if ViewComponent::Base.config.show_previews_source %> - -actionview (7.0.4) lib/action_view/path_set.rb:49:in `find' -actionview (7.0.4) lib/action_view/lookup_context.rb:127:in `find' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:49:in `determine_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:7:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:22:in `render' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:37:in `block in render' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/helpers/rendering_helper.rb:33:in `render' -view_component (2.81.0) app/views/view_components/preview.html.erb:8 -actionview (7.0.4) lib/action_view/base.rb:244:in `public_send' -actionview (7.0.4) lib/action_view/base.rb:244:in `_run' -actionview (7.0.4) lib/action_view/template.rb:157:in `block in render' -activesupport (7.0.4) lib/active_support/notifications.rb:208:in `instrument' -actionview (7.0.4) lib/action_view/template.rb:361:in `instrument_render_template' -actionview (7.0.4) lib/action_view/template.rb:155:in `render' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:65:in `block (2 levels) in render_template' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:60:in `block in render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:75:in `block in render_with_layout' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:74:in `render_with_layout' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:59:in `render_template' -actionview (7.0.4) lib/action_view/renderer/template_renderer.rb:11:in `render' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:61:in `render_template_to_object' -actionview (7.0.4) lib/action_view/renderer/renderer.rb:29:in `render_to_object' -actionview (7.0.4) lib/action_view/rendering.rb:117:in `block in _render_template' -actionview (7.0.4) lib/action_view/base.rb:270:in `in_rendering_context' -actionview (7.0.4) lib/action_view/rendering.rb:116:in `_render_template' -actionpack (7.0.4) lib/action_controller/metal/streaming.rb:216:in `_render_template' -actionview (7.0.4) lib/action_view/rendering.rb:103:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:46:in `render_to_body' -actionpack (7.0.4) lib/action_controller/metal/renderers.rb:141:in `render_to_body' -actionpack (7.0.4) lib/abstract_controller/rendering.rb:25:in `render' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:30:in `render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block (2 levels) in render' -/Users/esilvert/.rvm/rubies/ruby-3.1.2/lib/ruby/3.1.0/benchmark.rb:311:in `realtime' -activesupport (7.0.4) lib/active_support/core_ext/benchmark.rb:14:in `ms' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:22:in `block in render' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:91:in `cleanup_view_runtime' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:34:in `cleanup_view_runtime' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:21:in `render' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:38:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:02:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.1ms | Allocations: 187) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.7ms | Allocations: 675) - Rendered layout layouts/application.html.erb (Duration: 4.1ms | Allocations: 6132) -Completed 200 OK in 9ms (Views: 5.0ms | ActiveRecord: 0.0ms | Allocations: 9987) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:05:58 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 515) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 995) - Rendered layout layouts/application.html.erb (Duration: 8.6ms | Allocations: 6407) -Completed 200 OK in 14ms (Views: 9.8ms | ActiveRecord: 0.0ms | Allocations: 9652) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:06:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.9ms | Allocations: 345) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.1ms | Allocations: 560) - Rendered layout layouts/application.html.erb (Duration: 7.6ms | Allocations: 1740) -Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.0ms | Allocations: 2995) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:06:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 777) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 1258) - Rendered layout layouts/application.html.erb (Duration: 4.1ms | Allocations: 6670) -Completed 200 OK in 9ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 9881) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:06:59 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 717) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 1202) - Rendered layout layouts/application.html.erb (Duration: 5.4ms | Allocations: 6651) -Completed 200 OK in 11ms (Views: 6.6ms | ActiveRecord: 0.0ms | Allocations: 9868) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:07:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 482) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 697) - Rendered layout layouts/application.html.erb (Duration: 2.0ms | Allocations: 1877) -Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms | Allocations: 3132) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:08:37 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 717) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 1197) - Rendered layout layouts/application.html.erb (Duration: 6.2ms | Allocations: 6587) -Completed 200 OK in 12ms (Views: 7.5ms | ActiveRecord: 0.0ms | Allocations: 9849) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:08:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 483) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 698) - Rendered layout layouts/application.html.erb (Duration: 3.5ms | Allocations: 1857) -Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 3121) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:08:59 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.8ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 5.1ms | Allocations: 1878) -Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms | Allocations: 3082) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:09:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 509) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 724) - Rendered layout layouts/application.html.erb (Duration: 2.9ms | Allocations: 1919) -Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 3122) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:09:22 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.4ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.4ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 6.6ms | Allocations: 1886) -Completed 200 OK in 11ms (Views: 8.2ms | ActiveRecord: 0.0ms | Allocations: 3089) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:09:29 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 735) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1216) - Rendered layout layouts/application.html.erb (Duration: 4.3ms | Allocations: 6646) -Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 9879) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:09:36 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 727) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1212) - Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 6652) -Completed 200 OK in 13ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 9884) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:11:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.9ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 15.5ms | Allocations: 7167) -Completed 200 OK in 24ms (Views: 19.3ms | ActiveRecord: 0.0ms | Allocations: 8430) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:12:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.0ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.9ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 18.3ms | Allocations: 5826) -Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.0ms | Allocations: 7029) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:13:26 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.6ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.3ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 92.6ms | Allocations: 52476) -Completed 200 OK in 122ms (Views: 104.9ms | ActiveRecord: 0.0ms | Allocations: 62322) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:15:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 10.6ms | Allocations: 6425) -Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.0ms | Allocations: 8192) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:15:05 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 2.4ms | Allocations: 1875) -Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.0ms | Allocations: 3147) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:15:29 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.0ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 8.5ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 113.6ms | Allocations: 53077) -Completed 200 OK in 140ms (Views: 123.4ms | ActiveRecord: 0.0ms | Allocations: 62923) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:15:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 2407) -Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 4162) - - - -ActionController::RoutingError (No route matches [GET] "/tailwind-3d77b397c83ec8686c2c17999cf7bf29bd5a43ae47e631b1eacbc6deec753a71.css"): - - -ActionController::RoutingError (No route matches [GET] "/controllers/application-368d98631bccbf2349e0d4f8269afb3fe9625118341966de054759d96ea86c7e.js"): - - -ActionController::RoutingError (No route matches [GET] "/tailwind-3d77b397c83ec8686c2c17999cf7bf29bd5a43ae47e631b1eacbc6deec753a71.css"): - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:15:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 530) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 746) - Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 1949) -Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms | Allocations: 3244) - - - -ActionController::RoutingError (No route matches [GET] "/tailwind-3d77b397c83ec8686c2c17999cf7bf29bd5a43ae47e631b1eacbc6deec753a71.css"): - - -ActionController::RoutingError (No route matches [GET] "/controllers/application-368d98631bccbf2349e0d4f8269afb3fe9625118341966de054759d96ea86c7e.js"): - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:15:53 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.2ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 8.7ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 131.5ms | Allocations: 120560) -Completed 200 OK in 158ms (Views: 143.0ms | ActiveRecord: 0.0ms | Allocations: 130407) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:16:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.5ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 32.3ms | Allocations: 25925) -Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.0ms | Allocations: 27688) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:16:40 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 17.0ms | Allocations: 8085) -Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.0ms | Allocations: 9363) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:17:26 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.0ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 14.5ms | Allocations: 7719) -Completed 200 OK in 25ms (Views: 16.6ms | ActiveRecord: 0.0ms | Allocations: 8929) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:17:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 8.7ms | Allocations: 7708) -Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.0ms | Allocations: 8911) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:17:58 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 703) - Rendered layout layouts/application.html.erb (Duration: 9.7ms | Allocations: 7726) -Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.0ms | Allocations: 8930) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:18:18 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 7.5ms | Allocations: 7731) -Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.0ms | Allocations: 8940) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:18:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 7.7ms | Allocations: 7732) -Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.0ms | Allocations: 8935) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:20:43 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.2ms | Allocations: 490) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.4ms | Allocations: 705) - Rendered layout layouts/application.html.erb (Duration: 33.4ms | Allocations: 7728) -Completed 200 OK in 49ms (Views: 36.5ms | ActiveRecord: 0.0ms | Allocations: 8933) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:21:13 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 8.4ms | Allocations: 7721) -Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.0ms | Allocations: 8925) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:22:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 19.9ms | Allocations: 7738) -Completed 200 OK in 23ms (Views: 20.8ms | Allocations: 8939) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:22:22 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 8.1ms | Allocations: 7736) -Completed 200 OK in 10ms (Views: 9.1ms | Allocations: 8937) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:22:30 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.4ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 7.9ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 176.7ms | Allocations: 146798) -Completed 200 OK in 201ms (Views: 185.9ms | ActiveRecord: 0.0ms | Allocations: 156644) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:25:17 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.9ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 35.4ms | Allocations: 25997) -Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.0ms | Allocations: 27761) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:25:36 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 703) - Rendered layout layouts/application.html.erb (Duration: 22.0ms | Allocations: 25330) -Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.0ms | Allocations: 26602) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:25:51 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.2ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.9ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 37.6ms | Allocations: 25415) -Completed 200 OK in 45ms (Views: 39.0ms | ActiveRecord: 0.0ms | Allocations: 26619) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:26:57 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.0ms | Allocations: 490) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.5ms | Allocations: 705) - Rendered layout layouts/application.html.erb (Duration: 76.8ms | Allocations: 56439) -Completed 200 OK in 81ms (Views: 78.3ms | ActiveRecord: 0.0ms | Allocations: 57642) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:27:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.5ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.9ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 24.5ms | Allocations: 7732) -Completed 200 OK in 33ms (Views: 26.7ms | ActiveRecord: 0.0ms | Allocations: 8936) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:27:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.9ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 11.4ms | Allocations: 7728) -Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms | Allocations: 8931) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:28:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 12.0ms | Allocations: 7738) -Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.0ms | Allocations: 8942) - - - -ActionController::RoutingError (No route matches [GET] "/components/demo/index.css"): - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:28:21 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.3ms | Allocations: 547) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.1ms | Allocations: 763) - Rendered layout layouts/application.html.erb (Duration: 31.7ms | Allocations: 25408) -Completed 200 OK in 36ms (Views: 33.1ms | ActiveRecord: 0.0ms | Allocations: 26700) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:28:43 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 726) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 1209) - Rendered layout layouts/application.html.erb (Duration: 38.8ms | Allocations: 61720) -Completed 200 OK in 44ms (Views: 40.2ms | Allocations: 64893) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:29:12 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 12.1ms | Allocations: 7714) -Completed 200 OK in 22ms (Views: 13.6ms | Allocations: 8985) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:29:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.6ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.4ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 73.8ms | Allocations: 62068) -Completed 200 OK in 103ms (Views: 86.5ms | ActiveRecord: 0.0ms | Allocations: 71919) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:29:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 559) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1045) - Rendered layout layouts/application.html.erb (Duration: 8.5ms | Allocations: 8290) -Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.0ms | Allocations: 10054) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:30:18 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.0ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 703) - Rendered layout layouts/application.html.erb (Duration: 17.5ms | Allocations: 7795) -Completed 200 OK in 25ms (Views: 19.0ms | ActiveRecord: 0.0ms | Allocations: 9070) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:30:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.0ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 6.0ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 73.6ms | Allocations: 68955) -Completed 200 OK in 101ms (Views: 84.9ms | ActiveRecord: 0.0ms | Allocations: 78804) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:30:58 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 559) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.6ms | Allocations: 1045) - Rendered layout layouts/application.html.erb (Duration: 12.3ms | Allocations: 8316) -Completed 200 OK in 17ms (Views: 14.3ms | ActiveRecord: 0.0ms | Allocations: 10071) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:31:13 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 12.1ms | Allocations: 7794) -Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.0ms | Allocations: 9078) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:32:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 14.5ms | Allocations: 7724) -Completed 200 OK in 23ms (Views: 16.0ms | ActiveRecord: 0.0ms | Allocations: 8931) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 11:32:50 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.9ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 8.3ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 182.3ms | Allocations: 151236) -Completed 200 OK in 208ms (Views: 193.0ms | ActiveRecord: 0.0ms | Allocations: 161087) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 13:58:13 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 793) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.2ms | Allocations: 1092) -Completed 200 OK in 11ms (Views: 3.2ms | ActiveRecord: 0.0ms | Allocations: 6743) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-12 13:58:22 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 655) - Rendered layout layouts/application.html.erb (Duration: 207.4ms | Allocations: 155097) -Completed 200 OK in 227ms (Views: 209.0ms | ActiveRecord: 0.0ms | Allocations: 157538) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-12 13:58:31 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.5ms | Allocations: 174) - Rendered layout layouts/application.html.erb (Duration: 6.5ms | Allocations: 7718) -Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms | Allocations: 8603) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 13:58:32 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 385) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.2ms | Allocations: 637) -Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.0ms | Allocations: 1159) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 13:59:30 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.6ms | Allocations: 307) -Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 1186) - - -Started GET "/rails/view_component" for ::1 at 2023-01-12 13:59:39 +0100 - -ActionController::RoutingError (No route matches [GET] "/rails/view_component"): - -Started GET "/rails/view_components" for ::1 at 2023-01-12 13:59:42 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 86) -Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 402) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 13:59:47 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.3ms | Allocations: 85) -Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 346) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 13:59:53 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 778) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 1077) -Completed 200 OK in 12ms (Views: 3.4ms | ActiveRecord: 0.0ms | Allocations: 7608) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 13:59:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 834) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1323) - Rendered layout layouts/application.html.erb (Duration: 52.9ms | Allocations: 70321) -Completed 200 OK in 88ms (Views: 54.4ms | ActiveRecord: 0.0ms | Allocations: 74703) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:44:40 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.1ms | Allocations: 487) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.6ms | Allocations: 702) - Rendered layout layouts/application.html.erb (Duration: 13.0ms | Allocations: 7724) -Completed 200 OK in 24ms (Views: 15.3ms | Allocations: 8994) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:46:49 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 490) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 705) - Rendered layout layouts/application.html.erb (Duration: 28.9ms | Allocations: 25275) -Completed 200 OK in 33ms (Views: 30.2ms | Allocations: 26485) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:46:50 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 6.4ms | Allocations: 7733) -Completed 200 OK in 10ms (Views: 7.9ms | Allocations: 8933) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:46:53 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.4ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 703) - Rendered layout layouts/application.html.erb (Duration: 10.8ms | Allocations: 7841) -Completed 200 OK in 15ms (Views: 12.5ms | Allocations: 9044) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:46:58 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 6.1ms | Allocations: 7823) -Completed 200 OK in 9ms (Views: 7.0ms | Allocations: 9029) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:47:14 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 18.3ms | Allocations: 24045) -Completed 200 OK in 20ms (Views: 19.1ms | Allocations: 25252) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:47:17 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.4ms | Allocations: 490) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.6ms | Allocations: 705) - Rendered layout layouts/application.html.erb (Duration: 12.3ms | Allocations: 7823) -Completed 200 OK in 16ms (Views: 13.9ms | Allocations: 9026) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:47:27 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 22.6ms | Allocations: 25264) -Completed 200 OK in 25ms (Views: 23.4ms | Allocations: 26464) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:47:29 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 703) - Rendered layout layouts/application.html.erb (Duration: 6.9ms | Allocations: 7835) -Completed 200 OK in 10ms (Views: 8.1ms | Allocations: 9038) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:47:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.5ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.5ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 80.3ms | Allocations: 66084) -Completed 200 OK in 114ms (Views: 93.4ms | ActiveRecord: 0.0ms | Allocations: 75926) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:48:29 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 10.7ms | Allocations: 8329) -Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.0ms | Allocations: 10090) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:49:14 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.9ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.0ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 178.6ms | Allocations: 146775) -Completed 200 OK in 205ms (Views: 189.8ms | ActiveRecord: 0.0ms | Allocations: 156617) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:49:15 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 6.7ms | Allocations: 8309) -Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.0ms | Allocations: 10061) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:53:15 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 6.6ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 10.1ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 65.3ms | Allocations: 57716) -Completed 200 OK in 93ms (Views: 77.5ms | ActiveRecord: 0.0ms | Allocations: 67559) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:53:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 8319) -Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms | Allocations: 10080) - - - -ActionController::RoutingError (No route matches [GET] "/components/demo/stimulus_controller-fee426cad5b2af9cf20f0c78dddcc30abc5a082858ef1b20beee5836c68e2d0d.js"): - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:53:47 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.8ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 8.4ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 65.6ms | Allocations: 65423) -Completed 200 OK in 94ms (Views: 77.9ms | ActiveRecord: 0.0ms | Allocations: 75265) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:54:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.5ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 19.7ms | Allocations: 25773) -Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.0ms | Allocations: 27527) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:54:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 6.0ms | Allocations: 7792) -Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms | Allocations: 9066) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:54:29 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 7.2ms | Allocations: 7736) -Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.0ms | Allocations: 8939) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 14:54:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 8.1ms | Allocations: 7800) -Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms | Allocations: 9010) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:03:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.1ms | Allocations: 487) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.6ms | Allocations: 702) - Rendered layout layouts/application.html.erb (Duration: 19.3ms | Allocations: 7785) -Completed 200 OK in 27ms (Views: 20.8ms | Allocations: 8986) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:03:22 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 16.4ms | Allocations: 7714) -Completed 200 OK in 20ms (Views: 17.9ms | Allocations: 8914) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:03:35 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.6ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 7.9ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 65.0ms | Allocations: 64488) -Completed 200 OK in 90ms (Views: 75.6ms | ActiveRecord: 0.0ms | Allocations: 74330) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 15:38:32 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 778) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 3.8ms | Allocations: 1077) -Completed 200 OK in 17ms (Views: 7.1ms | ActiveRecord: 0.0ms | Allocations: 7545) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:38:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 834) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1323) - Rendered layout layouts/application.html.erb (Duration: 72.5ms | Allocations: 65723) -Completed 200 OK in 98ms (Views: 73.8ms | ActiveRecord: 0.0ms | Allocations: 70037) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:39:10 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 487) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 702) - Rendered layout layouts/application.html.erb (Duration: 11.0ms | Allocations: 7704) -Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 0.0ms | Allocations: 8970) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:39:40 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.8ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 10.0ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 90.4ms | Allocations: 65767) -Completed 200 OK in 122ms (Views: 103.6ms | ActiveRecord: 0.0ms | Allocations: 75608) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:39:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 558) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 1044) - Rendered layout layouts/application.html.erb (Duration: 5.6ms | Allocations: 8315) -Completed 200 OK in 14ms (Views: 8.2ms | ActiveRecord: 0.0ms | Allocations: 10068) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:39:48 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.2ms | Allocations: 872) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 8.0ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 57.4ms | Allocations: 57450) -Completed 200 OK in 85ms (Views: 70.9ms | ActiveRecord: 0.0ms | Allocations: 67291) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 15:40:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 559) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.8ms | Allocations: 1045) - Rendered layout layouts/application.html.erb (Duration: 8.9ms | Allocations: 8302) -Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.0ms | Allocations: 10063) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 16:40:14 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 669) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.5ms | Allocations: 939) -Completed 200 OK in 6ms (Views: 2.7ms | Allocations: 2536) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 16:40:15 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 277) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.4ms | Allocations: 357) -Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 668) - - -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 16:40:16 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 186) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 664) - Rendered layout layouts/application.html.erb (Duration: 67.9ms | Allocations: 62350) -Completed 200 OK in 73ms (Views: 68.8ms | Allocations: 65270) - - -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 16:40:35 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.6ms | Allocations: 3863) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.5ms | Allocations: 4354) - Rendered layout layouts/application.html.erb (Duration: 5.6ms | Allocations: 4426) -Completed 500 Internal Server Error in 15ms (Allocations: 7676) - - - -ActionView::Template::Error (undefined method `to_sym' for ["generator"]:Array - - @i18n_scope = i18n_scope.split(".").map(&:to_sym) - ^^^^ -Did you mean? to_s - to_set): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/preview_template.html.erb:3 -Started PUT "/__web_console/repl_sessions/8b7d30d420beb146fd67cde2ebeedec6" for ::1 at 2023-01-12 16:42:13 +0100 -Started PUT "/__web_console/repl_sessions/8b7d30d420beb146fd67cde2ebeedec6" for ::1 at 2023-01-12 16:42:13 +0100 -Started PUT "/__web_console/repl_sessions/8b7d30d420beb146fd67cde2ebeedec6" for ::1 at 2023-01-12 16:42:21 +0100 -Started PUT "/__web_console/repl_sessions/8b7d30d420beb146fd67cde2ebeedec6" for ::1 at 2023-01-12 16:42:22 +0100 -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 16:44:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 20.5ms | Allocations: 3894) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 24.8ms | Allocations: 4636) - Rendered layout layouts/application.html.erb (Duration: 25.0ms | Allocations: 4718) -Completed 500 Internal Server Error in 62ms (ActiveRecord: 0.0ms | Allocations: 14569) - - - -ActionView::Template::Error (undefined method `to_sym' for ["generator"]:Array - - @i18n_scope = i18n_scope.split(".").map(&:to_sym) - ^^^^ -Did you mean? to_s - to_set): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/preview_template.html.erb:3 -Started PUT "/__web_console/repl_sessions/c5ad1798e3a4fb39c10ddc7e661d2635" for ::1 at 2023-01-12 16:44:20 +0100 -Started PUT "/__web_console/repl_sessions/c5ad1798e3a4fb39c10ddc7e661d2635" for ::1 at 2023-01-12 16:44:21 +0100 -Started PUT "/__web_console/repl_sessions/c5ad1798e3a4fb39c10ddc7e661d2635" for ::1 at 2023-01-12 16:45:56 +0100 -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 16:57:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 16:58:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 117927.1ms | Allocations: 217277) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 117933.9ms | Allocations: 218019) - Rendered layout layouts/application.html.erb (Duration: 117934.0ms | Allocations: 218101) -Completed 500 Internal Server Error in 117959ms (ActiveRecord: 0.0ms | Allocations: 227955) - - - -ActionView::Template::Error (undefined method `to_sym' for ["generator"]:Array - - @i18n_scope = i18n_scope.split(".").map(&:to_sym) - ^^^^ -Did you mean? to_s - to_set): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 17:06:09 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.5ms | Allocations: 3305) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 6.6ms | Allocations: 3783) - Rendered layout layouts/application.html.erb (Duration: 6.8ms | Allocations: 3856) -Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms | Allocations: 5602) - - - -ActionView::Template::Error (undefined method `to_sym' for ["generator"]:Array - - @i18n_scope = i18n_scope.split(".").map(&:to_sym) - ^^^^ -Did you mean? to_s - to_set): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 17:06:15 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2275.4ms | Allocations: 150819) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2279.4ms | Allocations: 151561) - Rendered layout layouts/application.html.erb (Duration: 2279.5ms | Allocations: 151643) -Completed 500 Internal Server Error in 2304ms (ActiveRecord: 0.0ms | Allocations: 161497) - - - -ActionView::Template::Error (undefined method `to_sym' for ["generator"]:Array - - @i18n_scope = i18n_scope.split(".").map(&:to_sym) - ^^^^ -Did you mean? to_s - to_set): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 17:14:27 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 31260.7ms | Allocations: 303910) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 31264.7ms | Allocations: 304652) - Rendered layout layouts/application.html.erb (Duration: 31264.8ms | Allocations: 304734) -Completed 500 Internal Server Error in 31296ms (ActiveRecord: 0.0ms | Allocations: 314868) - - - -ActionView::Template::Error (undefined method `to_sym' for ["generator"]:Array - - @i18n_scope = i18n_scope.split(".").map(&:to_sym) - ^^^^ -Did you mean? to_s - to_set): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 17:15:22 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 7039.6ms | Allocations: 161816) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 7048.7ms | Allocations: 162568) - Rendered layout layouts/application.html.erb (Duration: 7151.1ms | Allocations: 233224) -Completed 200 OK in 7186ms (Views: 7166.1ms | ActiveRecord: 0.0ms | Allocations: 243506) - - - -ActionController::RoutingError (No route matches [GET] "/components/generator/index.css"): - -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-12 17:16:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.5ms | Allocations: 544) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.8ms | Allocations: 1282) - Rendered layout layouts/application.html.erb (Duration: 77.2ms | Allocations: 64268) -Completed 200 OK in 104ms (Views: 87.7ms | ActiveRecord: 0.0ms | Allocations: 74318) - - - -ActionController::RoutingError (No route matches [GET] "/components/generator/index.css"): - -Started GET "/rails/view_components" for ::1 at 2023-01-12 17:31:36 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 3.5ms | Allocations: 778) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 4.1ms | Allocations: 1077) -Completed 200 OK in 22ms (Views: 12.0ms | ActiveRecord: 0.0ms | Allocations: 7547) - - -Started GET "/rails/view_components" for ::1 at 2023-01-12 17:31:37 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 416) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 681) -Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.0ms | Allocations: 1569) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 17:31:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 820) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 74.0ms | Allocations: 66545) -Completed 200 OK in 91ms (Views: 74.9ms | ActiveRecord: 0.0ms | Allocations: 70639) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 17:31:49 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 486) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 701) - Rendered layout layouts/application.html.erb (Duration: 8.0ms | Allocations: 7703) -Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.0ms | Allocations: 8943) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 17:32:27 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.3ms | Allocations: 491) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.7ms | Allocations: 708) - Rendered layout layouts/application.html.erb (Duration: 45.8ms | Allocations: 25327) -Completed 200 OK in 50ms (Views: 46.7ms | ActiveRecord: 0.0ms | Allocations: 26532) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-12 17:32:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 485) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 700) - Rendered layout layouts/application.html.erb (Duration: 20.1ms | Allocations: 23826) -Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.0ms | Allocations: 25029) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:33:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.2ms | Allocations: 494) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 7.3ms | Allocations: 711) - Rendered layout layouts/application.html.erb (Duration: 47.0ms | Allocations: 25438) -Completed 200 OK in 61ms (Views: 52.3ms | Allocations: 26646) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:33:35 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.5ms | Allocations: 487) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.4ms | Allocations: 702) - Rendered layout layouts/application.html.erb (Duration: 38.1ms | Allocations: 25092) -Completed 200 OK in 49ms (Views: 39.8ms | Allocations: 26292) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:34:18 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 493) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 710) - Rendered layout layouts/application.html.erb (Duration: 39.8ms | Allocations: 25426) -Completed 200 OK in 46ms (Views: 41.3ms | Allocations: 26628) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:35:44 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 703) - Rendered layout layouts/application.html.erb (Duration: 13.1ms | Allocations: 7708) -Completed 200 OK in 18ms (Views: 14.9ms | Allocations: 8908) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:35:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 492) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 708) - Rendered layout layouts/application.html.erb (Duration: 5.8ms | Allocations: 7894) -Completed 200 OK in 9ms (Views: 6.6ms | Allocations: 9097) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:36:05 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.1ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 20.5ms | Allocations: 23941) -Completed 200 OK in 24ms (Views: 21.7ms | Allocations: 25144) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:36:21 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 492) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 708) - Rendered layout layouts/application.html.erb (Duration: 10.5ms | Allocations: 7899) -Completed 200 OK in 13ms (Views: 11.1ms | Allocations: 9102) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:37:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.8ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.3ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 33.0ms | Allocations: 25246) -Completed 200 OK in 43ms (Views: 34.6ms | Allocations: 26448) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:38:37 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 24.7ms | Allocations: 7850) -Completed 200 OK in 35ms (Views: 26.0ms | Allocations: 9053) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:39:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.9ms | Allocations: 493) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.8ms | Allocations: 708) - Rendered layout layouts/application.html.erb (Duration: 34.8ms | Allocations: 25330) -Completed 200 OK in 43ms (Views: 38.7ms | Allocations: 26533) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:39:52 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.3ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.7ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 31.7ms | Allocations: 25278) -Completed 200 OK in 34ms (Views: 32.6ms | Allocations: 26480) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:40:12 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 9.3ms | Allocations: 493) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.8ms | Allocations: 708) - Rendered layout layouts/application.html.erb (Duration: 40.3ms | Allocations: 25245) -Completed 200 OK in 47ms (Views: 41.8ms | Allocations: 26447) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:46:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.8ms | Allocations: 491) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.3ms | Allocations: 706) - Rendered layout layouts/application.html.erb (Duration: 36.6ms | Allocations: 25433) -Completed 200 OK in 46ms (Views: 38.0ms | Allocations: 26635) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:46:11 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 17.4ms | Allocations: 25250) -Completed 200 OK in 19ms (Views: 18.0ms | Allocations: 26452) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 10:46:18 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 493) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.2ms | Allocations: 708) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 25472) -Completed 200 OK in 15ms (Views: 14.4ms | Allocations: 26674) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:13:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 8.7ms | Allocations: 489) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 28.9ms | Allocations: 704) - Rendered layout layouts/application.html.erb (Duration: 88.5ms | Allocations: 25369) -Completed 200 OK in 98ms (Views: 92.6ms | Allocations: 26571) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:17:50 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 37.8ms | Allocations: 8104) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 38.5ms | Allocations: 8333) - Rendered layout layouts/application.html.erb (Duration: 39.1ms | Allocations: 8400) -Completed 500 Internal Server Error in 47ms (Allocations: 9623) - - - -ActionView::Template::Error (undefined local variable or method `name' for #, @__vc_original_view_context=#, @output_buffer="
\n

Oui ", @lookup_context=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>, @view_renderer=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>>, @view_flow=#, @virtual_path="view_components.demo", @__vc_variant=nil, @current_template=nil, @__vc_content_evaluated=false, @__vc_render_in_block=nil> - - @i18n_scope = name.sub('::Component', '').underscore.tr('/', '.') - ^^^^): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/application_view_component.rb:12:in `i18n_scope' -app/components/demo/component.html.erb:2:in `call' -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:18:37 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 7.7ms | Allocations: 5516) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 8.1ms | Allocations: 5730) - Rendered layout layouts/application.html.erb (Duration: 8.2ms | Allocations: 5797) -Completed 500 Internal Server Error in 10ms (Allocations: 7058) - - - -ActionView::Template::Error (undefined local variable or method `name' for #, @__vc_original_view_context=#, @output_buffer="
\n

Oui ", @lookup_context=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>, @view_renderer=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>>, @view_flow=#, @virtual_path="view_components.demo", @__vc_variant=nil, @current_template=nil, @__vc_content_evaluated=false, @__vc_render_in_block=nil> - - @i18n_scope = name.sub('::Component', '').underscore.tr('/', '.') - ^^^^): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/application_view_component.rb:12:in `i18n_scope' -app/components/demo/component.html.erb:2:in `call' -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:18:42 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 345) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 561) - Rendered layout layouts/application.html.erb (Duration: 10.5ms | Allocations: 7884) -Completed 200 OK in 12ms (Views: 11.5ms | Allocations: 9092) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:18:46 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.0ms | Allocations: 5468) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.3ms | Allocations: 5682) - Rendered layout layouts/application.html.erb (Duration: 5.3ms | Allocations: 5750) -Completed 500 Internal Server Error in 7ms (Allocations: 6934) - - - -ActionView::Template::Error (undefined local variable or method `name' for #, @__vc_original_view_context=#, @output_buffer="
\n

Oui ", @lookup_context=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>, @view_renderer=#0, nil=>1}, @handlers_idx={:raw=>0, :erb=>1, :html=>2, :builder=>3, :ruby=>4, :jbuilder=>5, nil=>6}, @formats_idx={:html=>0, nil=>1}, @variants_idx={nil=>0}>, @digest_cache=nil, @cache=true, @prefixes=["view_components", "rails/application"], @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}, @view_paths=#, @path_parser=#, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/spec/components/previews">, #, @path_parser=#, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views">, #, @path_parser=#.*)\/)? - (?_)? - (?.*?) - (?:\.(?[a-z]{2}(?:[-_][A-Z]{2})?))?? - (?:\.(?html|text|js|css|ics|csv|vcf|vtt|png|jpeg|gif|bmp|tiff|svg|mpeg|mp3|ogg|m4a|webm|mp4|otf|ttf|woff|woff2|xml|rss|atom|yaml|multipart_form|url_encoded_form|json|pdf|zip|gzip|turbo_stream))?? - (?:\+(?[^.]*))?? - (?:\.(?raw|erb|html|builder|ruby|jbuilder))? - \z - /x>, @path="/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates">]>>>, @view_flow=#, @virtual_path="view_components.demo", @__vc_variant=nil, @current_template=nil, @__vc_content_evaluated=false, @__vc_render_in_block=nil> - - @i18n_scope = name.sub('::Component', '').underscore.tr('/', '.') - ^^^^): - 1:
- 2: <%- if component -%> - 3: <%= render component %> - 4: <%- else -%> - 5: Failed to infer a component from the preview: <%= error %> - 6: <%- end -%> - -app/components/application_view_component.rb:12:in `i18n_scope' -app/components/demo/component.html.erb:2:in `call' -app/components/preview_template.html.erb:3 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:19:10 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 735) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1215) - Rendered layout layouts/application.html.erb (Duration: 16.8ms | Allocations: 24964) -Completed 200 OK in 24ms (Views: 18.0ms | Allocations: 28185) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:19:18 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.2ms | Allocations: 410) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.6ms | Allocations: 625) - Rendered layout layouts/application.html.erb (Duration: 11.3ms | Allocations: 7810) -Completed 200 OK in 13ms (Views: 12.2ms | Allocations: 9070) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:19:41 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 408) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 623) - Rendered layout layouts/application.html.erb (Duration: 12.4ms | Allocations: 7806) -Completed 200 OK in 14ms (Views: 13.0ms | Allocations: 9007) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:19:57 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 406) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.8ms | Allocations: 621) - Rendered layout layouts/application.html.erb (Duration: 11.9ms | Allocations: 7815) -Completed 200 OK in 15ms (Views: 12.7ms | Allocations: 9016) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:20:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 411) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.0ms | Allocations: 626) - Rendered layout layouts/application.html.erb (Duration: 5.9ms | Allocations: 7737) -Completed 200 OK in 8ms (Views: 6.6ms | Allocations: 8938) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:20:04 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 406) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.0ms | Allocations: 621) - Rendered layout layouts/application.html.erb (Duration: 10.3ms | Allocations: 7800) -Completed 200 OK in 23ms (Views: 21.1ms | Allocations: 9001) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:20:07 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 407) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 622) - Rendered layout layouts/application.html.erb (Duration: 5.7ms | Allocations: 7730) -Completed 200 OK in 7ms (Views: 6.4ms | Allocations: 8931) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:20:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.6ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 9.4ms | Allocations: 1489) - Rendered layout layouts/application.html.erb (Duration: 189.3ms | Allocations: 146386) -Completed 200 OK in 225ms (Views: 203.7ms | ActiveRecord: 0.0ms | Allocations: 156233) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:21:10 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 958) - Rendered layout layouts/application.html.erb (Duration: 10.2ms | Allocations: 8239) -Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.0ms | Allocations: 10001) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:21:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.2ms | Allocations: 408) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.6ms | Allocations: 623) - Rendered layout layouts/application.html.erb (Duration: 16.2ms | Allocations: 8905) -Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.0ms | Allocations: 10176) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:21:50 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 406) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 621) - Rendered layout layouts/application.html.erb (Duration: 10.6ms | Allocations: 8792) -Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms | Allocations: 10003) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:22:13 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.4ms | Allocations: 409) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 624) - Rendered layout layouts/application.html.erb (Duration: 21.7ms | Allocations: 8821) -Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.0ms | Allocations: 10024) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-13 16:22:49 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 407) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 622) - Rendered layout layouts/application.html.erb (Duration: 10.4ms | Allocations: 7646) -Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.0ms | Allocations: 8850) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-16 10:04:30 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} -Completed 404 Not Found in 11ms (ActiveRecord: 0.0ms | Allocations: 5393) - - - -AbstractController::ActionNotFound (Component preview 'demo_component/default' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:63:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:23:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:68:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:04:35 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 221) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 491) -Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 1553) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:04:37 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 85) -Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms | Allocations: 395) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:04:45 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 85) -Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 361) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:05:04 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 85) -Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 361) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:05:04 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 356) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:05:04 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 356) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:05:24 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 0.0ms | Allocations: 6657) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:06:20 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 729) -Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.0ms | Allocations: 6657) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:06:49 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 0.0ms | Allocations: 6678) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:06:51 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 478) -Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 1386) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:07:09 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.7ms | Allocations: 729) -Completed 200 OK in 8ms (Views: 2.9ms | ActiveRecord: 0.0ms | Allocations: 6677) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:07:10 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 478) -Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.0ms | Allocations: 1386) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:07:48 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.4ms | ActiveRecord: 0.0ms | Allocations: 6662) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:08:03 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 729) -Completed 200 OK in 12ms (Views: 4.3ms | ActiveRecord: 0.0ms | Allocations: 6661) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:10:11 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.2ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.4ms | ActiveRecord: 0.0ms | Allocations: 6666) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:10:45 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 478) -Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms | Allocations: 1377) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:12:18 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.5ms | Allocations: 308) -Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 1214) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:12:23 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.5ms | ActiveRecord: 0.0ms | Allocations: 6667) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:12:25 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.7ms | Allocations: 478) -Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 1376) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:12:25 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.3ms | Allocations: 84) -Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 399) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:04 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.5ms | ActiveRecord: 0.0ms | Allocations: 6672) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:05 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 478) -Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms | Allocations: 1381) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:05 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 85) -Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 411) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:06 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 372) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:06 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 84) -Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 371) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:29 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 729) -Completed 200 OK in 9ms (Views: 3.3ms | ActiveRecord: 0.0ms | Allocations: 6672) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:29 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.5ms | Allocations: 478) -Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 1381) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:32 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.4ms | Allocations: 85) -Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 411) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:49 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.2ms | ActiveRecord: 0.0ms | Allocations: 6676) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:13:50 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.3ms | Allocations: 478) -Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.0ms | Allocations: 1386) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:14:27 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.4ms | Allocations: 308) -Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 1229) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:14:28 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.2ms | Allocations: 85) -Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 418) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:14:36 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 212) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.3ms | Allocations: 308) -Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 1227) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:14:45 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.7ms | Allocations: 729) -Completed 200 OK in 8ms (Views: 2.7ms | ActiveRecord: 0.0ms | Allocations: 6685) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:15:07 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.5ms | Allocations: 478) -Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 1580) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:19:49 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 729) -Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 0.0ms | Allocations: 6657) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:21:22 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.2ms | Allocations: 478) -Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.0ms | Allocations: 1366) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:22:21 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 85) -Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 397) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:22:22 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 85) -Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 361) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:35:05 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.1ms | Allocations: 729) -Completed 200 OK in 11ms (Views: 4.2ms | ActiveRecord: 0.0ms | Allocations: 6666) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:39:29 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 729) -Completed 200 OK in 9ms (Views: 3.8ms | ActiveRecord: 0.0ms | Allocations: 6651) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:39:31 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 213) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 478) -Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms | Allocations: 1361) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:39:31 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.0ms | Allocations: 7) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.1ms | Allocations: 84) -Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 385) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:40:55 +0100 -Processing by ViewComponentsController#index as HTML -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:41:51 +0100 -Processing by ViewComponentsController#index as HTML -Completed 500 Internal Server Error in 60578ms (ActiveRecord: 0.0ms | Allocations: 222414) - - - -SystemExit (exit): - -(rdbg)//Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/controllers/concerns/view_component/preview_actions.rb:1:in `exit' -(rdbg)//Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/controllers/concerns/view_component/preview_actions.rb:1:in `index' -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:43:56 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 2.4ms | Allocations: 415) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 3.4ms | Allocations: 727) -Completed 200 OK in 5392ms (Views: 11.5ms | ActiveRecord: 0.0ms | Allocations: 173438) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:44:30 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 417) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.6ms | Allocations: 729) -Completed 200 OK in 8ms (Views: 2.7ms | ActiveRecord: 0.0ms | Allocations: 6899) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:44:57 +0100 -Processing by ViewComponentsController#index as HTML -Completed 500 Internal Server Error in 247529ms (ActiveRecord: 0.0ms | Allocations: 194036) - - - -SystemExit (exit): - -(rdbg)//Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/lib/view_component_contrib/preview/abstract.rb:1:in `exit' -(rdbg)//Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/lib/view_component_contrib/preview/abstract.rb:1:in `all' -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:49:15 +0100 -Processing by ViewComponentsController#index as HTML -Completed 500 Internal Server Error in 337568ms (ActiveRecord: 0.0ms | Allocations: 720486) - - - -Zeitwerk::NameError (expected file /Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/preview.rb to define constant Demo::Preview, but didn't - - raise Zeitwerk::NameError.new("expected file #{file} to define constant #{cpath}, but didn't", cref.last) - ^^^^^): - -zeitwerk (2.6.6) lib/zeitwerk/loader/callbacks.rb:25:in `on_file_autoloaded' -zeitwerk (2.6.6) lib/zeitwerk/kernel.rb:42:in `require' -activesupport (7.0.4) lib/active_support/dependencies/require_dependency.rb:21:in `require_dependency' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `block (2 levels) in load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `each' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `block in load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:14:in `each' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:14:in `load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/abstract.rb:18:in `all' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:18:in `index' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:55:19 +0100 -Processing by ViewComponentsController#index as HTML -Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms | Allocations: 5419) - - - -Zeitwerk::NameError (expected file /Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/preview.rb to define constant Demo::Preview, but didn't - - raise Zeitwerk::NameError.new("expected file #{file} to define constant #{cpath}, but didn't", cref.last) - ^^^^^): - -zeitwerk (2.6.6) lib/zeitwerk/loader/callbacks.rb:25:in `on_file_autoloaded' -zeitwerk (2.6.6) lib/zeitwerk/kernel.rb:42:in `require' -activesupport (7.0.4) lib/active_support/dependencies/require_dependency.rb:21:in `require_dependency' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `block (2 levels) in load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `each' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `block in load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:14:in `each' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:14:in `load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/abstract.rb:17:in `all' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:17:in `index' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:55:37 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 607) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.0ms | Allocations: 877) -Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.0ms | Allocations: 2442) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-16 10:56:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.1ms | Allocations: 732) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.4ms | Allocations: 1210) - Rendered layout layouts/application.html.erb (Duration: 173.1ms | Allocations: 152588) -Completed 200 OK in 198ms (Views: 174.5ms | ActiveRecord: 0.0ms | Allocations: 158479) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:57:10 +0100 -Processing by ViewComponentsController#index as HTML -Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms | Allocations: 5624) - - - -Zeitwerk::NameError (expected file /Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/generator/preview.rb to define constant Generator::Preview, but didn't - - raise Zeitwerk::NameError.new("expected file #{file} to define constant #{cpath}, but didn't", cref.last) - ^^^^^): - -zeitwerk (2.6.6) lib/zeitwerk/loader/callbacks.rb:25:in `on_file_autoloaded' -zeitwerk (2.6.6) lib/zeitwerk/kernel.rb:42:in `require' -activesupport (7.0.4) lib/active_support/dependencies/require_dependency.rb:21:in `require_dependency' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `block (2 levels) in load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `each' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:15:in `block in load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:14:in `each' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/sidecarable.rb:14:in `load_previews' -view_component-contrib (0.1.1) lib/view_component_contrib/preview/abstract.rb:17:in `all' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:17:in `index' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:57:49 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 740) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 1011) -Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 2811) - - -Started GET "/rails/view_components/generator/default" for ::1 at 2023-01-16 10:57:50 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"generator/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.4ms | Allocations: 189) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 669) - Rendered layout layouts/application.html.erb (Duration: 68.6ms | Allocations: 69604) -Completed 200 OK in 82ms (Views: 70.4ms | ActiveRecord: 0.0ms | Allocations: 73973) - - -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-16 10:57:56 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} -Completed 404 Not Found in 3ms (ActiveRecord: 0.0ms | Allocations: 884) - - - -AbstractController::ActionNotFound (Component preview 'demo_component/default' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:64:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:24:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:69:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo_component/default" for ::1 at 2023-01-16 10:57:59 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo_component/default"} -Completed 404 Not Found in 2ms (ActiveRecord: 0.0ms | Allocations: 837) - - - -AbstractController::ActionNotFound (Component preview 'demo_component/default' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:64:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:24:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:69:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/" for ::1 at 2023-01-16 10:58:05 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 348) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.9ms | Allocations: 428) -Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 717) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-16 10:58:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 724) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.1ms | Allocations: 1200) - Rendered layout layouts/application.html.erb (Duration: 43.4ms | Allocations: 9109) -Completed 200 OK in 53ms (Views: 46.0ms | ActiveRecord: 0.0ms | Allocations: 11095) - - -Started GET "/rails/view_components" for ::1 at 2023-01-16 10:58:10 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 348) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 0.8ms | Allocations: 429) -Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 726) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-16 14:19:40 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 637) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1117) - Rendered layout layouts/application.html.erb (Duration: 20.4ms | Allocations: 25667) -Completed 200 OK in 25ms (Views: 21.3ms | Allocations: 28778) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 15:20:17 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} -Completed 404 Not Found in 1ms (Allocations: 934) - - - -AbstractController::ActionNotFound (Component preview 'demo/default' not found.): - -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:64:in `find_preview' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:24:in `previews' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -i18n (1.12.0) lib/i18n.rb:322:in `with_locale' -view_component (2.81.0) app/controllers/concerns/view_component/preview_actions.rb:69:in `set_locale' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:27:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 15:21:11 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 719) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1200) - Rendered layout layouts/application.html.erb (Duration: 32.9ms | Allocations: 30572) -Completed 500 Internal Server Error in 42ms (Allocations: 33892) - - - -ActionView::Template::Error (undefined local variable or method `hotwire_livereload_tags' for # - - '.freeze;@output_buffer.append=( hotwire_livereload_tags if Rails.env.development? );@output_buffer.safe_append=' - ^^^^^^^^^^^^^^^^^^^^^^^): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 15:36:43 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 221.6ms | Allocations: 173706) -Completed 500 Internal Server Error in 240ms (ActiveRecord: 0.0ms | Allocations: 183446) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 15:48:27 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.3ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.0ms | Allocations: 956) - Rendered layout layouts/application.html.erb (Duration: 22.4ms | Allocations: 10945) -Completed 500 Internal Server Error in 34ms (Allocations: 12599) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 16:35:02 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 86.7ms | Allocations: 67061) -Completed 500 Internal Server Error in 118ms (ActiveRecord: 0.0ms | Allocations: 76812) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 16:38:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 261.4ms | Allocations: 179204) -Completed 500 Internal Server Error in 291ms (ActiveRecord: 0.0ms | Allocations: 188945) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 16:48:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 76.2ms | Allocations: 67096) -Completed 500 Internal Server Error in 106ms (ActiveRecord: 0.0ms | Allocations: 76836) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/_head_action_cable.html.erb"], :force_reload=>false} -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:03:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.8ms | Allocations: 956) - Rendered layout layouts/application.html.erb (Duration: 16.2ms | Allocations: 11055) -Completed 500 Internal Server Error in 20ms (Allocations: 12718) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? /head_action_cable - view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:07:57 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 16.7ms | Allocations: 10393) -Completed 500 Internal Server Error in 20ms (Allocations: 11570) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? /head_action_cable - view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/_head_action_cable.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/hotwire/livereload/_head_action_cable.html.erb"], :force_reload=>false} -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/hotwire/livereload/_head_action_cable.html.erb"], :force_reload=>false} -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:08:24 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.4ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.6ms | Allocations: 956) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 1.1ms | Allocations: 965) - Rendered layout layouts/application.html.erb (Duration: 11.1ms | Allocations: 10537) -Completed 200 OK in 17ms (Views: 13.8ms | Allocations: 12183) - - -Started GET "/cable" for ::1 at 2023-01-17 17:08:24 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-17 17:08:25 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.rb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.rb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:08:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 802) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 1286) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 0.9ms | Allocations: 966) - Rendered layout layouts/application.html.erb (Duration: 20.3ms | Allocations: 28416) -Completed 200 OK in 26ms (Views: 21.2ms | Allocations: 31652) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.rb"], :force_reload=>false} -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.rb"], :force_reload=>false} -Started GET "/cable" for ::1 at 2023-01-17 17:08:52 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-17 17:08:52 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.rb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.rb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:08:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 637) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1117) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 0.8ms | Allocations: 959) - Rendered layout layouts/application.html.erb (Duration: 17.5ms | Allocations: 28064) -Completed 200 OK in 24ms (Views: 18.8ms | Allocations: 31220) - - -Started GET "/cable" for ::1 at 2023-01-17 17:09:00 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-17 17:09:00 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:09:16 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.4ms | Allocations: 488) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.7ms | Allocations: 708) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 0.9ms | Allocations: 959) - Rendered layout layouts/application.html.erb (Duration: 45.7ms | Allocations: 15204) -Completed 200 OK in 48ms (Views: 46.6ms | Allocations: 16469) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:09:16 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.8ms | Allocations: 620) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 3.1ms | Allocations: 968) - Rendered layout layouts/application.html.erb (Duration: 12.6ms | Allocations: 9835) -Completed 200 OK in 14ms (Views: 13.1ms | Allocations: 10968) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-17 17:09:16 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-17 17:09:16 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-17 17:09:16 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:09:20 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 406) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 621) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 0.7ms | Allocations: 959) - Rendered layout layouts/application.html.erb (Duration: 10.0ms | Allocations: 9907) -Completed 200 OK in 12ms (Views: 11.0ms | Allocations: 11043) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:19:04 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.1ms | Allocations: 407) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.8ms | Allocations: 622) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 2.5ms | Allocations: 965) - Rendered layout layouts/application.html.erb (Duration: 20.1ms | Allocations: 9854) -Completed 200 OK in 24ms (Views: 21.7ms | Allocations: 10991) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:20:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.9ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 620) - Rendered hotwire/livereload/_head_action_cable.html.erb (Duration: 1.2ms | Allocations: 959) - Rendered layout layouts/application.html.erb (Duration: 16.7ms | Allocations: 9820) -Completed 200 OK in 20ms (Views: 18.1ms | Allocations: 10956) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/hotwire/livereload/_head_action_cable.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/hotwire/livereload/_head_action_cable.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:20:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 953) - Rendered layout layouts/application.html.erb (Duration: 11.5ms | Allocations: 10927) -Completed 500 Internal Server Error in 15ms (Allocations: 12507) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:22:37 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 76.4ms | Allocations: 71242) -Completed 500 Internal Server Error in 93ms (ActiveRecord: 0.0ms | Allocations: 80981) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:22:39 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 953) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 11028) -Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms | Allocations: 12690) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:34:59 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.6ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.4ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 25.7ms | Allocations: 10369) -Completed 500 Internal Server Error in 32ms (Allocations: 11546) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-17 17:36:43 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 15.9ms | Allocations: 10369) -Completed 500 Internal Server Error in 19ms (Allocations: 11485) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:35:34 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.4ms | Allocations: 408) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 6.6ms | Allocations: 623) - Rendered layout layouts/application.html.erb (Duration: 27.6ms | Allocations: 10372) -Completed 500 Internal Server Error in 34ms (Allocations: 11488) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:35:48 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.0ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 10.4ms | Allocations: 10366) -Completed 500 Internal Server Error in 12ms (Allocations: 11476) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:37:37 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.4ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 12.7ms | Allocations: 10366) -Completed 500 Internal Server Error in 15ms (Allocations: 11476) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:39:07 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.5ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 12.3ms | Allocations: 10366) -Completed 500 Internal Server Error in 15ms (Allocations: 11476) - - - -ActionView::Template::Error (Missing partial hotwire/livereload/_head_action_cable with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]}. - -Searched in: - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-contrib-0.1.1/app/views" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/test/components/previews" - * "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views" - * "/Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates" - -Did you mean? view_components/preview_source): - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - 12: <%= hotwire_livereload_tags if Rails.env.development? %> - 13: - 14: - 15: - -app/views/layouts/application.html.erb:12 -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/layouts/application.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/layouts/.#application.html.erb"], :force_reload=>false} -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:39:36 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.5ms | Allocations: 953) - Rendered layout layouts/application.html.erb (Duration: 8.9ms | Allocations: 10249) -Completed 200 OK in 12ms (Views: 10.2ms | Allocations: 11969) - - -Started GET "/cable" for ::1 at 2023-01-18 10:39:36 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 10:39:36 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:40:21 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 84.6ms | Allocations: 76817) -Completed 200 OK in 105ms (Views: 88.2ms | ActiveRecord: 0.0ms | Allocations: 86599) - - -Started GET "/cable" for ::1 at 2023-01-18 10:40:21 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 10:40:21 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:41:10 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 64.6ms | Allocations: 65197) -Completed 200 OK in 89ms (Views: 67.2ms | ActiveRecord: 0.0ms | Allocations: 74979) - - -Started GET "/cable" for ::1 at 2023-01-18 10:41:10 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 10:41:11 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:42:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 67.2ms | Allocations: 65525) -Completed 200 OK in 91ms (Views: 70.0ms | ActiveRecord: 0.0ms | Allocations: 75307) - - -Started GET "/cable" for ::1 at 2023-01-18 10:42:00 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 10:42:00 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:42:09 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 473) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 959) - Rendered layout layouts/application.html.erb (Duration: 30.1ms | Allocations: 15497) -Completed 200 OK in 34ms (Views: 32.1ms | ActiveRecord: 0.0ms | Allocations: 17198) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:42:09 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.9ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 6.1ms | Allocations: 9601) -Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms | Allocations: 10801) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-18 10:42:09 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-18 10:42:09 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 10:42:09 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:43:00 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.4ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.8ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 10.0ms | Allocations: 9546) -Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms | Allocations: 10693) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:43:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 409) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 624) - Rendered layout layouts/application.html.erb (Duration: 15.1ms | Allocations: 10823) -Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms | Allocations: 11968) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:43:03 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 406) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 621) - Rendered layout layouts/application.html.erb (Duration: 7.0ms | Allocations: 9618) -Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.0ms | Allocations: 10754) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-18 10:43:03 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-18 10:43:03 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 10:43:03 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/.#component.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 10:43:14 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 406) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.9ms | Allocations: 621) - Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 9600) -Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 10745) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/application_helper.rb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/application_helper.rb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-18 11:32:15 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 637) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1122) - Rendered layout layouts/application.html.erb (Duration: 23.2ms | Allocations: 27946) -Completed 200 OK in 29ms (Views: 24.3ms | Allocations: 31118) - - -Started GET "/cable" for ::1 at 2023-01-18 11:37:25 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 11:37:25 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Finished "/cable" [WebSocket] for ::1 at 2023-01-18 20:44:13 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-18 21:40:53 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-18 21:40:53 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/application_helper.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/index.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/appl... -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/application_helper.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/index.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/app... (via streamed from hotwire-reload) -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component_controller.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/comp... -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component_controller.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/com... (via streamed from hotwire-reload) -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/index.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/application.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/layouts/appli... -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/index.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/javascript/controllers/application.js", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/layouts/appl... (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 10:16:26 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 719) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1205) - Rendered layout layouts/application.html.erb (Duration: 21.3ms | Allocations: 28369) -Completed 200 OK in 28ms (Views: 22.3ms | Allocations: 31718) - - -Started GET "/cable" for ::1 at 2023-01-19 10:21:34 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:21:34 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/.#new.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/.#new.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 10:37:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.4ms | Allocations: 637) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1123) - Rendered layout layouts/application.html.erb (Duration: 20.2ms | Allocations: 27960) -Completed 200 OK in 25ms (Views: 21.7ms | Allocations: 31146) - - -Started GET "/cable" for ::1 at 2023-01-19 10:42:14 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:42:14 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 10:47:05 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 492) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 712) - Rendered layout layouts/application.html.erb (Duration: 10.8ms | Allocations: 9904) -Completed 200 OK in 13ms (Views: 11.6ms | Allocations: 11172) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:05 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:47:05 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:05 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 10:47:05 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 405) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.3ms | Allocations: 620) - Rendered layout layouts/application.html.erb (Duration: 7.1ms | Allocations: 9541) -Completed 200 OK in 13ms (Views: 8.1ms | Allocations: 10676) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:05 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:47:06 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:06 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 10:47:10 +0100 - -ActionController::RoutingError (No route matches [GET] "/login"): - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:10 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 10:47:14 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.7ms | Allocations: 696) - Rendered layout layouts/application.html.erb (Duration: 13.8ms | Allocations: 27081) -Completed 200 OK in 16ms (Views: 15.1ms | Allocations: 28002) - - -Started GET "/cable" for ::1 at 2023-01-19 10:47:14 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:14 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 10:47:23 +0100 - -ActionController::RoutingError (No route matches [POST] "/auth/developer"): - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:47:23 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 10:49:41 +0100 -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 10:49:55 +0100 - -ActionController::RoutingError (No route matches [POST] "/auth/developer/callback"): - -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 10:50:11 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms | Allocations: 639) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/cable" for ::1 at 2023-01-19 10:50:13 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:50:13 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 10:50:14 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 1.0ms | Allocations: 737) - Rendered layout layouts/application.html.erb (Duration: 80.4ms | Allocations: 68875) -Completed 200 OK in 91ms (Views: 82.7ms | ActiveRecord: 0.0ms | Allocations: 70814) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:50:14 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:50:14 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:50:14 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 10:50:15 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:50:15 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 10:50:19 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"silvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms | Allocations: 516) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/.#new.html.erb"], :force_reload=>false} -Started GET "/cable" for ::1 at 2023-01-19 10:57:12 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:12 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:13 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:57:13 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:13 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:13 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:57:13 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:14 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 10:57:14 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 1.2ms | Allocations: 901) - Rendered layout layouts/application.html.erb (Duration: 23.3ms | Allocations: 27569) -Completed 200 OK in 26ms (Views: 24.8ms | Allocations: 28507) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:14 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:57:14 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:14 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 10:57:17 +0100 -Started POST "/auth/developer" for ::1 at 2023-01-19 10:57:21 +0100 -Started POST "/auth/developer" for ::1 at 2023-01-19 10:57:21 +0100 -Started POST "/auth/developer" for ::1 at 2023-01-19 10:57:22 +0100 -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/.#new.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/.#new.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/login" for ::1 at 2023-01-19 10:57:32 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.6ms | Allocations: 878) - Rendered layout layouts/application.html.erb (Duration: 8.7ms | Allocations: 9784) -Completed 200 OK in 11ms (Views: 10.1ms | Allocations: 10621) - - -Started GET "/login" for ::1 at 2023-01-19 10:57:33 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.3ms | Allocations: 585) - Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 9078) -Completed 200 OK in 6ms (Views: 5.2ms | Allocations: 9350) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:33 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 10:57:33 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:33 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 10:57:34 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 10:57:34 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 10:57:47 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (Allocations: 535) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 10:57:55 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms | Allocations: 684) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/.#new.html.erb"], :force_reload=>false} -Started GET "/cable" for ::1 at 2023-01-19 11:07:18 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 11:07:18 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 11:07:19 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 1.4ms | Allocations: 733) - Rendered layout layouts/application.html.erb (Duration: 64.2ms | Allocations: 64812) -Completed 200 OK in 74ms (Views: 66.0ms | Allocations: 66774) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 11:07:19 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 11:07:19 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 11:07:19 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 11:07:30 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 11:07:30 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 11:08:04 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"test", "email"=>"test@test.fr", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (Allocations: 519) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb"], :force_reload=>false} -Started GET "/rails/view_components" for ::1 at 2023-01-19 14:07:53 +0100 -Processing by ViewComponentsController#index as HTML - Rendering layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 835) - Rendered layout /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/layouts/application.html.erb (Duration: 1.4ms | Allocations: 1133) -Completed 200 OK in 14ms (Views: 4.2ms | ActiveRecord: 0.0ms | Allocations: 7608) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:07:55 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.2ms | Allocations: 738) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.0ms | Allocations: 1224) - Rendered layout layouts/application.html.erb (Duration: 73.0ms | Allocations: 65488) -Completed 200 OK in 86ms (Views: 75.5ms | ActiveRecord: 0.0ms | Allocations: 69734) - - -Started GET "/cable" for ::1 at 2023-01-19 14:07:55 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:07:55 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 14:25:58 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:25:58 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:25:58 +0100 -Started GET "/cable" for ::1 at 2023-01-19 14:25:59 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:25:59 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:25:59 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.2ms | Allocations: 818) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 6.6ms | Allocations: 1660) - Rendered layout layouts/application.html.erb (Duration: 190.4ms | Allocations: 166761) -Completed 200 OK in 261ms (Views: 205.9ms | ActiveRecord: 0.0ms | Allocations: 182844) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:25:59 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 14:25:59 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:25:59 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:26:01 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.6ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.6ms | Allocations: 958) - Rendered layout layouts/application.html.erb (Duration: 13.0ms | Allocations: 10151) -Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.0ms | Allocations: 11828) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:26:01 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 14:26:01 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:26:01 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:29:35 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb"], :force_reload=>false} -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:29:51 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1487) - Rendered layout layouts/application.html.erb (Duration: 78.2ms | Allocations: 71185) -Completed 200 OK in 97ms (Views: 81.5ms | ActiveRecord: 0.0ms | Allocations: 80998) - - -Started GET "/cable" for ::1 at 2023-01-19 14:29:51 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:29:51 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 14:36:53 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:36:53 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:36:53 +0100 -Started GET "/cable" for ::1 at 2023-01-19 14:36:53 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:36:53 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:36:54 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1486) - Rendered layout layouts/application.html.erb (Duration: 61.8ms | Allocations: 66004) -Completed 200 OK in 82ms (Views: 65.2ms | ActiveRecord: 0.0ms | Allocations: 75756) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:36:54 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 14:36:54 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:36:54 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:38:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 472) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 959) - Rendered layout layouts/application.html.erb (Duration: 9.4ms | Allocations: 10367) -Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.0ms | Allocations: 12047) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:38:38 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 14:38:39 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:38:39 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:38:45 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.5ms | Allocations: 408) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 624) - Rendered layout layouts/application.html.erb (Duration: 12.9ms | Allocations: 6419) -Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms | Allocations: 7671) - - - -ActionView::Template::Error (The asset "tailwind.css" is not present in the asset pipeline. -): - 5: - 6: <%= csrf_meta_tags %> - 7: <%= csp_meta_tag %> - 8: <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %> - 9: - 10: <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> - 11: <%= javascript_importmap_tags %> - -app/views/layouts/application.html.erb:8 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 14:38:45 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 14:38:51 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 751) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1488) - Rendered layout layouts/application.html.erb (Duration: 192.2ms | Allocations: 163353) -Completed 200 OK in 219ms (Views: 195.3ms | ActiveRecord: 0.0ms | Allocations: 173134) - - -Started GET "/cable" for ::1 at 2023-01-19 14:38:52 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 14:38:52 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/" for ::1 at 2023-01-19 14:58:32 +0100 -Processing by Rails::WelcomeController#index as HTML - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/rails/welcome/index.html.erb - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/railties-7.0.4/lib/rails/templates/rails/welcome/index.html.erb (Duration: 0.9ms | Allocations: 293) -Completed 200 OK in 6ms (Views: 2.0ms | Allocations: 1124) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/preview_template.html.erb"], :force_reload=>false} -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/preview_template.html.erb"], "force_reload"=>false} (via streamed from hotwire-reload) -Started GET "/cable" for ::1 at 2023-01-19 15:24:05 +0100 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:24:05 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:24:06 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 562086.7ms | Allocations: 393001) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 562089.2ms | Allocations: 395948) - Rendered layout layouts/application.html.erb (Duration: 562159.4ms | Allocations: 490173) -Completed 200 OK in 562183ms (Views: 562163.7ms | Allocations: 501424) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/preview_template.html.erb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb"], :force_reload=>false} -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Processing by ViewComponentsController#previews as HTML -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -WebSocket error occurred: Broken pipe - Parameters: {"path"=>"demo/default"} -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -WebSocket error occurred: Broken pipe - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 659) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 1390) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 - Rendered layout layouts/application.html.erb (Duration: 26.0ms | Allocations: 31305) -Completed 200 OK in 35ms (Views: 27.3ms | Allocations: 35583) - - -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:28 +0100 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:33:32 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.7ms | Allocations: 741) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1478) - Rendered layout layouts/application.html.erb (Duration: 45.6ms | Allocations: 65391) -Completed 200 OK in 65ms (Views: 48.5ms | ActiveRecord: 0.0ms | Allocations: 75270) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:33:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 467) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 4.0ms | Allocations: 953) - Rendered layout layouts/application.html.erb (Duration: 8.8ms | Allocations: 10217) -Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.0ms | Allocations: 11915) - - -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:33:33 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 397) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 0.9ms | Allocations: 612) - Rendered layout layouts/application.html.erb (Duration: 14.5ms | Allocations: 10213) -Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms | Allocations: 11448) - - -Started GET "/cable" for ::1 at 2023-01-19 15:33:35 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:33:35 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Started GET "/cable" for ::1 at 2023-01-19 15:40:53 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:40:53 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:40:53 +0100 -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 741) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1476) - Rendered layout layouts/application.html.erb (Duration: 45.4ms | Allocations: 67283) -Completed 200 OK in 65ms (Views: 49.5ms | ActiveRecord: 0.0ms | Allocations: 77130) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:40:53 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 15:40:53 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:40:53 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:40:57 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.6ms | Allocations: 464) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.1ms | Allocations: 952) - Rendered layout layouts/application.html.erb (Duration: 7.3ms | Allocations: 10348) -Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms | Allocations: 12029) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:40:57 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 15:40:57 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:40:57 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 15:45:16 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 400) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 616) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 9737) -Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms | Allocations: 10944) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 15:45:16 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 15:45:17 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 15:45:17 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/application... -Hotwire::Livereload::ReloadChannel transmitting {"changed"=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/applicatio... (via streamed from hotwire-reload) -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 16:19:28 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 651) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1138) - Rendered layout layouts/application.html.erb (Duration: 23.6ms | Allocations: 28072) -Completed 200 OK in 29ms (Views: 24.6ms | Allocations: 31285) - - -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/demo/component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/components/application_view_component.rb", "/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/helpers/application... -[ActionCable] Broadcasting to hotwire-reload: {:changed=>["/Users/esilvert/Programmation/missions/veracyte-portal-wp1/app/views/sessions/new.html.erb"], :force_reload=>false} -Started GET "/cable" for ::1 at 2023-01-19 16:19:36 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:19:36 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:24:38 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:24:38 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:24:38 +0100 -Started GET "/rails/view_components/demo/default" for ::1 at 2023-01-19 16:24:38 +0100 -Processing by ViewComponentsController#previews as HTML - Parameters: {"path"=>"demo/default"} - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 741) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.8ms | Allocations: 1476) - Rendered layout layouts/application.html.erb (Duration: 53.0ms | Allocations: 67465) -Completed 200 OK in 75ms (Views: 57.2ms | ActiveRecord: 0.0ms | Allocations: 77327) - - -Started GET "/cable" for ::1 at 2023-01-19 16:24:39 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:24:39 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:24:44 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.6ms | Allocations: 693) - Rendered layout layouts/application.html.erb (Duration: 11.7ms | Allocations: 9820) -Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms | Allocations: 10825) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:24:44 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:24:44 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:24:44 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 16:24:47 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:24:47 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:25:12 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms | Allocations: 581) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:39:09 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms | Allocations: 684) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer" for ::1 at 2023-01-19 16:39:10 +0100 - -OmniAuth::AuthenticityError (Forbidden): - -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:27:in `deny' -rack-protection (3.0.5) lib/rack/protection/base.rb:57:in `react' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:18:in `call!' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:11:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:240:in `request_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:193:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/login" for ::1 at 2023-01-19 16:39:11 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.6ms | Allocations: 733) - Rendered layout layouts/application.html.erb (Duration: 55.1ms | Allocations: 64607) -Completed 200 OK in 65ms (Views: 56.7ms | ActiveRecord: 0.0ms | Allocations: 66555) - - -Started GET "/cable" for ::1 at 2023-01-19 16:39:11 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:11 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:12 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 1.0ms | Allocations: 518) - Rendered layout layouts/application.html.erb (Duration: 8.3ms | Allocations: 9122) -Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms | Allocations: 9437) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:12 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:39:12 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:12 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 16:39:13 +0100 - -OmniAuth::AuthenticityError (Forbidden): - -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:27:in `deny' -rack-protection (3.0.5) lib/rack/protection/base.rb:57:in `react' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:18:in `call!' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:11:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:240:in `request_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:193:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:13 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:14 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.3ms | Allocations: 435) - Rendered layout layouts/application.html.erb (Duration: 5.3ms | Allocations: 9014) -Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms | Allocations: 9267) - - -Started GET "/cable" for ::1 at 2023-01-19 16:39:15 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:15 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:15 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.5ms | Allocations: 426) - Rendered layout layouts/application.html.erb (Duration: 5.3ms | Allocations: 8901) -Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 9152) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:15 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:39:15 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:15 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 16:39:17 +0100 - -OmniAuth::AuthenticityError (Forbidden): - -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:27:in `deny' -rack-protection (3.0.5) lib/rack/protection/base.rb:57:in `react' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:18:in `call!' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:11:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:240:in `request_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:193:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:17 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:21 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.4ms | Allocations: 405) - Rendered layout layouts/application.html.erb (Duration: 5.8ms | Allocations: 8981) -Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms | Allocations: 9233) - - -Started GET "/login" for ::1 at 2023-01-19 16:39:21 +0100 -Started GET "/cable" for ::1 at 2023-01-19 16:39:21 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.3ms | Allocations: 426) -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:21 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) - Rendered layout layouts/application.html.erb (Duration: 15.8ms | Allocations: 11466) -Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms | Allocations: 11749) - - -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:21 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:39:22 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:22 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:22 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 1.6ms | Allocations: 420) - Rendered layout layouts/application.html.erb (Duration: 13.0ms | Allocations: 8999) -Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms | Allocations: 9252) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:22 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:39:23 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:23 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 16:39:25 +0100 - -OmniAuth::AuthenticityError (Forbidden): - -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:27:in `deny' -rack-protection (3.0.5) lib/rack/protection/base.rb:57:in `react' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:18:in `call!' -omniauth (2.1.0) lib/omniauth/authenticity_token_protection.rb:11:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:240:in `request_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:193:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:25 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:56 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 1.8ms | Allocations: 1106) - Rendered layout layouts/application.html.erb (Duration: 87.8ms | Allocations: 65093) -Completed 200 OK in 94ms (Views: 92.0ms | ActiveRecord: 0.0ms | Allocations: 68219) - - -Started GET "/cable" for ::1 at 2023-01-19 16:39:56 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:56 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:39:56 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.4ms | Allocations: 512) - Rendered layout layouts/application.html.erb (Duration: 8.5ms | Allocations: 9103) -Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms | Allocations: 9415) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:56 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:39:57 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:57 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 16:39:58 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:39:58 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:40:32 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.4ms | Allocations: 313) - Rendered layout layouts/application.html.erb (Duration: 8.0ms | Allocations: 9005) -Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms | Allocations: 9318) - - -Started GET "/cable" for ::1 at 2023-01-19 16:40:33 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:40:33 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:40:34 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.3ms | Allocations: 344) - Rendered layout layouts/application.html.erb (Duration: 5.1ms | Allocations: 8819) -Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms | Allocations: 9071) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:40:34 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:40:34 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:40:34 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started GET "/login" for ::1 at 2023-01-19 16:40:37 +0100 -Processing by SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering sessions/new.html.erb within layouts/application - Rendered sessions/new.html.erb within layouts/application (Duration: 0.7ms | Allocations: 256) - Rendered layout layouts/application.html.erb (Duration: 9.7ms | Allocations: 8835) -Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms | Allocations: 9095) - - -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:40:37 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started GET "/cable" for ::1 at 2023-01-19 16:40:37 +0100 -Started GET "/cable" [WebSocket] for ::1 at 2023-01-19 16:40:37 +0100 -Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) -Hotwire::Livereload::ReloadChannel is transmitting the subscription confirmation -Hotwire::Livereload::ReloadChannel is streaming from hotwire-reload -Started POST "/auth/developer" for ::1 at 2023-01-19 16:40:38 +0100 -Finished "/cable" [WebSocket] for ::1 at 2023-01-19 16:40:38 +0100 -Hotwire::Livereload::ReloadChannel stopped streaming from hotwire-reload -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:40:48 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms | Allocations: 569) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:41:47 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms | Allocations: 623) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer" for ::1 at 2023-01-19 16:41:48 +0100 -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:41:50 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms | Allocations: 556) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer" for ::1 at 2023-01-19 16:41:51 +0100 -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:41:52 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms | Allocations: 552) - - - -ActionController::InvalidAuthenticityToken (Can't verify CSRF token authenticity.): - -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:251:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:284:in `handle_unverified_request' -actionpack (7.0.4) lib/action_controller/metal/request_forgery_protection.rb:273:in `verify_authenticity_token' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:199:in `block (2 levels) in halting' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:200:in `block in halting' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:116:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -omniauth (2.1.0) lib/omniauth/strategy.rb:470:in `call_app!' -omniauth (2.1.0) lib/omniauth/strategy.rb:418:in `callback_phase' -omniauth (2.1.0) lib/omniauth/strategy.rb:272:in `callback_call' -omniauth (2.1.0) lib/omniauth/strategy.rb:194:in `call!' -omniauth (2.1.0) lib/omniauth/strategy.rb:169:in `call' -omniauth (2.1.0) lib/omniauth/builder.rb:44:in `call' -rack (2.2.5) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.5) lib/rack/etag.rb:27:in `call' -rack (2.2.5) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.5) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.5) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.5) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.5) lib/rack/method_override.rb:24:in `call' -rack (2.2.5) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.5) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:42:00 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 659) - - - -TypeError (exception class/object expected): - -app/controllers/sessions_controller.rb:10:in `raise' -app/controllers/sessions_controller.rb:10:in `create' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:42:07 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms | Allocations: 553) - - - -TypeError (exception class/object expected): - -app/controllers/sessions_controller.rb:10:in `raise' -app/controllers/sessions_controller.rb:10:in `create' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:42:08 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 549) - - - -TypeError (exception class/object expected): - -app/controllers/sessions_controller.rb:10:in `raise' -app/controllers/sessions_controller.rb:10:in `create' -Started POST "/auth/developer/callback" for ::1 at 2023-01-19 16:42:28 +0100 -Processing by SessionsController#create as HTML - Parameters: {"name"=>"Ervan", "email"=>"esilvert@vivaldi.net", "provider"=>"developer"} -Can't verify CSRF token authenticity. -Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 634) - - - -TypeError (exception class/object expected): - -app/controllers/sessions_controller.rb:10:in `raise' -app/controllers/sessions_controller.rb:10:in `create' -Started PUT "/__web_console/repl_sessions/5902811af9b175c33e4e412e2c47d581" for ::1 at 2023-01-19 16:46:45 +0100 -Started PUT "/__web_console/repl_sessions/5902811af9b175c33e4e412e2c47d581" for ::1 at 2023-01-19 16:46:46 +0100 -Started PUT "/__web_console/repl_sessions/5902811af9b175c33e4e412e2c47d581" for ::1 at 2023-01-19 16:46:49 +0100 -Started PUT "/__web_console/repl_sessions/5902811af9b175c33e4e412e2c47d581" for ::1 at 2023-01-19 16:46:50 +0100 -  (49.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) -  (8.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (1.3ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.2ms) BEGIN -  (14.7ms) CREATE TABLE "users" ("id" bigserial primary key, "email" character varying, "first_name" character varying, "last_name" character varying, "role" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160221"]] - TRANSACTION (1.3ms) COMMIT - ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - TRANSACTION (5.0ms) BEGIN - ActiveRecord::InternalMetadata Create (1.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2023-01-19 16:06:43.835911"], ["updated_at", "2023-01-19 16:06:43.835911"]] - TRANSACTION (0.3ms) COMMIT -  (0.2ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.3ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.1ms) BEGIN -  (7.7ms) DROP TABLE "users" - ActiveRecord::SchemaMigration Delete All (10.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20230119160221"]] - TRANSACTION (4.0ms) COMMIT -  (0.3ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.1ms) BEGIN -  (12.0ms) CREATE TABLE "users" ("id" uuid DEFAULT gen_random_uuid() NOT NULL PRIMARY KEY, "email" character varying, "first_name" character varying, "last_name" character varying, "role" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160221"]] - TRANSACTION (0.4ms) COMMIT -Migrating to EnableUuids (20230119160748) - TRANSACTION (0.1ms) BEGIN - SQL (445.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" - ActiveRecord::SchemaMigration Create (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160748"]] - TRANSACTION (0.8ms) COMMIT - ActiveRecord::InternalMetadata Load (7.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.7ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to EnableUuids (20230119160748) - TRANSACTION (0.5ms) BEGIN - SQL (9.8ms) DROP EXTENSION IF EXISTS "pgcrypto" CASCADE - ActiveRecord::SchemaMigration Delete All (3.7ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20230119160748"]] - TRANSACTION (1.6ms) COMMIT -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.1ms) BEGIN -  (1.3ms) DROP TABLE "users" - ActiveRecord::SchemaMigration Delete All (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20230119160221"]] - TRANSACTION (3.0ms) COMMIT -  (0.2ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to EnableUuids (20230119160200) - TRANSACTION (0.3ms) BEGIN - SQL (21.2ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" - ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160200"]] - TRANSACTION (4.1ms) COMMIT -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.1ms) BEGIN -  (8.0ms) CREATE TABLE "users" ("id" uuid DEFAULT gen_random_uuid() NOT NULL PRIMARY KEY, "email" character varying, "first_name" character varying, "last_name" character varying, "role" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160221"]] - TRANSACTION (0.4ms) COMMIT - ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.8ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (2.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.1ms) BEGIN -  (2.4ms) DROP TABLE "users" - ActiveRecord::SchemaMigration Delete All (0.5ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20230119160221"]] - TRANSACTION (5.8ms) COMMIT -Migrating to EnableUuids (20230119160200) - TRANSACTION (0.3ms) BEGIN - SQL (1.4ms) DROP EXTENSION IF EXISTS "pgcrypto" CASCADE - ActiveRecord::SchemaMigration Delete All (0.9ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20230119160200"]] - TRANSACTION (0.5ms) COMMIT -  (0.3ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to EnableUuids (20230119160200) - TRANSACTION (0.1ms) BEGIN - SQL (14.1ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" - ActiveRecord::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160200"]] - TRANSACTION (3.8ms) COMMIT -Migrating to CreateUsers (20230119160221) -  (0.4ms) SELECT pg_advisory_unlock(4517599634091995850) -  (0.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20230119160221) -  (0.2ms) SELECT pg_advisory_unlock(4517599634091995850) -  (0.1ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20230119160221) - TRANSACTION (0.6ms) BEGIN -  (5.2ms) CREATE TABLE "users" ("id" uuid DEFAULT gen_random_uuid() NOT NULL PRIMARY KEY, "email" character varying, "first_name" character varying, "last_name" character varying, "role" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20230119160221"]] - TRANSACTION (4.0ms) COMMIT - ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.3ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.2ms) SELECT pg_try_advisory_lock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (1.1ms) SELECT pg_advisory_unlock(4517599634091995850) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC diff --git a/log/test.log b/log/test.log deleted file mode 100644 index a0ad888..0000000 --- a/log/test.log +++ /dev/null @@ -1,572 +0,0 @@ - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.5ms) ROLLBACK - TRANSACTION (0.7ms) BEGIN - TRANSACTION (17.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (1.9ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.3ms | Allocations: 1605) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.2ms | Allocations: 2310) - Rendered layout layouts/application.html.erb (Duration: 192.9ms | Allocations: 145255) - TRANSACTION (11.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.4ms | Allocations: 1605) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.4ms | Allocations: 2310) - Rendered layout layouts/application.html.erb (Duration: 44.4ms | Allocations: 60260) - TRANSACTION (2.5ms) ROLLBACK - TRANSACTION (5.5ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.4ms | Allocations: 1605) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.0ms | Allocations: 2310) - Rendered layout layouts/application.html.erb (Duration: 35.8ms | Allocations: 53965) - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.4ms | Allocations: 4310) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.3ms | Allocations: 5019) - Rendered layout layouts/application.html.erb (Duration: 5.4ms | Allocations: 5063) - TRANSACTION (0.8ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.7ms | Allocations: 1610) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.9ms | Allocations: 1809) - Rendered layout layouts/application.html.erb (Duration: 36.3ms | Allocations: 53269) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 4.6ms | Allocations: 4310) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.5ms | Allocations: 5019) - Rendered layout layouts/application.html.erb (Duration: 5.6ms | Allocations: 5063) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (2.3ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.5ms | Allocations: 1610) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.8ms | Allocations: 1809) - Rendered layout layouts/application.html.erb (Duration: 31.1ms | Allocations: 53364) - TRANSACTION (0.4ms) ROLLBACK - TRANSACTION (1.6ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.1ms | Allocations: 1605) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.0ms | Allocations: 2310) - Rendered layout layouts/application.html.erb (Duration: 33.1ms | Allocations: 53890) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 5.0ms | Allocations: 4309) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 5.8ms | Allocations: 5018) - Rendered layout layouts/application.html.erb (Duration: 5.8ms | Allocations: 5062) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 779) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1484) - Rendered layout layouts/application.html.erb (Duration: 36.3ms | Allocations: 55339) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 779) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.3ms | Allocations: 1484) - Rendered layout layouts/application.html.erb (Duration: 30.0ms | Allocations: 53044) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.4ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.8ms | Allocations: 779) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.7ms | Allocations: 1484) - Rendered layout layouts/application.html.erb (Duration: 28.8ms | Allocations: 52253) - TRANSACTION (0.4ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.6ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.9ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.9ms | Allocations: 4083) - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.4ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 779) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1484) - Rendered layout layouts/application.html.erb (Duration: 40.5ms | Allocations: 53126) - TRANSACTION (1.8ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.5ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.8ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.9ms | Allocations: 4083) - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (1.7ms) BEGIN - TRANSACTION (10.0ms) ROLLBACK - TRANSACTION (0.4ms) BEGIN - TRANSACTION (0.4ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (1.0ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.9ms) ROLLBACK - TRANSACTION (0.4ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.8ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (1.0ms) ROLLBACK - TRANSACTION (0.3ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (1.3ms) BEGIN - TRANSACTION (1.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.4ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (2.6ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 779) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1484) - Rendered layout layouts/application.html.erb (Duration: 189.2ms | Allocations: 149403) - TRANSACTION (15.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.9ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (2.1ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 31.2ms | Allocations: 54906) - TRANSACTION (21.3ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 4211) - TRANSACTION (2.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 29.9ms | Allocations: 54873) - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.8ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 2.8ms | Allocations: 4211) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.8ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 30.5ms | Allocations: 54941) - TRANSACTION (0.6ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.9ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 4211) - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.9ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 32.4ms | Allocations: 54850) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (6.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 2.2ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.6ms | Allocations: 4211) - TRANSACTION (1.1ms) ROLLBACK - TRANSACTION (0.4ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 31.4ms | Allocations: 54960) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 2.9ms | Allocations: 4211) - TRANSACTION (0.8ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.7ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 34.3ms | Allocations: 54641) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.1ms | Allocations: 4211) - TRANSACTION (0.5ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.1ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 30.5ms | Allocations: 54764) - TRANSACTION (1.9ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 1106) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1301) - Rendered layout layouts/application.html.erb (Duration: 3.0ms | Allocations: 4211) - TRANSACTION (0.4ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.2ms | Allocations: 778) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1483) - Rendered layout layouts/application.html.erb (Duration: 180.9ms | Allocations: 149738) - TRANSACTION (5.0ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 3.4ms | Allocations: 1112) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 3.7ms | Allocations: 1307) - Rendered layout layouts/application.html.erb (Duration: 4.8ms | Allocations: 4237) - TRANSACTION (9.4ms) ROLLBACK -  (34.6ms) DROP DATABASE IF EXISTS "veracyte_portal_wp1_test" -  (120.2ms) CREATE DATABASE "veracyte_portal_wp1_test" ENCODING = 'unicode' - SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" -  (7.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (0) -  (2.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - TRANSACTION (0.1ms) BEGIN - ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2023-01-19 16:06:25.632700"], ["updated_at", "2023-01-19 16:06:25.632700"]] - TRANSACTION (0.1ms) COMMIT - ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - TRANSACTION (0.1ms) BEGIN - ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "58addd46498439b0246039134434c38aae6c70d3"], ["created_at", "2023-01-19 16:06:25.637068"], ["updated_at", "2023-01-19 16:06:25.637068"]] - TRANSACTION (0.2ms) COMMIT - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (49.4ms) DROP DATABASE IF EXISTS "veracyte_portal_wp1_test" -  (96.6ms) CREATE DATABASE "veracyte_portal_wp1_test" ENCODING = 'unicode' - SQL (4.4ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" - SQL (0.0ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" -  (0.0ms) DROP TABLE IF EXISTS "users" CASCADE -  (2.2ms) CREATE TABLE "users" ("id" uuid DEFAULT gen_random_uuid() NOT NULL PRIMARY KEY, "email" character varying, "first_name" character varying, "last_name" character varying, "role" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES (20230119160221) -  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES -(20230119160200); - - -  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - TRANSACTION (0.0ms) BEGIN - ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2023-01-19 16:10:13.940417"], ["updated_at", "2023-01-19 16:10:13.940417"]] - TRANSACTION (0.1ms) COMMIT - ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - TRANSACTION (0.0ms) BEGIN - ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "4ace6024abd4df680996584be23c550e06a4e0f7"], ["created_at", "2023-01-19 16:10:13.942665"], ["updated_at", "2023-01-19 16:10:13.942665"]] - TRANSACTION (0.1ms) COMMIT - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (36.6ms) DROP DATABASE IF EXISTS "veracyte_portal_wp1_test" -  (96.1ms) CREATE DATABASE "veracyte_portal_wp1_test" ENCODING = 'unicode' - SQL (4.4ms) CREATE EXTENSION IF NOT EXISTS "pgcrypto" - SQL (0.0ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" -  (0.1ms) DROP TABLE IF EXISTS "users" CASCADE -  (2.6ms) CREATE TABLE "users" ("id" uuid DEFAULT gen_random_uuid() NOT NULL PRIMARY KEY, "email" character varying, "first_name" character varying, "last_name" character varying, "role" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES (20230119160221) -  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES -(20230119160200); - - -  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - TRANSACTION (0.0ms) BEGIN - ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2023-01-19 16:12:38.341286"], ["updated_at", "2023-01-19 16:12:38.341286"]] - TRANSACTION (0.1ms) COMMIT - ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - TRANSACTION (0.0ms) BEGIN - ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "0f0026b3c39a1e01afbd850fa51fdda3c87dde40"], ["created_at", "2023-01-19 16:12:38.343699"], ["updated_at", "2023-01-19 16:12:38.343699"]] - TRANSACTION (0.1ms) COMMIT - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 769) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 1472) - Rendered layout layouts/application.html.erb (Duration: 195.1ms | Allocations: 150184) - TRANSACTION (4.9ms) ROLLBACK - TRANSACTION (0.3ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.8ms | Allocations: 1104) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1299) - Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 4237) - TRANSACTION (3.6ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (27.4ms) ROLLBACK - TRANSACTION (3.9ms) BEGIN - TRANSACTION (8.9ms) ROLLBACK - TRANSACTION (4.8ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - ActiveRecord::InternalMetadata Pluck (0.9ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.3ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.0ms | Allocations: 769) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.1ms | Allocations: 1472) - Rendered layout layouts/application.html.erb (Duration: 76.7ms | Allocations: 54946) - TRANSACTION (0.9ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.6ms | Allocations: 1102) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1297) - Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 4240) - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.0ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 769) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1472) - Rendered layout layouts/application.html.erb (Duration: 29.4ms | Allocations: 54860) - TRANSACTION (0.3ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.9ms | Allocations: 1100) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.2ms | Allocations: 1295) - Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 4250) - TRANSACTION (1.0ms) ROLLBACK - TRANSACTION (1.1ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (4.6ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.3ms) ROLLBACK - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.2ms) BEGIN - TRANSACTION (0.4ms) ROLLBACK - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.7ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 769) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1472) - Rendered layout layouts/application.html.erb (Duration: 29.6ms | Allocations: 54867) - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.3ms | Allocations: 1096) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1291) - Rendered layout layouts/application.html.erb (Duration: 2.6ms | Allocations: 4220) - TRANSACTION (0.6ms) ROLLBACK - TRANSACTION (0.4ms) BEGIN - TRANSACTION (4.9ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (23.3ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (9.0ms) ROLLBACK - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - TRANSACTION (0.4ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 0.9ms | Allocations: 769) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 1.9ms | Allocations: 1472) - Rendered layout layouts/application.html.erb (Duration: 39.6ms | Allocations: 55095) - TRANSACTION (4.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - Rendering layout layouts/application.html.erb - Rendering /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application - Rendering app/components/preview_template.html.erb - Rendered app/components/preview_template.html.erb (Duration: 1.7ms | Allocations: 1100) - Rendered /Users/esilvert/.rvm/gems/ruby-3.1.2/gems/view_component-2.81.0/app/views/view_components/preview.html.erb within layouts/application (Duration: 2.0ms | Allocations: 1295) - Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 4232) - TRANSACTION (1.3ms) ROLLBACK - TRANSACTION (0.0ms) BEGIN - TRANSACTION (2.8ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (0.1ms) ROLLBACK - TRANSACTION (0.9ms) BEGIN - TRANSACTION (2.1ms) ROLLBACK - TRANSACTION (0.1ms) BEGIN - TRANSACTION (3.9ms) ROLLBACK