diff options
author | Jari Vetoniemi <jari.vetoniemi@indooratlas.com> | 2020-03-16 18:49:26 +0900 |
---|---|---|
committer | Jari Vetoniemi <jari.vetoniemi@indooratlas.com> | 2020-03-30 00:39:06 +0900 |
commit | fcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch) | |
tree | 64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/ext/bigdecimal/bigdecimal.gemspec |
Fresh start
Diffstat (limited to 'jni/ruby/ext/bigdecimal/bigdecimal.gemspec')
-rw-r--r-- | jni/ruby/ext/bigdecimal/bigdecimal.gemspec | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/jni/ruby/ext/bigdecimal/bigdecimal.gemspec b/jni/ruby/ext/bigdecimal/bigdecimal.gemspec new file mode 100644 index 0000000..e695e42 --- /dev/null +++ b/jni/ruby/ext/bigdecimal/bigdecimal.gemspec @@ -0,0 +1,31 @@ +# -*- ruby -*- +_VERSION = "1.2.6" +date = %w$Date:: 2015-07-01 04:17:07 +0900#$[1] + +Gem::Specification.new do |s| + s.name = "bigdecimal" + s.version = _VERSION + s.date = date + s.license = 'ruby' + s.summary = "Arbitrary-precision decimal floating-point number library." + s.homepage = "http://www.ruby-lang.org" + s.email = "mrkn@mrkn.jp" + s.description = "This library provides arbitrary-precision decimal floating-point number class." + s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"] + s.require_path = %[lib] + s.files = %w[ + bigdecimal.gemspec + bigdecimal.c + bigdecimal.h + depend extconf.rb + lib/bigdecimal/jacobian.rb + lib/bigdecimal/ludcmp.rb + lib/bigdecimal/math.rb + lib/bigdecimal/newton.rb + lib/bigdecimal/util.rb + sample/linear.rb + sample/nlsolve.rb + sample/pi.rb + ] + s.extensions = %w[extconf.rb] +end |