mirror of
https://github.com/elastic/logstash.git
synced 2025-04-19 04:15:23 -04:00
Pin rubocop-ast development gem due to new dep on prism (#17407)
The rubocop-ast gem just introduced a new dependency on prism. - https://rubygems.org/gems/rubocop-ast/versions/1.43.0 In our install default gem rake task we are seeing issues trying to build native extensions. I see that in upstream jruby they are seeing a similar problem (at least it is the same failure mode https://github.com/jruby/jruby/pull/8415 This commit pins rubocop-ast to 1.42.0 which is the last version that did not have an explicit prism dependency.
This commit is contained in:
parent
075fdb4152
commit
6de59f2c02
1 changed files with 2 additions and 0 deletions
|
@ -26,6 +26,8 @@ gem "stud", "~> 0.0.22", :group => :build
|
|||
gem "fileutils", "~> 1.7"
|
||||
|
||||
gem "rubocop", :group => :development
|
||||
# rubocop-ast 1.43.0 carries a dep on `prism` which requires native c extensions
|
||||
gem 'rubocop-ast', '= 1.42.0', :group => :development
|
||||
gem "belzebuth", :group => :development
|
||||
gem "benchmark-ips", :group => :development
|
||||
gem "ci_reporter_rspec", "~> 1", :group => :development
|
||||
|
|
Loading…
Add table
Reference in a new issue