mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
37d795dec7
This reverts commit e20d652f22.
This change cannot handle hidden dependency between `mruby-print` and
`mruby-sprintf`; ref #4202
10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
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)$/
|
|
end
|
|
end
|