From d72db285e9f0403b977c4f870c90d1889830e078 Mon Sep 17 00:00:00 2001 From: Mattia Giuffrida Date: Wed, 18 Jan 2023 13:46:45 +0000 Subject: [PATCH] Fix rack version to '< 3' to avoid backwards incompatible change breaking specs --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index fcbe1d39a..115efd7e8 100644 --- a/Gemfile +++ b/Gemfile @@ -30,6 +30,7 @@ group :test, :development do options = (RUBY_VERSION.start_with?('3') ? { github: 'grosser/net-http-persistent', branch: 'grosser/spec' } : {}) gem 'net-http-persistent', '>= 3.0', **options gem 'patron', '>= 0.4.2', platforms: :ruby + gem 'rack', '< 3' gem 'rack-test', '>= 0.6', require: 'rack/test' gem 'rspec', '~> 3.7' gem 'rspec_junit_formatter', '~> 0.4'