istox 0.1.157.11.6 → 0.2.0

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: 79fdadccf1aefbf3f9fa94231c164fd6c8d78cc98e30c33a737e38fc3d8d9587
4
- data.tar.gz: 97479d667d74a9d8a1a46fa8b474553c30323837d8a25c74f0b1a4e5c5c20e04
3
+ metadata.gz: 32b60e5cea8c89edc2c9d9a9b4a9aaefeb026351d68ed6898b578f04213f7e81
4
+ data.tar.gz: e969dc0c25653d64d0de4173bd59178e3f2da8b080fe7db9d34f7c56b67bb791
5
5
  SHA512:
6
- metadata.gz: 6e9b016f3904899036f86e6b19112380047b589884c123917775713ba3f9a763f9b049a5b14b566117a9f6162959afa59fb32125e2ecd68d6bf5b05aef775859
7
- data.tar.gz: 7b7ef9208fda580d05fc0c58e9b1c050f35c62624085e0d4712ad7cfe7c58d83502bd58b8d9fc5e5e46bea098d34b73554dd3a1f0b667d1175dcd7d429d49cdb
6
+ metadata.gz: 88109a86cc415878a19a461ed56252c42562fd44a40861eebe04f5a65a57c4b59df823851a047e59db49f78a5873e63eb99a27cf91f2e4a1c56646660b5f3e67
7
+ data.tar.gz: 9106e4ba0fd8bc5a965fcee3d3e78f1c6cf89ab5f2dcb1c3cbd7762913d6c6382b73c0173985c5f358aca6c58e697bfb78574c7c2c1b88af1b8a2702e89b5aea
data/.gitignore CHANGED
File without changes
data/.rubocop.yml CHANGED
File without changes
data/.solargraph.yml CHANGED
File without changes
data/CODE_OF_CONDUCT.md CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
@@ -59,10 +59,10 @@ module Istox
59
59
  end
60
60
  end
61
61
 
62
- def self.get_currency_decimal(currency, default_decimal)
62
+ def self.get_currency_decimal(currency)
63
63
  return 0 if currency&.downcase == 'jpy'
64
64
 
65
- default_decimal
65
+ 2
66
66
  end
67
67
  end
68
68
  end
File without changes
@@ -17,10 +17,16 @@ module Istox
17
17
  end
18
18
 
19
19
  # format a money, eg. 20000.134 > SGD 20,000.14, position can be :front or :behind, abs_num: whether to absolute the number
20
- def money(input, round_mode: :half_up, precision: 2, currency:, position: :front, abs_num: false, hide_currency: false)
21
- precision = ::Istox::CommonHelper.get_currency_decimal(currency, precision)
20
+ def money(input, round_mode: :half_up, precision: nil, currency:, position: :front, abs_num: false, hide_currency: false)
21
+ # precision = ::Istox::CommonHelper.get_currency_decimal(currency, precision)
22
22
 
23
- result = number(input, round_mode: round_mode, precision: precision, abs_num: abs_num)
23
+ decimal_place = if precision.present?
24
+ precision
25
+ else
26
+ ::Istox::CommonHelper.get_currency_decimal(currency)
27
+ end
28
+
29
+ result = number(input, round_mode: round_mode, precision: decimal_place, abs_num: abs_num)
24
30
 
25
31
  return result if hide_currency
26
32
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/lib/istox/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Istox
2
- VERSION = '0.1.157.11.6'.freeze
2
+ VERSION = '0.2.0'.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.1.157.11.6
4
+ version: 0.2.0
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-02-24 00:00:00.000000000 Z
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: amazing_print
@@ -546,7 +546,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
546
546
  - !ruby/object:Gem::Version
547
547
  version: '0'
548
548
  requirements: []
549
- rubygems_version: 3.2.11
549
+ rubygems_version: 3.0.6
550
550
  signing_key:
551
551
  specification_version: 4
552
552
  summary: istox backend shared gem