Skip to content

Commit

Permalink
Adds h005 schematic support
Browse files Browse the repository at this point in the history
  • Loading branch information
jplot committed Sep 26, 2024
1 parent f9a66bf commit d8e35b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
EPICS is a ruby implementation of the [EBICS](https://www.ebics.org/) (Electronic Banking Internet
Communication Standard).

It supports EBICS 2.4 and 2.5.
It supports EBICS 2.4, 2.5 and 3.0.

The client supports the complete initialization process comprising INI, HIA and HPB including the
INI letter generation. It offers support for the most common download and upload order types
Expand Down
5 changes: 3 additions & 2 deletions lib/epics/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ class Epics::Client

VERSION_H3 = 'H003'
VERSION_H4 = 'H004'
VERSION_H5 = 'H005'
VERSION_A5 = 'A005'
VERSION_A6 = 'A006'

VERSIONS = [VERSION_H3, VERSION_H4]
VERSIONS = [VERSION_H3, VERSION_H4, VERSION_H5]

USER_AGENT = "EPICS v#{Epics::VERSION}"

Expand Down Expand Up @@ -44,7 +45,7 @@ def urn_schema
case version
when VERSION_H3
"http://www.ebics.org/#{version}"
when VERSION_H4
when VERSION_H4, VERSION_H5
"urn:org:ebics:#{version}"
end
end
Expand Down

0 comments on commit d8e35b4

Please sign in to comment.