long-decimal 0.00.14 → 0.00.15
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/README +6 -5
- data/VERSION +1 -1
- data/doc/classes/LongDecimalRoundingMode/RoundingModeClass.html +6 -6
- data/doc/classes/LongDecimalRoundingMode.html +3 -2
- data/doc/classes/LongMath.html +137 -191
- data/doc/created.rid +1 -1
- data/doc/dot/f_0.dot +44 -44
- data/doc/dot/f_0.png +0 -0
- data/doc/dot/m_0_0.dot +7 -50
- data/doc/dot/m_0_0.png +0 -0
- data/doc/files/lib/long-decimal_rb.html +58 -6
- data/doc/fr_class_index.html +3 -3
- data/doc/fr_method_index.html +136 -135
- data/lib/long-decimal.rb +1658 -1601
- data/test/testlongdecimal.rb +317 -12
- metadata +2 -2
data/README
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
Version
|
2
2
|
-------
|
3
3
|
|
4
|
-
This version ($Name:
|
5
|
-
pre-alpha-0.
|
6
|
-
have been fixed
|
4
|
+
This version ($Name: PRE_ALPHA_0_15 $) is functionally almost identical with the
|
5
|
+
previous pre-alpha-0.14, but some tests have been added and some minor
|
6
|
+
bugs have been fixed and some missing rdoc-comments have been
|
7
|
+
supplied.
|
7
8
|
|
8
9
|
It could be observed that gem-installation, as described below, fails
|
9
10
|
on Windows 2000 with ruby 1.8.2, but works on Linux with ruby 1.8.4
|
@@ -49,9 +50,9 @@ ruby 1.8.4 and has been observed to fail on Windows 2000)
|
|
49
50
|
Linux/Unix-systems.
|
50
51
|
$RUBY_VERSION is the major version of your Ruby, like 1.8
|
51
52
|
$LONG_DECIMAL_VERSION is the version of long-decimal that you
|
52
|
-
have installed, like 0.00.
|
53
|
+
have installed, like 0.00.15
|
53
54
|
on my machine that would be
|
54
|
-
/usr/local/lib/ruby/gems/1.8/doc/long-decimal-0.00.
|
55
|
+
/usr/local/lib/ruby/gems/1.8/doc/long-decimal-0.00.15/rdoc/index.html
|
55
56
|
|
56
57
|
2. Installing from the sources (it is preferred to use the gem-installation)
|
57
58
|
- download the newest source-tar.gz-file from long-decimal project at rubyforge
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.00.
|
1
|
+
0.00.15
|
@@ -89,7 +89,7 @@
|
|
89
89
|
<div id="description">
|
90
90
|
<p>
|
91
91
|
enumeration class to express the possible rounding modes that are supported
|
92
|
-
by LongDecimal
|
92
|
+
by <a href="../LongDecimal.html">LongDecimal</a>
|
93
93
|
</p>
|
94
94
|
|
95
95
|
</div>
|
@@ -101,7 +101,7 @@ by LongDecimal
|
|
101
101
|
<h3 class="section-bar">Methods</h3>
|
102
102
|
|
103
103
|
<div class="name-list">
|
104
|
-
<a href="#
|
104
|
+
<a href="#M000136"><=></a>
|
105
105
|
</div>
|
106
106
|
</div>
|
107
107
|
|
@@ -130,12 +130,12 @@ by LongDecimal
|
|
130
130
|
<div id="methods">
|
131
131
|
<h3 class="section-bar">Public Instance methods</h3>
|
132
132
|
|
133
|
-
<div id="method-
|
134
|
-
<a name="
|
133
|
+
<div id="method-M000136" class="method-detail">
|
134
|
+
<a name="M000136"></a>
|
135
135
|
|
136
136
|
<div class="method-heading">
|
137
|
-
<a href="RoundingModeClass.src/
|
138
|
-
onclick="popupCode('RoundingModeClass.src/
|
137
|
+
<a href="RoundingModeClass.src/M000136.html" target="Code" class="method-signature"
|
138
|
+
onclick="popupCode('RoundingModeClass.src/M000136.html');return false;">
|
139
139
|
<span class="method-name"><=></span><span class="method-args">(o)</span>
|
140
140
|
</a>
|
141
141
|
</div>
|
@@ -82,8 +82,9 @@
|
|
82
82
|
|
83
83
|
<div id="description">
|
84
84
|
<p>
|
85
|
-
define rounding modes to be used for
|
86
|
-
|
85
|
+
define rounding modes to be used for <a
|
86
|
+
href="LongDecimal.html">LongDecimal</a> this serves the purpose of an
|
87
|
+
"enum" in C/C++
|
87
88
|
</p>
|
88
89
|
|
89
90
|
</div>
|