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
# It also works with MRB_NO_STDIO.

MRuby::GemBox.new do |conf|
  # Use standard Math module
  conf.gem :core => "mruby-math"

  # Use Rational/Complex numbers
  conf.gem :core => "mruby-rational"
  conf.gem :core => "mruby-complex"
  # Use Complex math functions in CMath module
  conf.gem :core => "mruby-cmath"
  # Use Multi-precision Integer
  conf.gem :core => "mruby-bigint"
end