istox 0.2.17 → 0.2.18

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: 2bb366596fe8f9d32466b7b2f128f3f254d4bf21d85860f19ccbb70aacf6d9d6
4
- data.tar.gz: 86347798b3f88ed5a0841d67724d8c6a31343022b7d97acee45183ff1e749168
3
+ metadata.gz: e744a42229dc85a16fba77b03ac23b602c990e887468b26cad8d1918027bd590
4
+ data.tar.gz: 36919909f41cfc6dc4c49f8c2295e2712d654220c05675136231746daf78fca3
5
5
  SHA512:
6
- metadata.gz: f23208024a894a2faf7ad5165b442b2f1c24e43943409fd0df84eeb87bcaefd3f2b5fd6871e27f20c2872a07be560ea115d009b6636f18ea916769c586f1a3fc
7
- data.tar.gz: c924441ebf62cb571fbfb2adf706bc0ac3f373e40a1b6878a3c3de437cd859db0c4dcebaec46e7b07b56ffc30305cec0c0df14e0ef4272978ffcd1dac720088b
6
+ metadata.gz: 42c9c0b13d5ab66674162cd23248c0211f3101727118fd658464ca1d3513bdee25bb81679675186043e4e75b8cb98e344406a4d2fb5d73de1730ff41c15e2f72
7
+ data.tar.gz: cc87304361314598728938cf1649f7afd1436944fa8dba2f7e581084eecc8899f70f881519bd52a3fe2b4f19df7f8a2cbec71f4c56654503ecbc4c1ff44cab95
@@ -80,11 +80,11 @@ module Istox
80
80
  ::BigDecimal.new(x.to_s).round(digits).to_s
81
81
  end
82
82
 
83
- # rounding mechanism can be :down, :up, or :natural
83
+ # rounding mechanism can be 'down', 'up', or 'natural'
84
84
  # by default will be :down
85
- def round(x, digits, rounding_mechanism: :down)
86
- return round_up(x, digits) if rounding_mechanism == :up
87
- return round_half_up(x, digits) if rounding_mechanism == :natural
85
+ def round(x, digits, rounding_mechanism: 'down')
86
+ return round_up(x, digits) if rounding_mechanism == 'up'
87
+ return round_half_up(x, digits) if rounding_mechanism == 'natural'
88
88
 
89
89
  round_down(x, digits)
90
90
  end
data/lib/istox/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Istox
2
- VERSION = '0.2.17'.freeze
2
+ VERSION = '0.2.18'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: istox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.17
4
+ version: 0.2.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Siong Leng