mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
MRuby::GemBox.new do |conf|
|
|
conf.gem :core => "mruby-sprintf"
|
|
conf.gem :core => "mruby-print"
|
|
|
|
Dir.glob("#{root}/mrbgems/mruby-*") do |x|
|
|
g = File.basename(x)
|
|
conf.gem :core => g unless g =~ /^mruby-(print|sprintf)$/
|
|
end
|
|
end
|