Skip to content

Commit

Permalink
Limit Sinatra version to fix Ruby 2.3 CI
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jeremyevans committed Mar 28, 2024
1 parent 1d0f031 commit 8713eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8713eb8

Please sign in to comment.