Skip to content

Commit 5d4fcd4

Browse files
committed
Some improvements
1 parent 47b9aca commit 5d4fcd4

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

camt_parser.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
88
spec.name = "camt_parser"
99
spec.version = CamtParser::VERSION
1010
spec.authors = ["Tobias Schoknecht"]
11-
spec.email = ["tobias.schoknecht@gmail.com"]
11+
spec.email = ["tobias.schoknecht@barzahlen.de"]
1212
spec.description = %q{A parser for the Camt file format}
1313
spec.summary = %q{Gem for parsing camt files into a speaking object.}
1414
spec.homepage = ""

readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CamtParser
22

3+
![Travis Build state](https://api.travis-ci.org/Barzahlen/camt_parser.svg)
4+
35
CamtParser is a Ruby Gem which does some basic parsing of camt053 files into an object structure
46
for easier usability instead of having to use an XML parser all the time.
57
Keep in mind that this does not include a complete parsing of the camt053 specification.

spec/fixtures/valid_example.xml

+1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@
157157
</RltdAgts>
158158
<RmtInf>
159159
<Ustrd>Nr. 1234567 / 06.08.2015</Ustrd>
160+
<Ustrd>123456 X 123</Ustrd>
160161
</RmtInf>
161162
</TxDtls>
162163
</NtryDtls>

spec/lib/camt_parser/053/group_header_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
expect(group_header.message_id).to eq("ABCDEFG_YF0000_20150821A000000000")
99
expect(group_header.creation_date_time.class).to eq(Time)
1010
expect(group_header.message_pagination.class).to eq(CamtParser::Format053::MessagePagination)
11+
expect(group_header.additional_information).to eq(nil)
1112
end
1213
end
1314

spec/lib/camt_parser/053/statement_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
expect(ex_entry.value_date).to eq(Date.new(2015, 8, 21))
4949
expect(ex_entry.creditor.class).to eq(CamtParser::Format053::Creditor)
5050
expect(ex_entry.debitor.class).to eq(CamtParser::Format053::Debitor)
51-
expect(ex_entry.remittance_information).to eq("Nr. 1234567 / 06.08.2015")
51+
expect(ex_entry.remittance_information).to eq("Nr. 1234567 / 06.08.2015 123456 X 123")
5252
end
5353

5454
describe CamtParser::Format053::Debitor do

0 commit comments

Comments
 (0)