bigdecimal 1.4.0.pre.20181214a → 1.4.0.pre.20181220a
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.
- checksums.yaml +4 -4
- data/bigdecimal.gemspec +1 -1
- data/ext/bigdecimal/bigdecimal.c +1 -1
- data/ext/bigdecimal/depend +1 -0
- data/ext/bigdecimal/extconf.rb +7 -0
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 282bdf1625bd905cddd8a514f317a72fe4eb8c17f9335d123259551308cad865
|
4
|
+
data.tar.gz: ebfb5e8226148be16fee2739cd0da4d814b17446a1a01dc1b2b337da0a50dec6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 381f3cf9f2f077274d9d41ad0bbb00ca463002e46ef99ea9622471c8958a1fba632a9138af7dffd96035dbaf325ac9e7d93a379ef9ef78e389411ab34c94c6c8
|
7
|
+
data.tar.gz: b7ece270f85988a2f5e8a5890e667a5540c84c8d08440f8e3e18d960c8e47464f3e9028c60f2fa59c29e34c5ef82af0f8b561c21711e10114d81da9078503ac3
|
data/bigdecimal.gemspec
CHANGED
data/ext/bigdecimal/bigdecimal.c
CHANGED
data/ext/bigdecimal/depend
CHANGED
data/ext/bigdecimal/extconf.rb
CHANGED
@@ -28,6 +28,13 @@ have_func("rb_rational_den", "ruby.h")
|
|
28
28
|
have_func("rb_array_const_ptr", "ruby.h")
|
29
29
|
have_func("rb_sym2str", "ruby.h")
|
30
30
|
|
31
|
+
if File.file?(File.expand_path('../lib/bigdecimal.rb', __FILE__))
|
32
|
+
bigdecimal_rb = "$(srcdir)/lib/bigdecimal.rb"
|
33
|
+
else
|
34
|
+
bigdecimal_rb = "$(srcdir)/../../lib/bigdecimal.rb"
|
35
|
+
end
|
36
|
+
|
31
37
|
create_makefile('bigdecimal') {|mf|
|
32
38
|
mf << "GEMSPEC = #{gemspec_name}\n"
|
39
|
+
mf << "BIGDECIMAL_RB = #{bigdecimal_rb}\n"
|
33
40
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigdecimal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.0.pre.
|
4
|
+
version: 1.4.0.pre.20181220a
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kenta Murata
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-12-
|
13
|
+
date: 2018-12-20 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|
@@ -127,8 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
127
|
- !ruby/object:Gem::Version
|
128
128
|
version: 1.3.1
|
129
129
|
requirements: []
|
130
|
-
|
131
|
-
rubygems_version: 2.7.6
|
130
|
+
rubygems_version: 3.0.0
|
132
131
|
signing_key:
|
133
132
|
specification_version: 4
|
134
133
|
summary: Arbitrary-precision decimal floating-point number library.
|