tufy 0.0.10 → 0.0.11

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
  SHA1:
3
- metadata.gz: 641644ae83a015b24cfd42c3b2cb5286a6277310
4
- data.tar.gz: 227ca577b2639e2e1eec332b2442c0ae73a8622f
3
+ metadata.gz: 2fb7ac8983272e0275de6254304cd939bcfb117c
4
+ data.tar.gz: b862db6685e739b474185b2352d2ff7521de3412
5
5
  SHA512:
6
- metadata.gz: b98e122ad2097b3e4d6d5fb7b9b61e195d86dd860dd7cdf876bbd33d95e8c5e8e578f80cb7a98e406a544633802292993d60673dddca9d3fa7eef6124494ca9f
7
- data.tar.gz: 4e2f99caaa71413d8da83c0f2d40bea69c0a16967060ba08e737b074f5ceffe79dd9edd736c592a56dde234aa2a386ee1c85a27042145d77923aad33f398dc73
6
+ metadata.gz: 88d2677d70d969e8e3fe432b4c93d65fc9d6d13cc1542731a6238b94ad4258f546cb4ab6dc348e813d442a6e77e2e3825ce09e3faef5fb0bee02c0a1eb110dbb
7
+ data.tar.gz: d4540da61a7a69f515594a0f98245217f4d0252007180845b077b6ea099cad0687e9de4502daeca094254e159568d3f75d683efb106cbacfdec216b1b9700afb
@@ -1,3 +1,8 @@
1
+ # v0.0.11
2
+
3
+ - Remove special characters from First and Last names
4
+ - Fix: negative interest and fees must be zero
5
+
1
6
  # v0.0.10
2
7
 
3
8
  - Added account status constants
@@ -21,7 +21,7 @@ module Tufy
21
21
 
22
22
  BuildAccountSegment::Constants::INTEREST_AND_FEES_TAG +
23
23
  FormatStrings::F2TS % interest_and_fees.to_s.size +
24
- raw_data[:interest_and_fees].to_s
24
+ interest_and_fees.to_s
25
25
  end
26
26
  end
27
27
  end
@@ -17,8 +17,8 @@ module Tufy
17
17
  raw_data = ctx.raw_data
18
18
 
19
19
  BuildNameSegment::Constants::FIRST_NAME_TAG +
20
- FormatStrings::F2TS % raw_data[:first_name].size +
21
- raw_data[:first_name]
20
+ FormatStrings::F2TS % remove_special_characters_except_space(raw_data[:first_name]).size +
21
+ remove_special_characters_except_space(raw_data[:first_name])
22
22
  end
23
23
  end
24
24
  end
@@ -17,8 +17,8 @@ module Tufy
17
17
  raw_data = ctx.raw_data
18
18
 
19
19
  BuildNameSegment::Constants::LAST_NAME_TAG +
20
- FormatStrings::F2TS % raw_data[:last_name].size +
21
- raw_data[:last_name]
20
+ FormatStrings::F2TS % remove_special_characters_except_space(raw_data[:last_name]).size +
21
+ remove_special_characters_except_space(raw_data[:last_name])
22
22
  end
23
23
  end
24
24
  end
@@ -1,3 +1,3 @@
1
1
  module Tufy
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tufy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neil Marion dela Cruz
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-20 00:00:00.000000000 Z
11
+ date: 2017-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: light-service