istox 0.1.157.11 → 0.1.157.11.5

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: 1d44758af9ddfc876008db9c38f15552d5619e3daef4f954b8068791e79bfda6
4
- data.tar.gz: 29b3af8dd4299885c56b43b35dd170e95494874d1d8b8c3328dcbf277c0c5e2e
3
+ metadata.gz: b01d1847ed67c15cb068f8dcf9d1d6a53abbeb0b74da4b23f4a296de13f62972
4
+ data.tar.gz: e657d854a701397b604b38c5d04316e4836d2a3f693e3ba439ba1cbf7c0d2283
5
5
  SHA512:
6
- metadata.gz: 82db288849c740293f051b1ebe57b537b7f9c6a1638cc61b8f8d737c5960a7c7a703d92a7f4ec0c7fac4bd2720949b99eec59fa7ac8199629e5f8b434721b11e
7
- data.tar.gz: 5640bb9097f6e26c69df4ba05a15013b9b9901f055572f28afaee7efeee26174d2cb950bd2c9dc0db43906e38154330c03e80413fac7577612e007cfcf2b60dc
6
+ metadata.gz: 6832e5070d6e31057d1bc13d76cc4b50d5a10b8f8903a557975cf529c59bffa329eb144b567711c1571ec063421a693ec592ed2baeb9600f7c6293af33c061c5
7
+ data.tar.gz: '0494c2c63f494f3bc1459d8c345504312286e072166e85c51d6f53d4f810436d1727a5d10f7fe38358132bc9bd846f72192c3b56127cf14884db584e9ee42480'
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
@@ -58,5 +58,11 @@ module Istox
58
58
  obj
59
59
  end
60
60
  end
61
+
62
+ def self.get_currency_decimal(currency, default_decimal)
63
+ return 0 if currency&.downcase == 'jpy'
64
+
65
+ default_decimal
66
+ end
61
67
  end
62
68
  end
File without changes
@@ -17,9 +17,13 @@ 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)
20
+ def money(input, round_mode: :half_up, precision: 2, currency:, position: :front, abs_num: false, hide_currency: false)
21
+ precision = ::CommonHelper.get_currency_decimal(currency, precision)
22
+
21
23
  result = number(input, round_mode: round_mode, precision: precision, abs_num: abs_num)
22
24
 
25
+ return result if hide_currency
26
+
23
27
  return currency + ' ' + result if position == :front
24
28
 
25
29
  result + ' ' + currency
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -28,8 +28,15 @@ module Istox
28
28
  def sns_client
29
29
  return @sns_client if @sns_client.present?
30
30
 
31
- Aws.config.update(region: ENV.fetch('AWS_REGION', 'ap-southeast-1'),
32
- credentials: Aws::Credentials.new(ENV.fetch('AWS_STS_ACCESS_KEY_ID'), ENV.fetch('AWS_STS_SECRET_ACCESS_KEY')))
31
+ access_key = ENV.fetch('AWS_STS_ACCESS_KEY_ID', nil)
32
+
33
+ if access_key.present?
34
+ credentials = Aws::Credentials.new(ENV.fetch('AWS_STS_ACCESS_KEY_ID', nil), ENV.fetch('AWS_STS_SECRET_ACCESS_KEY', nil))
35
+ Aws.config.update(region: ENV.fetch('AWS_REGION', 'ap-southeast-1'),
36
+ credentials: credentials)
37
+ else
38
+ Aws.config.update(region: ENV.fetch('AWS_REGION', 'ap-southeast-1'))
39
+ end
33
40
 
34
41
  @sns_client = Aws::SNS::Client.new(region: ENV.fetch('AWS_REGION', 'ap-southeast-1'))
35
42
  end
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'.freeze
2
+ VERSION = '0.1.157.11.5'.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
4
+ version: 0.1.157.11.5
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-01-26 00:00:00.000000000 Z
11
+ date: 2021-02-24 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.0.6
549
+ rubygems_version: 3.2.11
550
550
  signing_key:
551
551
  specification_version: 4
552
552
  summary: istox backend shared gem