mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
78400919ba
for rubies lower than 2.2.0. * ext/bigdecimal/bigdecimal.c (rb_rational_den): ditto. * ext/bigdecimal/extconf.rb: check the existences of struct RRational, rb_rational_num, and rb_rational_den. * ext/bigdecimal/bigdecimal.bundle: bump version. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
31 lines
860 B
Ruby
31 lines
860 B
Ruby
# -*- ruby -*-
|
|
_VERSION = "1.2.7"
|
|
date = %w$Date:: $[1]
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "bigdecimal"
|
|
s.version = _VERSION
|
|
s.date = date
|
|
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 = %[.]
|
|
s.files = %w[
|
|
bigdecimal.gemspec
|
|
bigdecimal.c
|
|
bigdecimal.h
|
|
README
|
|
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
|