From 6c3143aa120647eae9ab60040a8369c5d50d576a Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Tue, 14 Jan 2025 13:28:43 +0900 Subject: [PATCH] mrbgem/full-core.gembox: stop excluding mruby-print gem; #6466 Since the gem no longer exists. --- mrbgems/full-core.gembox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrbgems/full-core.gembox b/mrbgems/full-core.gembox index 1a3f7a860..fdee3268e 100644 --- a/mrbgems/full-core.gembox +++ b/mrbgems/full-core.gembox @@ -1,6 +1,6 @@ MRuby::GemBox.new do |conf| Dir.glob("#{root}/mrbgems/mruby-*/mrbgem.rake") do |x| g = File.basename(File.dirname(x)) - conf.gem :core => g unless g =~ /^mruby-(?:bin-debugger|test|print)$/ + conf.gem :core => g unless g =~ /^mruby-(?:bin-debugger|test)$/ end end