From 8713eb8e18284408ba8551bcdd5007c890ddce3d Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Thu, 28 Mar 2024 12:33:48 -0700 Subject: [PATCH] Limit Sinatra version to fix Ruby 2.3 CI Apparently rack-protection 2.2.4 added a dependency on base64. Adding dependencies seems like you should bump more than the tiny version, but hopefully this will fix things. --- .ci.gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci.gemfile b/.ci.gemfile index 2bcdc0e..baee2ad 100644 --- a/.ci.gemfile +++ b/.ci.gemfile @@ -83,7 +83,7 @@ end if RUBY_VERSION < '2.2' gem 'sinatra', '< 2' elsif RUBY_VERSION < '2.4' - gem 'sinatra', '< 3.2' + gem 'sinatra', '< 2.2.4' else gem 'sinatra' end