From 872020bb3d85ba4066ec19cfcad375e51fdf024b Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Thu, 7 Jul 2022 15:32:13 +0900 Subject: [PATCH] math.gembox: add cmath and bigint to math gembox; ref #5742 --- mrbgems/math.gembox | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mrbgems/math.gembox b/mrbgems/math.gembox index 88f70ddde..d2947314e 100644 --- a/mrbgems/math.gembox +++ b/mrbgems/math.gembox @@ -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