math.gembox: add cmath and bigint to math gembox; ref #5742

This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-07-07 15:32:13 +09:00
parent b5538eded1
commit 872020bb3d
+4
View File
@@ -7,4 +7,8 @@ MRuby::GemBox.new do |conf|
# 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