abo_parser 1.0.4 → 1.0.6

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: 45bd0bd8188bc2d057ba687fdaf8ca5bf450066e4e4720f93cf2294b58939608
4
- data.tar.gz: a0a72dd58fbd376fe2489844eaf4ea22532028e2827334476baf94481da600bf
3
+ metadata.gz: f9348b282479e8d0c1aee18b96fa5447b306e1eacc0bb6caadf507bfba9ce2c5
4
+ data.tar.gz: cf7c527a3e7a491ee112076c49ca506c07ec69d748fb3601d1d010e23e064b99
5
5
  SHA512:
6
- metadata.gz: 03c874077a9838ddc88dfc6d09da0694ce4788b1fc361ef97b9db8f6613b4b2b6bc970b866dc4eb358f79629675b6fdb186c980d8bcb85d38e621d7b8e7a205a
7
- data.tar.gz: d1bd96bbe15a616c773cdbbe25d75e707f4cf0f00f9039d14dcd0a159607325b2d6781a29941eae334a28a688a3d3f0a345a95990136860cb80ca2d466d4ca60
6
+ metadata.gz: 0bd3461f71c419329f541f0f21afcd5e94e01607838bd47c872662759647ab7be41597b0f5032971f8fc0b5fca7c75c650acc6197d6dc7fc09b0f9bc03f45d3a
7
+ data.tar.gz: b9551ce3429abc3380cfcaf70c274220a836615588f3ebe3ef19301474d400cfe8df5e24ebec89e5320caf85d992449deeb682edff5adffc1faacb1720834e2e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Released]
2
2
 
3
+ ## [1.0.6] - 2023-06-11
4
+
5
+ - strip empty spaces from bank statement lines
6
+
7
+ ## [1.0.5] - 2023-06-11
8
+
9
+ - Fixed parsing 078 lines in bank statement
10
+
3
11
  ## [1.0.4] - 2023-06-11
4
12
 
5
13
  - Added parsing 078 lines in bank statement
data/README.md CHANGED
@@ -59,6 +59,7 @@ AboStatement
59
59
  debit
60
60
  credit
61
61
  counter_account_bank_code
62
+ note
62
63
  ```
63
64
 
64
65
  ## P11 file
data/abo_parser.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.summary = "This gem is a parser/export for the ABO bank statements and payment orders."
11
11
  spec.required_ruby_version = ">= 2.6.0"
12
12
 
13
- spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/abo_parser"
13
+ spec.metadata["documentation_uri"] = "https://rubydoc.info/gems/abo_parser"
14
14
 
15
15
  # spec.metadata["allowed_push_host"] = "Set to your gem server 'https://example.com'"
16
16
 
data/lib/abo.rb CHANGED
@@ -294,7 +294,7 @@ class Abo
294
294
  length = 3
295
295
 
296
296
  # rubocop:disable Lint/UselessAssignment
297
- transaction.note = line[pos += length, length = 6]
297
+ transaction.note = line[pos += length, length = 70].rstrip
298
298
  # rubocop:enable Lint/UselessAssignment
299
299
  end
300
300
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AboParser
4
- VERSION = "1.0.4"
4
+ VERSION = "1.0.6"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abo_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rhemery
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-11 00:00:00.000000000 Z
11
+ date: 2023-07-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -31,7 +31,7 @@ files:
31
31
  homepage:
32
32
  licenses: []
33
33
  metadata:
34
- documentation_uri: https://www.rubydoc.info/gems/abo_parser
34
+ documentation_uri: https://rubydoc.info/gems/abo_parser
35
35
  post_install_message:
36
36
  rdoc_options: []
37
37
  require_paths: