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