Skip to content

Commit 68e802b

Browse files
committed
Only limit racc version on JRuby <10
Limiting it on JRuby 10 breaks things.
1 parent ccb0780 commit 68e802b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.ci.gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ platforms :jruby do
5252
gem 'jdbc-mysql'
5353
gem 'jdbc-sqlite3', '<3.42'
5454

55-
gem 'racc', '<1.6'
55+
if JRUBY_VERSION.to_i < 10
56+
gem 'racc', '<1.6'
57+
end
5658
end
5759

5860
if RUBY_VERSION < '2.2'

0 commit comments

Comments
 (0)