istox 0.2.16 → 0.2.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 427be1c188660fb5026b4939d6fe6aeceb05cee84fea5fc44f4e21563b4eb51b
4
- data.tar.gz: '0068748b30c528b7590148db9aff3cd8b0cef427acf32e433b78d748ad5a11cb'
3
+ metadata.gz: 2bb366596fe8f9d32466b7b2f128f3f254d4bf21d85860f19ccbb70aacf6d9d6
4
+ data.tar.gz: 86347798b3f88ed5a0841d67724d8c6a31343022b7d97acee45183ff1e749168
5
5
  SHA512:
6
- metadata.gz: cc56633832f232ab416252243601af865d162024ffc3047da66e80c65cc3e05ac8c1e615c98a87ea34bee8547d01b1ea8e954f767f82b87d949f262ea14b4764
7
- data.tar.gz: edceb0279ab02097e365420168f6fbb80a68e01afd266958f0acdaa14c4086a0f22e02138b52b04f42aa098dc9bb2b0afbfd3688c54952142eca1d8147561bae
6
+ metadata.gz: f23208024a894a2faf7ad5165b442b2f1c24e43943409fd0df84eeb87bcaefd3f2b5fd6871e27f20c2872a07be560ea115d009b6636f18ea916769c586f1a3fc
7
+ data.tar.gz: c924441ebf62cb571fbfb2adf706bc0ac3f373e40a1b6878a3c3de437cd859db0c4dcebaec46e7b07b56ffc30305cec0c0df14e0ef4272978ffcd1dac720088b
@@ -80,12 +80,13 @@ module Istox
80
80
  ::BigDecimal.new(x.to_s).round(digits).to_s
81
81
  end
82
82
 
83
- def round(x, digits, rounding_mechanism: :natural)
84
- return round_up(x, digits) if rounding_mechanism == 'up'
83
+ # rounding mechanism can be :down, :up, or :natural
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
88
 
86
- return round_down(x, digits) if rounding_mechanism == 'down'
87
-
88
- round_half_up(x, digits)
89
+ round_down(x, digits)
89
90
  end
90
91
 
91
92
  private
data/lib/istox/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Istox
2
- VERSION = '0.2.16'.freeze
2
+ VERSION = '0.2.17'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: istox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.16
4
+ version: 0.2.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Siong Leng
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-24 00:00:00.000000000 Z
11
+ date: 2021-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: amazing_print