Files
mruby-mruby/mrbgems/stdlib-io.gembox
T
dearblue 392033fb6b Move mruby-errno to stdlib-io.gembox
This is because GEMs that use errno are currently limited to `mruby-io` and `mruby-socket`.
2022-12-04 18:33:12 +09:00

16 lines
365 B
Plaintext

# 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"
# Use errno extension for a good mruby-io/mruby-socket experience
conf.gem :core => "mruby-errno"
end