Skip to content

Commit

Permalink
Require Sequel <5.72 on JRuby 9.1
Browse files Browse the repository at this point in the history
Sequel 5.72 depends on the bigdecimal gem, and the bigdecimal java
gem requires Ruby 2.5+, and JRuby 9.1 implements Ruby 2.3.
  • Loading branch information
jeremyevans committed Sep 19, 2023
1 parent c60ed29 commit f40549f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
source 'https://rubygems.org'

gem 'sequel'
gem "minitest-global_expectations"
gem "roda"
gem "rack_csrf"
Expand Down Expand Up @@ -34,6 +33,8 @@ else
end

platforms :ruby do
gem 'sequel'

if RUBY_VERSION < '1.9'
gem 'sqlite3', '< 1.4'
else
Expand All @@ -51,6 +52,12 @@ platforms :jruby do
if RUBY_VERSION < '2.5'
gem 'racc', '< 1.6'
end

if RUBY_VERSION < '2.4'
gem 'sequel', '<5.72'
else
gem 'sequel'
end
end

if RUBY_VERSION < '2.2'
Expand Down

0 comments on commit f40549f

Please sign in to comment.