mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
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.
(cherry picked from commit 6de59f2c02
)
Co-authored-by: Cas Donoghue <cas.donoghue@gmail.com>
This commit is contained in:
parent
c3438ef1f4
commit
ee216ea628
1 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,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
Add a link
Reference in a new issue