diff options
| author | Ukrainskiy Sergey <[email protected]> | 2018-09-09 11:57:16 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-05-15 16:57:21 +0900 |
| commit | d67d2ae8e88b93536e71dfa41a90721ce351da7c (patch) | |
| tree | 25b8e534e0864817bf05dee8022004fa04e22fc7 /mrbgems/mruby-complex/mrbgem.rake | |
| parent | 79c3335e8d22ec76340b3028a7bbc658d631b17c (diff) | |
| download | mruby-d67d2ae8e88b93536e71dfa41a90721ce351da7c.tar.gz mruby-d67d2ae8e88b93536e71dfa41a90721ce351da7c.zip | |
Basic implementation of Complex and Rational classes
Diffstat (limited to 'mrbgems/mruby-complex/mrbgem.rake')
| -rw-r--r-- | mrbgems/mruby-complex/mrbgem.rake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mrbgems/mruby-complex/mrbgem.rake b/mrbgems/mruby-complex/mrbgem.rake index f8f04d0b8..25b8966da 100644 --- a/mrbgems/mruby-complex/mrbgem.rake +++ b/mrbgems/mruby-complex/mrbgem.rake @@ -2,4 +2,8 @@ MRuby::Gem::Specification.new('mruby-complex') do |spec| spec.license = 'MIT' spec.author = 'mruby developers' spec.summary = 'Complex class' + + spec.add_dependency 'mruby-object-ext', core: 'mruby-object-ext' + spec.add_dependency 'mruby-numeric-ext', core: 'mruby-numeric-ext' + spec.add_dependency 'mruby-math', core: 'mruby-math' end |
