2016-12-10 10:49:15 +03:00
|
|
|
# coding: utf-8
|
2017-12-13 18:28:30 +03:00
|
|
|
|
2019-10-08 03:06:28 +03:00
|
|
|
bigdecimal_version = '2.0.0.dev'
|
2011-07-30 09:31:45 +04:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2016-12-10 10:49:15 +03:00
|
|
|
s.name = "bigdecimal"
|
2017-12-13 18:28:30 +03:00
|
|
|
s.version = bigdecimal_version
|
2016-12-10 10:49:15 +03:00
|
|
|
s.authors = ["Kenta Murata", "Zachary Scott", "Shigeo Kobayashi"]
|
|
|
|
s.email = ["mrkn@mrkn.jp"]
|
|
|
|
|
|
|
|
s.summary = "Arbitrary-precision decimal floating-point number library."
|
|
|
|
s.description = "This library provides arbitrary-precision decimal floating-point number class."
|
|
|
|
s.homepage = "https://github.com/ruby/bigdecimal"
|
|
|
|
s.license = "ruby"
|
|
|
|
|
|
|
|
s.require_paths = %w[lib]
|
2019-10-08 03:06:28 +03:00
|
|
|
s.extensions = %w[ext/bigdecimal/extconf.rb]
|
2016-12-10 10:49:15 +03:00
|
|
|
s.files = %w[
|
2011-07-30 09:31:45 +04:00
|
|
|
bigdecimal.gemspec
|
2016-12-10 10:49:15 +03:00
|
|
|
ext/bigdecimal/bigdecimal.c
|
|
|
|
ext/bigdecimal/bigdecimal.h
|
2018-12-25 04:17:59 +03:00
|
|
|
lib/bigdecimal.rb
|
2011-07-30 09:31:45 +04:00
|
|
|
lib/bigdecimal/jacobian.rb
|
2011-10-16 14:46:30 +04:00
|
|
|
lib/bigdecimal/ludcmp.rb
|
2011-07-30 09: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
|
|
|
|
]
|
2016-12-10 10:49:15 +03:00
|
|
|
|
2019-07-12 01:25:06 +03:00
|
|
|
s.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
2018-12-05 14:30:24 +03:00
|
|
|
|
2016-12-10 10:49:15 +03:00
|
|
|
s.add_development_dependency "rake", "~> 10.0"
|
2017-12-13 18:28:30 +03:00
|
|
|
s.add_development_dependency "rake-compiler", ">= 0.9"
|
2018-12-05 14:30:24 +03:00
|
|
|
s.add_development_dependency "minitest", "< 5.0.0"
|
2017-03-13 09:03:18 +03:00
|
|
|
s.add_development_dependency "pry"
|
2011-07-30 09:31:45 +04:00
|
|
|
end
|