blob: cd1c2049c383ad516f78b1a22e5577418d2e23c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# It also works with MRB_NO_FLOAT.
MRuby::GemBox.new do |conf|
# Use standard IO/File class
conf.gem :core => "mruby-io"
# Use standard IO/File class
conf.gem :core => "mruby-socket"
# Use standard print/puts/p
conf.gem :core => "mruby-print"
end
|