File tree 5 files changed +6
-2
lines changed
5 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
spec . name = "camt_parser"
9
9
spec . version = CamtParser ::VERSION
10
10
spec . authors = [ "Tobias Schoknecht" ]
11
- spec . email = [ "tobias.schoknecht@gmail.com " ]
11
+ spec . email = [ "tobias.schoknecht@barzahlen.de " ]
12
12
spec . description = %q{A parser for the Camt file format}
13
13
spec . summary = %q{Gem for parsing camt files into a speaking object.}
14
14
spec . homepage = ""
Original file line number Diff line number Diff line change 1
1
# CamtParser
2
2
3
+ ![ Travis Build state] ( https://api.travis-ci.org/Barzahlen/camt_parser.svg )
4
+
3
5
CamtParser is a Ruby Gem which does some basic parsing of camt053 files into an object structure
4
6
for easier usability instead of having to use an XML parser all the time.
5
7
Keep in mind that this does not include a complete parsing of the camt053 specification.
Original file line number Diff line number Diff line change 157
157
</RltdAgts >
158
158
<RmtInf >
159
159
<Ustrd >Nr. 1234567 / 06.08.2015</Ustrd >
160
+ <Ustrd >123456 X 123</Ustrd >
160
161
</RmtInf >
161
162
</TxDtls >
162
163
</NtryDtls >
Original file line number Diff line number Diff line change 8
8
expect ( group_header . message_id ) . to eq ( "ABCDEFG_YF0000_20150821A000000000" )
9
9
expect ( group_header . creation_date_time . class ) . to eq ( Time )
10
10
expect ( group_header . message_pagination . class ) . to eq ( CamtParser ::Format053 ::MessagePagination )
11
+ expect ( group_header . additional_information ) . to eq ( nil )
11
12
end
12
13
end
13
14
Original file line number Diff line number Diff line change 48
48
expect ( ex_entry . value_date ) . to eq ( Date . new ( 2015 , 8 , 21 ) )
49
49
expect ( ex_entry . creditor . class ) . to eq ( CamtParser ::Format053 ::Creditor )
50
50
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 " )
52
52
end
53
53
54
54
describe CamtParser ::Format053 ::Debitor do
You can’t perform that action at this time.
0 commit comments