tax_computation 0.2.6 → 0.2.7

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: 75479f671a18d671e02fa477ceb5ed657d1f8d957e3d1aac690b5c1bb1c12f75
4
- data.tar.gz: 9e4295851d3086483e3339c85731be378a3b02c10b713dbb82347a5c27307c74
3
+ metadata.gz: 858eefab3ffb334427f138276fac40d29a726ea30958ddef35d77e9640c743ca
4
+ data.tar.gz: f9d74ebd14279493f4965f710119abc9ef94d510139eb81e6bdf54470a2ce82f
5
5
  SHA512:
6
- metadata.gz: 104fd9d5055e0a8c20e8e6b5fa1f30a92fd027db9770063a6f2c6fb8308517072978fb0fb10aca1f5fc4132c12a5b3228c2f902a8130674b2885dc931080df11
7
- data.tar.gz: 29090a7deb7c0733a156b3050d62e42bdbe294adca47c4a3039497be11521dc8b9a9f849b1927cd9393215bd92524fc3842c164203e33297a223e32924cd67df
6
+ metadata.gz: 8d442a457f0100f9029e4b7ff0655a5b446ec61bccff4e3ccf6cc13448e9434ae8e80c477c928a705ace443acce9544626ff2c3278fa101514ebc0aab08941ec
7
+ data.tar.gz: 1ebc05ee3ff561eaee99c2db030ed4ec15668e8b6a57a75a882ceceb66ba31a9a534bf400b26d27822e779ba5ca1f9fb9fdf8005f398eec23f745c6321cdf832
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TaxComputation
4
- VERSION = "0.2.6"
4
+ VERSION = "0.2.7"
5
5
  end
@@ -23,7 +23,7 @@ module TaxComputation
23
23
  if salary <= 600000.0
24
24
  0
25
25
  else
26
- number_with_precision((calculate(salary) / 12.to_f), precision: 2)
26
+ calculate(salary) / 12.to_f
27
27
  end
28
28
  end
29
29
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tax_computation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hamza Alvi