Backport PR #13339 to 7.x: Temporarily pin racc to 1.5.2 to fix build (#13340)

Backport PR #13339 to 7.x branch. Original message:

Pin `racc` to `1.5.2` as racc-1.6.0 doesn't have JAVA counterpart (yet)
SEE: https://github.com/ruby/racc/issues/172
This commit is contained in:
Rob Bavey 2021-10-19 12:15:09 -04:00 committed by GitHub
parent 7202c5860e
commit 0f8296870b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,4 +79,8 @@ Gem::Specification.new do |gem|
gem.add_dependency 'down', '~> 5.2.0' #(MIT license)
gem.add_dependency 'tzinfo-data' #(MIT license)
gem.add_dependency 'rufus-scheduler' #(MIT license)
# TEMPORARY: racc-1.6.0 doesn't have JAVA counterpart (yet)
# SEE: https://github.com/ruby/racc/issues/172
gem.add_runtime_dependency "racc", "~> 1.5.2" #(Ruby license)
end