epics 1.6.0 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.semaphore/semaphore.yml +51 -0
- data/CHANGELOG.md +56 -33
- data/README.md +62 -60
- data/epics.gemspec +25 -29
- data/lib/epics.rb +2 -0
- data/lib/epics/ccs.rb +1 -1
- data/lib/epics/cct.rb +10 -2
- data/lib/epics/client.rb +21 -5
- data/lib/epics/error.rb +1 -1
- data/lib/epics/middleware/parse_ebics.rb +6 -5
- data/lib/epics/middleware/xmlsig.rb +2 -4
- data/lib/epics/version.rb +3 -1
- data/lib/epics/xct.rb +30 -0
- data/lib/epics/xds.rb +5 -0
- data/spec/client_spec.rb +26 -1
- data/spec/fixtures/xml/cdb.xml +85 -0
- data/spec/fixtures/xml/cdb_init_response.xml +31 -0
- data/spec/fixtures/xml/cdb_transfer_response.xml +32 -0
- data/spec/fixtures/xml/htd_order_data.xml +8 -2
- data/spec/fixtures/xml/htd_order_data_without_names.xml +27 -0
- data/spec/fixtures/xml/jruby/hia.xml +23 -1
- data/spec/fixtures/xml/jruby/ini.xml +23 -1
- data/spec/middleware/parse_ebics_spec.rb +21 -9
- data/spec/orders/ccs_spec.rb +21 -0
- data/spec/orders/cct_spec.rb +6 -2
- data/spec/orders/cdb_spec.rb +1 -1
- data/spec/orders/xds_spec.rb +15 -0
- metadata +45 -32
- data/.travis.yml +0 -10
@@ -1,2 +1,24 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
|
2
|
+
<ebicsUnsecuredRequest Revision="1" Version="H004"
|
3
|
+
xmlns="urn:org:ebics:H004"
|
4
|
+
xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
|
5
|
+
<header authenticate="true">
|
6
|
+
<static>
|
7
|
+
<HostID>SIZBN001</HostID>
|
8
|
+
<PartnerID>EBICS</PartnerID>
|
9
|
+
<UserID>EBIX</UserID>
|
10
|
+
<Product Language="de">EPICS - a ruby ebics kernel</Product>
|
11
|
+
<OrderDetails>
|
12
|
+
<OrderType>HIA</OrderType>
|
13
|
+
<OrderAttribute>DZNNN</OrderAttribute>
|
14
|
+
</OrderDetails>
|
15
|
+
<SecurityMedium>0000</SecurityMedium>
|
16
|
+
</static>
|
17
|
+
<mutable/>
|
18
|
+
</header>
|
19
|
+
<body>
|
20
|
+
<DataTransfer>
|
21
|
+
<OrderData>eJzNlEuTqkgQhffzKzqcpTHNQ0A0bG8gIILIW6Td8RIQKKCKh/jrx+ients9cze9mtlVnpMnqyLyi1r9uJXFUx9DlFXgZUI845OnGIRVlIHkZdK1lz/YyY/1b6udzFlx08Wo1WEUQ8Fv/adHEqBHEwTLCibLOMhCtNzhODV5t5bRw03btl5i2DAMz8Ps+dGHkTiOY/gCe/REKEt+n6xXXNemMWiz0G8fzzC6YB+PMrhU69X72fWLLl6vIrS0bO6j/u4lj/ShirqiQ99M1ukloaUeowaIpFYny2o2O97CjMcEuxxwKwo2KU/3roGapOwLITkTQY2k04A8Pdsc6c2tDnitbzeqPb9aGNXaiZYJ8FQqhnrA6THZ7u/pmGKsFpFNe+ZbTPHNDiD7otWyWk6DRUqcs860AK+jHinNPD7ysFHAkVYvGHc6iXSyMApfD484oVmN4h+sQZcpeUp3OKESSqQsGBZ6XJ4mhazaw4CP3T6q6MbB+Fw3OKajYiq7G7d+Z0gKzUQRQ0DrYuz7CPZ21zGJqN+rwmYOTBdDSWCgfMjyQ9qZl7lF8BIdqvxVMveCINSk5jfx/cQRUJjh1i2QX1Vy1sxdVXdxwMxn/TUTCh965svLCvu5krf1iLe6Ag8OvrkfzuQ2b7M+8uu36hMqD+ELSF95c9/pX3s4Tq6wX3v/1D8zKoIQjvX/kVwC5tfzlnEonmEWFF9melAP8oLNKZD4jRBvatl02RKQmCVyULyCZPCBogSRRhM1P2I2IPBz1jYGQlRp1GMeOsqoCTf9Hp1zghyiu1xVTjaOB6WSWW2KnNPmVEi9w4oWeRZ3enBWOOnUbBikW1dHtIymQSY7RUcttCvbu4Tg4MIgqQPXxlSUmEMBGrIukdXMaCF3L1N8dkxf0czM6/ae+qYnbctAEAKqqp1bTZwTpbkXzG4qCUK65ejp7U7wtOFTukpeNZ0fO6tj8GEsd0QSMqFeev2rsx95232d5iw2GFHDwC0xFn7oiKdtGmRT4syxlqsYjXnXYybxbgdvu632TgwIp80Tr2T+U3J/svZBpvhG7b/1z9oXLn3YghjKwlrcyLz9mP+3sDqiD8NbYX8VK+wXf//6T/odHps=</OrderData>
|
22
|
+
</DataTransfer>
|
23
|
+
</body>
|
24
|
+
</ebicsUnsecuredRequest>
|
@@ -1,2 +1,24 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<ebicsUnsecuredRequest Revision="1" Version="H004"
|
2
|
+
<ebicsUnsecuredRequest Revision="1" Version="H004"
|
3
|
+
xmlns="urn:org:ebics:H004"
|
4
|
+
xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
|
5
|
+
<header authenticate="true">
|
6
|
+
<static>
|
7
|
+
<HostID>SIZBN001</HostID>
|
8
|
+
<PartnerID>EBICS</PartnerID>
|
9
|
+
<UserID>EBIX</UserID>
|
10
|
+
<Product Language="de">EPICS - a ruby ebics kernel</Product>
|
11
|
+
<OrderDetails>
|
12
|
+
<OrderType>INI</OrderType>
|
13
|
+
<OrderAttribute>DZNNN</OrderAttribute>
|
14
|
+
</OrderDetails>
|
15
|
+
<SecurityMedium>0000</SecurityMedium>
|
16
|
+
</static>
|
17
|
+
<mutable/>
|
18
|
+
</header>
|
19
|
+
<body>
|
20
|
+
<DataTransfer>
|
21
|
+
<OrderData>eJyVU8tyokAU3c9XpJjl1KQbRQMWkuKlPGSEkAhmB+kWEW2gaUDz9WOZyWuySlUv+p57zrmLe658ezzsrzpMm7wkU46/htwVJk8lykk25Vq2+S1yt8oPOcwzkrCWYr9NXXxaUoSpkbDk6iwnzZTbMlZNAOj7/hqn+VNzXdIMhBDy3Atjgj6T+uGFMYAQAiiBMwc1efaTU/6fZJNNqcgv/1Wyb7Eio2ZyF6qv9Xf9z2qvRO2+bb6p5IVRefMo4phUlLHjInvQkeS7YuI6bbJwRkNIrFh3RDdf3vhee0DOKkHNMk0N24ql7RNdxdIpeqBC47Ia7J7NE841elfNjvGc2e6g0FJBtKpkE5l1wKdJCtRcAKvIEBprHei9FomufWpcYq+ru2DNG8QKflnDeDPbhhrZreZUtCFJjUwfCK7WdkUtzXxdLEOQFQE5UPdxNKBot4jCYT0sENODzjsVvTCHffcnmDv7EERHTy9CSDfQgfauX6vhcc+ne0FyBl3XLcK6N5jq+LMkstsCepaVmeNRRny45cfLGvL+zlP99qha1bZekKzzSBgVeG0gVtKNtMOqeaDmAq2RPQP02aK100+nMnhfyWU95rEqCSbsm/tRA1W7eL3qlUv1ISqKfJ8fcMiSQ6UMIC/85uH53fP8hB9PIHyUwXtfBp8y95bK1cupKCqEYxl8gT9An/KbUEYwtQ3F1Gw9PJu/AfJD89qIZfCv+GLzdnDKX0j2PtE=</OrderData>
|
22
|
+
</DataTransfer>
|
23
|
+
</body>
|
24
|
+
</ebicsUnsecuredRequest>
|
@@ -1,23 +1,35 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
RSpec.describe Epics::ParseEbics do
|
3
4
|
subject do
|
4
5
|
Faraday.new do |builder|
|
5
6
|
builder.use Epics::ParseEbics
|
6
7
|
builder.adapter :test, Faraday::Adapter::Test::Stubs.new do |stub|
|
7
|
-
stub.post('/business_nok') {[
|
8
|
-
stub.post('/technical_nok') {[
|
9
|
-
stub.post('/ok') {[
|
8
|
+
stub.post('/business_nok') { [200, {}, File.read(File.join(File.dirname(__FILE__), '..', 'fixtures', 'xml', 'ebics_business_nok.xml'))] }
|
9
|
+
stub.post('/technical_nok') { [200, {}, File.read(File.join(File.dirname(__FILE__), '..', 'fixtures', 'xml', 'ebics_technical_nok.xml'))] }
|
10
|
+
stub.post('/ok') { [200, {}, File.read(File.join(File.dirname(__FILE__), '..', 'fixtures', 'xml', 'hpb_response_ebics_ns.xml'))] }
|
11
|
+
stub.post('/timeout') { raise Faraday::TimeoutError }
|
12
|
+
stub.post('/no_connection') { raise Faraday::ConnectionFailed, 'peer has finished all lan parties and gone home' }
|
10
13
|
end
|
11
14
|
end
|
12
15
|
end
|
13
16
|
|
14
|
-
it
|
15
|
-
expect { subject.post(
|
16
|
-
expect { subject.post(
|
17
|
+
it 'will handle errornous response with raising the related error class' do
|
18
|
+
expect { subject.post('/business_nok') }.to raise_error(Epics::Error::BusinessError, 'EBICS_PROCESSING_ERROR - During processing of the EBICS request, other business-related errors have ocurred')
|
19
|
+
expect { subject.post('/technical_nok') }.to raise_error(Epics::Error::TechnicalError, 'EBICS_AUTHENTICATION_FAILED - Authentication signature error')
|
17
20
|
end
|
18
21
|
|
19
|
-
it
|
20
|
-
expect(subject.post(
|
22
|
+
it 'will parsed as Epics::Response' do
|
23
|
+
expect(subject.post('/ok').body).to be_kind_of(Epics::Response)
|
21
24
|
end
|
22
25
|
|
26
|
+
context 'failures' do
|
27
|
+
it 'will raise a timeout correctly' do
|
28
|
+
expect { subject.post('/timeout') }.to raise_error(Faraday::TimeoutError, 'timeout')
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'will properly raise non-epics errors' do
|
32
|
+
expect { subject.post('/no_connection') }.to raise_error(Faraday::ConnectionFailed, 'peer has finished all lan parties and gone home')
|
33
|
+
end
|
34
|
+
end
|
23
35
|
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
RSpec.describe Epics::CCS do
|
2
|
+
|
3
|
+
let(:client) { Epics::Client.new( File.open(File.join( File.dirname(__FILE__), '..', 'fixtures', 'SIZBN001.key')), 'secret' , 'https://194.180.18.30/ebicsweb/ebicsweb', 'SIZBN001', 'EBIX', 'EBICS') }
|
4
|
+
let(:document) { File.read( File.join( File.dirname(__FILE__), '..', 'fixtures', 'xml', 'cd1.xml') ) }
|
5
|
+
subject { described_class.new(client, document) }
|
6
|
+
|
7
|
+
describe 'order attributes' do
|
8
|
+
it { expect(subject.header.to_s).to include('<OrderAttribute>DZHNN</OrderAttribute>') }
|
9
|
+
it { expect(subject.header.to_s).to include('<OrderType>CCS</OrderType>') }
|
10
|
+
end
|
11
|
+
|
12
|
+
describe '#to_xml' do
|
13
|
+
specify { expect(subject.to_xml).to be_a_valid_ebics_doc }
|
14
|
+
end
|
15
|
+
|
16
|
+
describe '#to_transfer_xml' do
|
17
|
+
before { subject.transaction_id = SecureRandom.hex(16) }
|
18
|
+
|
19
|
+
specify { expect(subject.to_transfer_xml).to be_a_valid_ebics_doc }
|
20
|
+
end
|
21
|
+
end
|
data/spec/orders/cct_spec.rb
CHANGED
@@ -4,6 +4,11 @@ RSpec.describe Epics::CCT do
|
|
4
4
|
let(:document) { File.read( File.join( File.dirname(__FILE__), '..', 'fixtures', 'xml', 'cd1.xml') ) }
|
5
5
|
subject { described_class.new(client, document) }
|
6
6
|
|
7
|
+
describe 'order attributes' do
|
8
|
+
it { expect(subject.header.to_s).to include('<OrderAttribute>OZHNN</OrderAttribute>') }
|
9
|
+
it { expect(subject.header.to_s).to include('<OrderType>CCT</OrderType>') }
|
10
|
+
end
|
11
|
+
|
7
12
|
describe '#to_xml' do
|
8
13
|
specify { expect(subject.to_xml).to be_a_valid_ebics_doc }
|
9
14
|
end
|
@@ -13,5 +18,4 @@ RSpec.describe Epics::CCT do
|
|
13
18
|
|
14
19
|
specify { expect(subject.to_transfer_xml).to be_a_valid_ebics_doc }
|
15
20
|
end
|
16
|
-
|
17
|
-
end
|
21
|
+
end
|
data/spec/orders/cdb_spec.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
RSpec.describe Epics::CDB do
|
2
2
|
|
3
3
|
let(:client) { Epics::Client.new( File.open(File.join( File.dirname(__FILE__), '..', 'fixtures', 'SIZBN001.key')), 'secret' , 'https://194.180.18.30/ebicsweb/ebicsweb', 'SIZBN001', 'EBIX', 'EBICS') }
|
4
|
-
let(:document) { File.read( File.join( File.dirname(__FILE__), '..', 'fixtures', 'xml', '
|
4
|
+
let(:document) { File.read( File.join( File.dirname(__FILE__), '..', 'fixtures', 'xml', 'cdb.xml') ) }
|
5
5
|
subject { described_class.new(client, document) }
|
6
6
|
|
7
7
|
describe '#to_xml' do
|
@@ -0,0 +1,15 @@
|
|
1
|
+
RSpec.describe Epics::XDS do
|
2
|
+
let(:client) { Epics::Client.new( File.open(File.join( File.dirname(__FILE__), '..', 'fixtures', 'SIZBN001.key')), 'secret' , 'https://194.180.18.30/ebicsweb/ebicsweb', 'SIZBN001', 'EBIX', 'EBICS') }
|
3
|
+
let(:document) { File.read( File.join( File.dirname(__FILE__), '..', 'fixtures', 'xml', 'cd1.xml') ) }
|
4
|
+
subject { described_class.new(client, document) }
|
5
|
+
|
6
|
+
describe '#to_xml' do
|
7
|
+
specify { expect(subject.to_xml).to be_a_valid_ebics_doc }
|
8
|
+
end
|
9
|
+
|
10
|
+
describe '#to_transfer_xml' do
|
11
|
+
before { subject.transaction_id = SecureRandom.hex(16) }
|
12
|
+
|
13
|
+
specify { expect(subject.to_transfer_xml).to be_a_valid_ebics_doc }
|
14
|
+
end
|
15
|
+
end
|
metadata
CHANGED
@@ -1,57 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: epics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lars Brillert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: faraday
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: nokogiri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 1.10.7
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 1.10.7
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rubyzip
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 2.2.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 2.2.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,21 +67,21 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.6.2
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: equivalent-xml
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: pry
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - ">="
|
@@ -95,21 +95,21 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: rake
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - "
|
101
|
+
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
103
|
+
version: '13.0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- - "
|
108
|
+
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
110
|
+
version: '13.0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
112
|
+
name: rspec
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - ">="
|
@@ -123,7 +123,7 @@ dependencies:
|
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
126
|
+
name: webmock
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
@@ -146,7 +146,7 @@ description: |2
|
|
146
146
|
STA HAA HTD HPD PKT HAC HKD C52 C53 C54
|
147
147
|
|
148
148
|
And the following upload orders:
|
149
|
-
CD1 CDD CCT
|
149
|
+
CD1 CDD CCT CDB CDS CCS CDZ
|
150
150
|
email:
|
151
151
|
- lars@railslove.com
|
152
152
|
executables: []
|
@@ -155,7 +155,7 @@ extra_rdoc_files: []
|
|
155
155
|
files:
|
156
156
|
- ".gitignore"
|
157
157
|
- ".rspec"
|
158
|
-
- ".
|
158
|
+
- ".semaphore/semaphore.yml"
|
159
159
|
- CHANGELOG.md
|
160
160
|
- CONTRIBUTING.md
|
161
161
|
- Gemfile
|
@@ -198,6 +198,8 @@ files:
|
|
198
198
|
- lib/epics/sta.rb
|
199
199
|
- lib/epics/version.rb
|
200
200
|
- lib/epics/vmk.rb
|
201
|
+
- lib/epics/xct.rb
|
202
|
+
- lib/epics/xds.rb
|
201
203
|
- lib/letter/ini.erb
|
202
204
|
- spec/.DS_Store
|
203
205
|
- spec/client_spec.rb
|
@@ -212,6 +214,9 @@ files:
|
|
212
214
|
- spec/fixtures/xml/cd1.xml
|
213
215
|
- spec/fixtures/xml/cd1_init_response.xml
|
214
216
|
- spec/fixtures/xml/cd1_transfer_response.xml
|
217
|
+
- spec/fixtures/xml/cdb.xml
|
218
|
+
- spec/fixtures/xml/cdb_init_response.xml
|
219
|
+
- spec/fixtures/xml/cdb_transfer_response.xml
|
215
220
|
- spec/fixtures/xml/ebics_business_nok.xml
|
216
221
|
- spec/fixtures/xml/ebics_technical_nok.xml
|
217
222
|
- spec/fixtures/xml/haa.xml
|
@@ -223,6 +228,7 @@ files:
|
|
223
228
|
- spec/fixtures/xml/hpb_response_order.xml
|
224
229
|
- spec/fixtures/xml/hpb_response_order_without_ns.xml
|
225
230
|
- spec/fixtures/xml/htd_order_data.xml
|
231
|
+
- spec/fixtures/xml/htd_order_data_without_names.xml
|
226
232
|
- spec/fixtures/xml/ini_response_h004_ns.xml
|
227
233
|
- spec/fixtures/xml/jruby/hia.xml
|
228
234
|
- spec/fixtures/xml/jruby/ini.xml
|
@@ -242,6 +248,7 @@ files:
|
|
242
248
|
- spec/orders/c52_spec.rb
|
243
249
|
- spec/orders/c53_spec.rb
|
244
250
|
- spec/orders/c54_spec.rb
|
251
|
+
- spec/orders/ccs_spec.rb
|
245
252
|
- spec/orders/cct_spec.rb
|
246
253
|
- spec/orders/cd1_spec.rb
|
247
254
|
- spec/orders/cdb_spec.rb
|
@@ -258,6 +265,7 @@ files:
|
|
258
265
|
- spec/orders/ptk_spec.rb
|
259
266
|
- spec/orders/sta_spec.rb
|
260
267
|
- spec/orders/vmk_spec.rb
|
268
|
+
- spec/orders/xds_spec.rb
|
261
269
|
- spec/response_spec.rb
|
262
270
|
- spec/signer_spec.rb
|
263
271
|
- spec/spec_helper.rb
|
@@ -290,15 +298,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
290
298
|
requirements:
|
291
299
|
- - ">="
|
292
300
|
- !ruby/object:Gem::Version
|
293
|
-
version: '2.
|
301
|
+
version: '2.4'
|
294
302
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
295
303
|
requirements:
|
296
304
|
- - ">="
|
297
305
|
- !ruby/object:Gem::Version
|
298
306
|
version: '0'
|
299
307
|
requirements: []
|
300
|
-
|
301
|
-
rubygems_version: 2.5.1
|
308
|
+
rubygems_version: 3.0.8
|
302
309
|
signing_key:
|
303
310
|
specification_version: 4
|
304
311
|
summary: a ruby implementation of the EBICS protocol
|
@@ -316,6 +323,9 @@ test_files:
|
|
316
323
|
- spec/fixtures/xml/cd1.xml
|
317
324
|
- spec/fixtures/xml/cd1_init_response.xml
|
318
325
|
- spec/fixtures/xml/cd1_transfer_response.xml
|
326
|
+
- spec/fixtures/xml/cdb.xml
|
327
|
+
- spec/fixtures/xml/cdb_init_response.xml
|
328
|
+
- spec/fixtures/xml/cdb_transfer_response.xml
|
319
329
|
- spec/fixtures/xml/ebics_business_nok.xml
|
320
330
|
- spec/fixtures/xml/ebics_technical_nok.xml
|
321
331
|
- spec/fixtures/xml/haa.xml
|
@@ -327,6 +337,7 @@ test_files:
|
|
327
337
|
- spec/fixtures/xml/hpb_response_order.xml
|
328
338
|
- spec/fixtures/xml/hpb_response_order_without_ns.xml
|
329
339
|
- spec/fixtures/xml/htd_order_data.xml
|
340
|
+
- spec/fixtures/xml/htd_order_data_without_names.xml
|
330
341
|
- spec/fixtures/xml/ini_response_h004_ns.xml
|
331
342
|
- spec/fixtures/xml/jruby/hia.xml
|
332
343
|
- spec/fixtures/xml/jruby/ini.xml
|
@@ -346,6 +357,7 @@ test_files:
|
|
346
357
|
- spec/orders/c52_spec.rb
|
347
358
|
- spec/orders/c53_spec.rb
|
348
359
|
- spec/orders/c54_spec.rb
|
360
|
+
- spec/orders/ccs_spec.rb
|
349
361
|
- spec/orders/cct_spec.rb
|
350
362
|
- spec/orders/cd1_spec.rb
|
351
363
|
- spec/orders/cdb_spec.rb
|
@@ -362,6 +374,7 @@ test_files:
|
|
362
374
|
- spec/orders/ptk_spec.rb
|
363
375
|
- spec/orders/sta_spec.rb
|
364
376
|
- spec/orders/vmk_spec.rb
|
377
|
+
- spec/orders/xds_spec.rb
|
365
378
|
- spec/response_spec.rb
|
366
379
|
- spec/signer_spec.rb
|
367
380
|
- spec/spec_helper.rb
|