camt_parser 2.10.0 → 2.10.1
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 +4 -4
- data/lib/camt_parser/misc.rb +4 -1
- data/lib/camt_parser/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60a845a56a04e83fc96028ab614225a39dbc25f2d4dc4f8f380b94d999fdceea
|
4
|
+
data.tar.gz: b67becc414021170a62cdd7390623b0d188f0aa74bf4a24923d72ba5f18fee6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c05e6f6a82c826a083f6cae07dd0bf032e28a2092c2e17d41f90130c8d3e180869e53a74873a2a0f66657231404f448223aad0649a1526db3291314d7004fd87
|
7
|
+
data.tar.gz: 4a159164beff18c387640bc8cf1b2527be0dd93e547ec6142072d87751a5b8691dea85fec3c3faae06ac0077c8338c2076013432e4b981a6e8bc076eaafb0cd1
|
data/lib/camt_parser/misc.rb
CHANGED
@@ -4,7 +4,10 @@ module CamtParser
|
|
4
4
|
def to_amount_in_cents(value)
|
5
5
|
return nil if value == nil || value.strip == ''
|
6
6
|
|
7
|
-
|
7
|
+
# Using dollars and cents as representation for parts before and after the decimal separator
|
8
|
+
dollars, cents = value.split(/,|\./)
|
9
|
+
cents ||= '0'
|
10
|
+
format('%s%s', dollars, cents.ljust(2, '0')).to_i
|
8
11
|
end
|
9
12
|
|
10
13
|
def to_amount(value)
|
data/lib/camt_parser/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: camt_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.10.
|
4
|
+
version: 2.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Schoknecht
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -68,7 +68,7 @@ dependencies:
|
|
68
68
|
version: '0'
|
69
69
|
description: A parser for the Camt file format
|
70
70
|
email:
|
71
|
-
- tobias.schoknecht@
|
71
|
+
- tobias.schoknecht@viafintech.com
|
72
72
|
executables: []
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
@@ -104,7 +104,7 @@ homepage: https://github.com/Barzahlen/camt_parser
|
|
104
104
|
licenses:
|
105
105
|
- MIT
|
106
106
|
metadata: {}
|
107
|
-
post_install_message:
|
107
|
+
post_install_message:
|
108
108
|
rdoc_options: []
|
109
109
|
require_paths:
|
110
110
|
- lib
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
122
|
rubygems_version: 3.0.6
|
123
|
-
signing_key:
|
123
|
+
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: Gem for parsing camt files into a speaking object.
|
126
126
|
test_files: []
|