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
- [1m[35m (150.3ms)[0m [1m[35mCREATE DATABASE "veracyte_portal_wp1_development" ENCODING = 'unicode'[0m
- [1m[35m (39.4ms)[0m [1m[35mCREATE DATABASE "veracyte_portal_wp1_test" ENCODING = 'unicode'[0m
-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">, #