Skip to content

Commit

Permalink
Limit Sequel version on Ruby 1.9 in CI to avoid failure due to bigdec…
Browse files Browse the repository at this point in the history
…imal
  • Loading branch information
jeremyevans committed Nov 11, 2023
1 parent f1a5f71 commit 1f3e052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ end
gem 'minitest', minitest_version
gem 'minitest-global_expectations', '>=1.0.1'

if RUBY_VERSION < '1.9'
gem 'sequel', '< 5'
if RUBY_VERSION < '2.0'
gem 'sequel', '< 5.70'
else
gem 'sequel'
end
Expand Down

0 comments on commit 1f3e052

Please sign in to comment.