summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/full-core.gembox
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-12-25 23:17:10 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-12-25 23:17:10 +0900
commit37d795dec7b495d418dc2f9020cf980c158ba9ed (patch)
tree1312a6b2e05296e848c25bf2ff63354187726e61 /mrbgems/full-core.gembox
parentf2b48875a4ef4aeb9c4d834b4edbb11211b5f42a (diff)
downloadmruby-37d795dec7b495d418dc2f9020cf980c158ba9ed.tar.gz
mruby-37d795dec7b495d418dc2f9020cf980c158ba9ed.zip
Revert "Simplify full-core.gembox"
This reverts commit e20d652f22dd4cda7286eedbf46d67b901d4969d. This change cannot handle hidden dependency between `mruby-print` and `mruby-sprintf`; ref #4202
Diffstat (limited to 'mrbgems/full-core.gembox')
-rw-r--r--mrbgems/full-core.gembox5
1 files changed, 4 insertions, 1 deletions
diff --git a/mrbgems/full-core.gembox b/mrbgems/full-core.gembox
index e0d008f06..9a5b7081b 100644
--- a/mrbgems/full-core.gembox
+++ b/mrbgems/full-core.gembox
@@ -1,6 +1,9 @@
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-(?:bin-debugger|test)$/
+ conf.gem :core => g unless g =~ /^mruby-(print|sprintf|bin-debugger|test)$/
end
end