summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-12-25 18:43:45 +0900
committerGitHub <[email protected]>2018-12-25 18:43:45 +0900
commit2216fb2895c9f804db9fa9fbb70e518959e36e50 (patch)
tree8e6e88a1fcdc40ce913ef5b9ebf645135ddbc1af
parent45e8cb47ea0dab9a0cd22d2d78c728799f6a848c (diff)
parente20d652f22dd4cda7286eedbf46d67b901d4969d (diff)
downloadmruby-2216fb2895c9f804db9fa9fbb70e518959e36e50.tar.gz
mruby-2216fb2895c9f804db9fa9fbb70e518959e36e50.zip
Merge pull request #4202 from shuujii/simplify-full-core-gembox
Simplify full-core.gembox
-rw-r--r--mrbgems/full-core.gembox5
1 files changed, 1 insertions, 4 deletions
diff --git a/mrbgems/full-core.gembox b/mrbgems/full-core.gembox
index 9a5b7081b..e0d008f06 100644
--- a/mrbgems/full-core.gembox
+++ b/mrbgems/full-core.gembox
@@ -1,9 +1,6 @@
MRuby::GemBox.new do |conf|
- conf.gem :core => "mruby-sprintf"
- conf.gem :core => "mruby-print"
-
Dir.glob("#{root}/mrbgems/mruby-*/mrbgem.rake") do |x|
g = File.basename File.dirname x
- conf.gem :core => g unless g =~ /^mruby-(print|sprintf|bin-debugger|test)$/
+ conf.gem :core => g unless g =~ /^mruby-(?:bin-debugger|test)$/
end
end