2011-07-30 01:31:45 -04:00
|
|
|
# -*- ruby -*-
|
2015-12-22 07:20:28 -05:00
|
|
|
_VERSION = "1.2.8"
|
2013-11-25 20:57:55 -05:00
|
|
|
date = %w$Date:: $[1]
|
2011-07-30 01:31:45 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "bigdecimal"
|
|
|
|
s.version = _VERSION
|
2013-11-25 20:57:55 -05:00
|
|
|
s.date = date
|
2015-04-08 03:18:46 -04:00
|
|
|
s.license = 'ruby'
|
2011-07-30 01:31:45 -04:00
|
|
|
s.summary = "Arbitrary-precision decimal floating-point number library."
|
2016-09-11 06:33:36 -04:00
|
|
|
s.homepage = "https://www.ruby-lang.org"
|
2011-07-30 01:31:45 -04:00
|
|
|
s.email = "mrkn@mrkn.jp"
|
|
|
|
s.description = "This library provides arbitrary-precision decimal floating-point number class."
|
2013-06-14 21:19:30 -04:00
|
|
|
s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"]
|
2015-06-12 22:35:25 -04:00
|
|
|
s.require_path = %[lib]
|
2011-07-30 01:31:45 -04:00
|
|
|
s.files = %w[
|
|
|
|
bigdecimal.gemspec
|
|
|
|
bigdecimal.c
|
|
|
|
bigdecimal.h
|
|
|
|
depend extconf.rb
|
|
|
|
lib/bigdecimal/jacobian.rb
|
2011-10-16 06:46:30 -04:00
|
|
|
lib/bigdecimal/ludcmp.rb
|
2011-07-30 01:31:45 -04:00
|
|
|
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
|