~ubuntu-branches/ubuntu/quantal/ruby1.9.1/quantal

« back to all changes in this revision

Viewing changes to ext/bigdecimal/bigdecimal.gemspec

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2011-09-24 19:16:17 UTC
  • mfrom: (1.1.8 upstream) (13.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110924191617-o1qz4rcmqjot8zuy
Tags: 1.9.3~rc1-1
* New upstream release: 1.9.3 RC1.
  + Includes load.c fixes. Closes: #639959.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- ruby -*-
 
2
_VERSION = "1.1.0"
 
3
 
 
4
Gem::Specification.new do |s|
 
5
  s.name = "bigdecimal"
 
6
  s.version = _VERSION
 
7
  s.date = "2011-07-30"
 
8
  s.summary = "Arbitrary-precision decimal floating-point number library."
 
9
  s.email = "mrkn@mrkn.jp"
 
10
  s.description = "This library provides arbitrary-precision decimal floating-point number class."
 
11
  s.authors = ["Kenta Murata", "Shigeo Kobayashi"]
 
12
  s.require_path = %[.]
 
13
  s.files = %w[
 
14
    bigdecimal.gemspec
 
15
    bigdecimal.c
 
16
    bigdecimal.h
 
17
    README
 
18
    depend extconf.rb
 
19
    lib/bigdecimal/jacobian.rb
 
20
    lib/bigdecimal/lcdcmp.rb
 
21
    lib/bigdecimal/math.rb
 
22
    lib/bigdecimal/newton.rb
 
23
    lib/bigdecimal/util.rb
 
24
    lib/bigdecimal/version.rb
 
25
    sample/linear.rb
 
26
    sample/nlsolve.rb
 
27
    sample/pi.rb
 
28
  ]
 
29
  s.extensions = %w[extconf.rb]
 
30
end