Skip to content

Commit

Permalink
Limit sequel version to 5.71 in CI in Ruby 1.9
Browse files Browse the repository at this point in the history
Hopefully this works around the bigdecimal gem issue in CI.
  • Loading branch information
jeremyevans committed Dec 27, 2023
1 parent 4d6ceb6 commit 2978161
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
source 'https://rubygems.org'

gem 'rake'
gem 'sequel'
gem 'sequel_polymorphic'
gem "minitest-global_expectations"

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

if RUBY_VERSION < '2.2'
gem 'activerecord', '< 5'
elsif RUBY_VERSION < '2.3'
Expand Down

0 comments on commit 2978161

Please sign in to comment.