From 711986d19f07ac010296081d24b4a2b0098e2bdd Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Mon, 28 Sep 2020 19:51:57 +0530 Subject: [PATCH] Fix test suite compatibility with JRuby (#8418) Merge pull request 8418 --- Gemfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index f3640018..51693bd9 100644 --- a/Gemfile +++ b/Gemfile @@ -30,7 +30,10 @@ group :test do gem "test-theme-skinny", :path => File.expand_path("test/fixtures/test-theme-skinny", __dir__) gem "test-theme-symlink", :path => File.expand_path("test/fixtures/test-theme-symlink", __dir__) - gem "jruby-openssl" if RUBY_ENGINE == "jruby" + if RUBY_ENGINE == "jruby" + gem "jruby-openssl" + gem "rubocop-ast", "~> 0.6.0" + end end #