Skip to content

Commit b0642e9

Browse files
authored
dep(dev): drop Rubocop from JRuby deps (#3493)
**What problem is this PR intended to solve?** Drop Rubocop from JRuby deps, because prism won't build on the installation VMs without installing more packages, which I don't want to to do. e.g. https://github.com/sparklemotion/nokogiri/actions/runs/14078266200/job/39443801657#step:4:236
2 parents b30f375 + ce28637 commit b0642e9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Gemfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ group :development do
2424
gem "simplecov", "0.22.0"
2525

2626
# rubocop
27-
gem "standard", "1.47.0"
28-
gem "rubocop-minitest", "0.37.1"
29-
gem "rubocop-packaging", "0.6.0"
30-
gem "rubocop-rake", "0.7.1"
27+
unless RUBY_PLATFORM == "java"
28+
gem "standard", "1.47.0"
29+
gem "rubocop-minitest", "0.37.1"
30+
gem "rubocop-packaging", "0.6.0"
31+
gem "rubocop-rake", "0.7.1"
32+
end
3133
end
3234

3335
# If Psych doesn't build, you can disable this group locally by running

0 commit comments

Comments
 (0)