Files
mruby-mruby/mrbgems/mruby-cmath/mrbgem.rake
T
John Bampton be40e9c783 chore: fix spelling
Normally a single spell checker can't find all the mistakes or check all types of code.

These mistakes were found by another spell checker inside my editor with a more manual sift / find.
2021-02-13 17:21:17 +10:00

9 lines
301 B
Ruby

# This `mruby-cmath` gem uses C99 _Complex features
# You need C compiler that support C99+
MRuby::Gem::Specification.new('mruby-cmath') do |spec|
spec.license = 'MIT'
spec.author = 'mruby developers'
spec.summary = 'standard Math module with complex'
spec.add_dependency 'mruby-complex'
end