Skip to content

Commit

Permalink
Update CI gemfile to hopefully satisfy old versions of bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Sep 19, 2023
1 parent f40549f commit 45ec69a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ else
gem 'json'
end

platforms :ruby do
if RUBY_VERSION < '2.4' && RUBY_ENGINE == 'jruby'
gem 'sequel', '<5.72'
else
gem 'sequel'
end

platforms :ruby do
if RUBY_VERSION < '1.9'
gem 'sqlite3', '< 1.4'
else
Expand All @@ -52,12 +56,6 @@ 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 45ec69a

Please sign in to comment.