mruby3-sys 3.2.0

Rust bindings for mruby 3.x Ruby language implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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"

  # Use Dir class
  conf.gem :core => "mruby-dir"
end