bigdecimal 3.3.1 → 4.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5446d4c544dfb6172f0b215366aed68dd7a3df1cceef23c2fa7735d55489c93a
4
- data.tar.gz: 2f17c5cf3a70a9131446dacbdc6fda43e0ac4dce58f8041446e94b6ad9b5e22c
3
+ metadata.gz: 922981a841d43e8269ac09725757bd02512ba596903b2da2ab2458e842957833
4
+ data.tar.gz: 34b59473beafbb51888ef2700b0c44ee721025952c1b578c4affa6cb60e91d90
5
5
  SHA512:
6
- metadata.gz: ecc33314be340556b87315c8b95b93c9f8657d01c76fd08265cd7cc4028cc8400c804533dc1db810c439761ee5e85aa7c75d7ebc959de40d726c50fd7798852b
7
- data.tar.gz: 4e7a4d1271238dbda723e4e89b868250f666744b98476edcb50a55d541aa19ad5e3f85610f572ce4061f42bc13cf34732bf1bf8a1a3f84bd4e060ed99ab221f7
6
+ metadata.gz: 00e7aedfc9b90c0e82297880c750010e37b8aa427c122343418bbbc3b656a94583a818b0980d2a91b9a7c22aa9c5cc26d621536c33f0d5ec70b87bf9585feed7
7
+ data.tar.gz: 0b54105583917681020ed7d451f9a39c68f9805e9079b48cc83b7031d43ab5e070945dd4899d73e99925022f4a3462c6f9f277062af0281b1455ed16b0a76f49
data/bigdecimal.gemspec CHANGED
@@ -34,6 +34,9 @@ Gem::Specification.new do |s|
34
34
  sample/linear.rb
35
35
  sample/nlsolve.rb
36
36
  sample/pi.rb
37
+ sig/big_decimal_util.rbs
38
+ sig/big_decimal.rbs
39
+ sig/big_math.rbs
37
40
  ]
38
41
  if Gem::Platform === s.platform and s.platform =~ 'java' or RUBY_ENGINE == 'jruby'
39
42
  s.platform = 'java'
@@ -43,15 +46,17 @@ Gem::Specification.new do |s|
43
46
  ext/bigdecimal/bigdecimal.c
44
47
  ext/bigdecimal/bigdecimal.h
45
48
  ext/bigdecimal/bits.h
49
+ ext/bigdecimal/div.h
46
50
  ext/bigdecimal/feature.h
47
51
  ext/bigdecimal/missing.c
48
52
  ext/bigdecimal/missing.h
53
+ ext/bigdecimal/ntt.h
49
54
  ext/bigdecimal/missing/dtoa.c
50
55
  ext/bigdecimal/static_assert.h
51
56
  ]
52
57
  end
53
58
 
54
- s.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
59
+ s.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
55
60
 
56
61
  s.metadata["changelog_uri"] = s.homepage + "/blob/master/CHANGES.md"
57
62
  end