summaryrefslogtreecommitdiff
path: root/ext/bigdecimal/bigdecimal.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bigdecimal/bigdecimal.gemspec')
-rw-r--r--ext/bigdecimal/bigdecimal.gemspec30
1 files changed, 30 insertions, 0 deletions
diff --git a/ext/bigdecimal/bigdecimal.gemspec b/ext/bigdecimal/bigdecimal.gemspec
new file mode 100644
index 0000000000..c8bd0aef18
--- /dev/null
+++ b/ext/bigdecimal/bigdecimal.gemspec
@@ -0,0 +1,30 @@
+# -*- ruby -*-
+_VERSION = "1.1.0"
+
+Gem::Specification.new do |s|
+ s.name = "bigdecimal"
+ s.version = _VERSION
+ s.date = "2011-07-30"
+ s.summary = "Arbitrary-precision decimal floating-point number library."
+ s.email = "mrkn@mrkn.jp"
+ s.description = "This library provides arbitrary-precision decimal floating-point number class."
+ s.authors = ["Kenta Murata", "Shigeo Kobayashi"]
+ s.require_path = %[.]
+ s.files = %w[
+ bigdecimal.gemspec
+ bigdecimal.c
+ bigdecimal.h
+ README
+ depend extconf.rb
+ lib/bigdecimal/jacobian.rb
+ lib/bigdecimal/lcdcmp.rb
+ lib/bigdecimal/math.rb
+ lib/bigdecimal/newton.rb
+ lib/bigdecimal/util.rb
+ lib/bigdecimal/version.rb
+ sample/linear.rb
+ sample/nlsolve.rb
+ sample/pi.rb
+ ]
+ s.extensions = %w[extconf.rb]
+end