From 8faf94a132b9260f248276c8b7781ba59c508dcf Mon Sep 17 00:00:00 2001 From: James Couball Date: Thu, 9 Mar 2023 17:27:34 -0800 Subject: [PATCH] Do not generate yard documentation when building in TruffleRuby Signed-off-by: James Couball --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 8504a180..e2d8ef2a 100644 --- a/Rakefile +++ b/Rakefile @@ -18,7 +18,7 @@ task :test do end default_tasks << :test -unless RUBY_PLATFORM == 'java' +unless RUBY_PLATFORM == 'java' || RUBY_ENGINE == 'truffleruby' # # YARD documentation for this project can NOT be built with JRuby. # This project uses the redcarpet gem which can not be installed on JRuby.