From b58285ede6d63cc7ca5adf5e78e77ac5f43f8c47 Mon Sep 17 00:00:00 2001 From: Jun Aruga Date: Sun, 26 Nov 2023 02:48:19 +0900 Subject: [PATCH] Gemfile: Avoid installing rdoc in TruffleRuby. Avoid installing rdoc in TruffleRuby as a workaround of the truffleruby-head version 24.0.0-dev issue. --- Gemfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index cdd030acd..65cabd525 100644 --- a/Gemfile +++ b/Gemfile @@ -8,5 +8,8 @@ group :development do gem "test-unit", "~> 3.0", ">= 3.4.6" gem "test-unit-ruby-core" # In the case of Ruby whose rdoc is not a default gem. - gem "rdoc" + # Avoid installing rdoc gem in TruffleRuby as a workaround of the following + # issue. + # https://github.com/ruby/openssl/issues/699 + gem "rdoc" unless RUBY_ENGINE == "truffleruby" end