bigdecimal 4.0.1 → 4.1.1

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: 3779ec68890d9353aa7e8910445435ce636a4bee3c398d46ba37798612a8b19f
4
- data.tar.gz: f0829fbe026a8b008beb81e2b79d5efdbb66ada64eaebb1f5ce70b6f80a45fc3
3
+ metadata.gz: 937928a0baf09e4c2e5bf45b2fa608e1aa20601cf7cd27a8ebaf679874e6196f
4
+ data.tar.gz: a053c6e868c7e55ad9a35262bfd645314fd908dbae5969935c44530a124cfcc4
5
5
  SHA512:
6
- metadata.gz: 867235a805d627a8444b7029329e16b21c2702d421d59bacf2aae675b5d62cea9b517650ed1e5bc7e548c93b1b0310e5d382ae49dc61c94f8effe9fda9d26228
7
- data.tar.gz: 36786ceef3f96ccd16e0c30c3a188c86f35b9e11d5c36587b62729b842eb37f49c6588b17b5c9f71c393016c08c90731b0f7b8a015188c2da1dc7156f988007e
6
+ metadata.gz: 4a4a41830aab00fd3bef041c64f9f6357891706ca11004696c5d815b7582f6f4f2cbd00a606900cfe4a5bce57585d46523e25da8085c2bf18aa95bbe9afd27ec
7
+ data.tar.gz: fe5b587431cca8921613367e236a9844fd3c65f8f53d8b2ae16fe1ed54aac455bfff9a50783256ec2d9e0f5523bc01a3eb9ce0ffc16482cded6026cc03b8c2c0
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