From 59e1f48be9277c94d5927123ca9611aef65ff982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicklas=20Ramh=C3=B6j=20Holtryd?= Date: Tue, 29 Oct 2024 16:07:36 +0100 Subject: [PATCH] Update to rack 3.1.8 (#696) This was previously blocked, see https://github.com/rails/rails/pull/46594. Rails 7.1 now supports rack 3 and Capybara assumes rack 3, making tests fail when run via rake (but not bin/test). --- Gemfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index fe6844ae..9cd37faf 100644 --- a/Gemfile +++ b/Gemfile @@ -16,10 +16,7 @@ gem "sprockets-rails" gem 'rake' gem 'byebug' gem 'puma' - -# For edge Rails, don't use Rack 3 yet. -# Remove this when https://github.com/rails/rails/pull/46594 has merged. -gem 'rack', '< 3' +gem 'rack' group :development, :test do gem 'importmap-rails'