Skip to content

Commit 0746fae

Browse files
committed
Avoid CI error with Rails 6 and activerecord-jdbcsqlite3 old version
1 parent 144c877 commit 0746fae

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Gemfile-rails-dependencies

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,10 @@ else
3333
if version >= '5-1-stable' && RUBY_VERSION >= "2.3"
3434
gem "puma"
3535
end
36-
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
36+
37+
if version >= '6'
38+
gem "activerecord-jdbcsqlite3-adapter", "~> 60.0.rc1", platforms: [:jruby]
39+
else
40+
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
41+
end
3742
end

0 commit comments

Comments
 (0)