decimal 0.0.2 → 0.0.90.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +2 -2
- data/INSTALL +1 -2
- data/README +57 -1
- data/README.1st +1 -0
- data/TODO +25 -0
- data/decimal.c +927 -446
- data/decimal.gemspec +9 -5
- data/depend +1 -1
- data/extconf.rb +14 -0
- data/inum18.h +82 -8
- data/inum191.h +350 -0
- data/inum192.h +332 -0
- data/lib/decimal.rb +2 -0
- data/lib/decimal/math.rb +566 -0
- data/ruby18compat.h +55 -0
- data/test_decimal.rb +546 -0
- metadata +37 -11
metadata
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decimal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: -365233017
|
5
|
+
prerelease: true
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 90
|
10
|
+
- pre
|
11
|
+
version: 0.0.90.pre
|
5
12
|
platform: ruby
|
6
13
|
authors:
|
7
14
|
- Tadashi Saito
|
@@ -9,53 +16,72 @@ autorequire:
|
|
9
16
|
bindir: bin
|
10
17
|
cert_chain: []
|
11
18
|
|
12
|
-
date:
|
19
|
+
date: 2010-08-11 00:00:00 +09:00
|
13
20
|
default_executable:
|
14
21
|
dependencies: []
|
15
22
|
|
16
23
|
description: Decimal is (yet another) multi-precision decimal arithmetic library. It just provides simple, compact, fast, precise, stable and easy-to-use solution.
|
17
|
-
email:
|
24
|
+
email: tad.a.digger@gmail.com
|
18
25
|
executables: []
|
19
26
|
|
20
27
|
extensions:
|
21
28
|
- extconf.rb
|
22
|
-
extra_rdoc_files:
|
23
|
-
|
29
|
+
extra_rdoc_files:
|
30
|
+
- README
|
24
31
|
files:
|
25
32
|
- COPYING
|
26
33
|
- GPL
|
27
34
|
- INSTALL
|
35
|
+
- README.1st
|
28
36
|
- README
|
37
|
+
- TODO
|
29
38
|
- decimal.c
|
30
39
|
- decimal.gemspec
|
31
40
|
- depend
|
32
41
|
- extconf.rb
|
33
42
|
- inum18.h
|
43
|
+
- inum191.h
|
44
|
+
- inum192.h
|
45
|
+
- lib/decimal.rb
|
46
|
+
- lib/decimal/math.rb
|
47
|
+
- ruby18compat.h
|
48
|
+
- test_decimal.rb
|
34
49
|
has_rdoc: true
|
35
50
|
homepage: http://decimal.rubyforge.org/
|
36
51
|
licenses: []
|
37
52
|
|
38
|
-
post_install_message:
|
53
|
+
post_install_message: |+
|
54
|
+
|
55
|
+
ALL YOUR DECIMAL BASE ARE BELONG TO US
|
56
|
+
|
39
57
|
rdoc_options: []
|
40
58
|
|
41
59
|
require_paths:
|
42
60
|
- lib
|
43
61
|
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
44
63
|
requirements:
|
45
64
|
- - ">="
|
46
65
|
- !ruby/object:Gem::Version
|
66
|
+
hash: 3
|
67
|
+
segments:
|
68
|
+
- 0
|
47
69
|
version: "0"
|
48
|
-
version:
|
49
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
50
72
|
requirements:
|
51
|
-
- - "
|
73
|
+
- - ">"
|
52
74
|
- !ruby/object:Gem::Version
|
53
|
-
|
54
|
-
|
75
|
+
hash: 25
|
76
|
+
segments:
|
77
|
+
- 1
|
78
|
+
- 3
|
79
|
+
- 1
|
80
|
+
version: 1.3.1
|
55
81
|
requirements: []
|
56
82
|
|
57
83
|
rubyforge_project: decimal
|
58
|
-
rubygems_version: 1.3.
|
84
|
+
rubygems_version: 1.3.7
|
59
85
|
signing_key:
|
60
86
|
specification_version: 3
|
61
87
|
summary: (yet another) multi-precision decimal arithmetic library
|