Skip to content

Commit

Permalink
Limit Sequel or bigdecimal versions in CI on older Ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Sep 25, 2023
1 parent e34a175 commit bdac99c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,18 @@ if RUBY_VERSION >= '3.1.0'
gem 'net-smtp'
end

if RUBY_VERSION < '2.1' || (RUBY_ENGINE == 'jruby' && RUBY_VERSION < '2.5')
# Avoid bigdecimal requirement
gem 'sequel', '<5.72'
elsif RUBY_VERSION < '2.4'
gem 'sequel'
gem 'bigdecimal', '<1.3'
else
gem 'sequel'
end

gem 'rack_csrf'
gem 'xpath'
gem 'sequel'
gem 'roda'
gem 'tilt'
gem 'bcrypt'
Expand Down

0 comments on commit bdac99c

Please sign in to comment.