From f0c18e89d021bd2a2f86b67b916a1ee0aac47b0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Thu, 25 Feb 2021 17:49:23 +0000 Subject: [PATCH] cleanup bundler exclusions during jruby unpacking (#12692) JRuby had a few releases where it shipped with bundler, creating some difficulty in working with newer versions. This no longer happens so we can remove these exclusions from the jruby unzipping task. --- rubyUtils.gradle | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rubyUtils.gradle b/rubyUtils.gradle index 8f55a8e92a7..13bf037f9d7 100644 --- a/rubyUtils.gradle +++ b/rubyUtils.gradle @@ -272,10 +272,6 @@ tasks.register("downloadAndInstallJRuby", Copy) { f.path = f.path.replaceFirst("^jruby-${jRubyVersion}", '') } exclude "**/stdlib/rdoc/**" - exclude "**/stdlib/bundler/**" - exclude "**/stdlib/bundler.rb" - exclude "**/bundler-1.16.6/**" - exclude "**/bundler-1.16.6.*" exclude "**/did_you_mean-*/evaluation/**" // licensing issue https://github.com/jruby/jruby/issues/6471 includeEmptyDirs = false