-
Notifications
You must be signed in to change notification settings - Fork 0
/
decimal.gemspec
28 lines (24 loc) · 1.05 KB
/
decimal.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Gem::Specification.new do |s|
s.name = "decimal"
s.version = "0.1.3"
s.summary = "(yet another) multi-precision decimal arithmetic library"
s.description = <<-EOS.split("\n").map(&:lstrip).join(" ")
Decimal is (yet another) multi-precision decimal arithmetic library. It
provides simple, compact, fast, precise, stable and easy-to-use solution.
EOS
s.required_ruby_version = '>= 1.9.3'
s.license = 'Ruby'
s.author = "Tadashi Saito"
s.email = "[email protected]"
s.homepage = "http://github.com/tadd/decimal"
s.extensions = "extconf.rb"
s.files = %w(.document COPYING BSDL INSTALL README.1st README.rdoc TODO decimal.c
decimal.gemspec depend extconf.rb inum193.h inum200.h inum21.h inum22.h
inum23.h lib/decimal.rb lib/decimal/math.rb
test_decimal.rb)
s.has_rdoc = true
s.rdoc_options = %w(-t Decimal -m README.rdoc)
s.extra_rdoc_files = %w(README.rdoc decimal.c)
s.add_development_dependency 'test-unit', '~> 0'
s.post_install_message = "\n\t\t" << IO.read("README.1st") << "\n"
end