currency_cloud 1.5.0 → 1.6.1
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 +4 -4
- data/README.md +4 -0
- data/currency_cloud.gemspec +5 -5
- data/lib/currency_cloud/pagination.rb +2 -0
- data/lib/currency_cloud/resourceful_collection.rb +2 -0
- data/lib/currency_cloud/term_and_condition.rb +12 -0
- data/lib/currency_cloud/terms_and_conditions.rb +7 -0
- data/lib/currency_cloud/version.rb +1 -1
- data/spec/integration/errors_spec.rb +2 -4
- data/spec/integration/ibans_spec.rb +2 -2
- data/spec/integration/term_and_condition_spec.rb +25 -0
- data/spec/support/vcr_cassettes/IBANs/can_IBANs_for_subaccounts.yml +1 -1
- data/spec/support/vcr_cassettes/IBANs/can_find.yml +1 -1
- data/spec/support/vcr_cassettes/TermsAndConditions/can_accept_terms.yml +140 -0
- metadata +27 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09098620dee8897122a2811ff91237dbb6eaedc70f8579c80609b1bfde84ee48'
|
4
|
+
data.tar.gz: 24e2cfa670a5528523aaaa3f1b61d1984c86734ab3d6fa14587d4eb90690c61c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 245945ff015090fcd25a6695b758233fc9b34c51a06eefa00cc647602a71670954a2b8bf36d4adf9e7dac5bec9633f3ded966cb3e6bee5aeaa50ac29936cf4a4
|
7
|
+
data.tar.gz: 3031f5e4a8d774242e948ca468d3ba62559b1028b5774aace07acfe4b5fa43628472d994b9f952b86f411662c7058000d24dc4790bb76389130c7df900bc5666
|
data/README.md
CHANGED
@@ -162,6 +162,10 @@ Once a feature has been marked as deprecated, we no longer develop the code or i
|
|
162
162
|
(No features are currently being deprecated)
|
163
163
|
```
|
164
164
|
|
165
|
+
# Security Consideration
|
166
|
+
1. Authentication
|
167
|
+
1. All data under [this folder](spec/support/vcr_cassettes) provide and return dummy credentials to verify that authentication workflows behave as expected.
|
168
|
+
|
165
169
|
# Support
|
166
170
|
We actively support the latest version of the SDK. We support the immediate previous version on best-efforts basis. All other versions are no longer supported nor maintained.
|
167
171
|
|
data/currency_cloud.gemspec
CHANGED
@@ -15,13 +15,13 @@ Gem::Specification.new do |s|
|
|
15
15
|
|
16
16
|
s.add_dependency('httparty', '~> 0.21')
|
17
17
|
|
18
|
-
s.add_dependency('json', '
|
19
|
-
s.add_development_dependency('rake', '~>
|
18
|
+
s.add_dependency('json', '>= 2.3', '< 2.7.6')
|
19
|
+
s.add_development_dependency('rake', '~> 13.2.1')
|
20
20
|
|
21
|
-
s.add_development_dependency('addressable', '<= 2.
|
21
|
+
s.add_development_dependency('addressable', '<= 2.9.0')
|
22
22
|
s.add_development_dependency('rspec', '~> 3.1')
|
23
|
-
s.add_development_dependency('vcr', '~>
|
24
|
-
s.add_development_dependency('webmock', '~>
|
23
|
+
s.add_development_dependency('vcr', '~> 6.0.0')
|
24
|
+
s.add_development_dependency('webmock', '~> 3.25.0')
|
25
25
|
|
26
26
|
s.files = `git ls-files`.split("\n")
|
27
27
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
@@ -16,8 +16,7 @@ describe 'Error', vcr: true do
|
|
16
16
|
CurrencyCloud.login_id = 'non-existent-login-id'
|
17
17
|
CurrencyCloud.api_key = 'deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef'
|
18
18
|
|
19
|
-
expected_error = %{CurrencyCloud::BadRequestError
|
20
|
-
---
|
19
|
+
expected_error = %{CurrencyCloud::BadRequestError---
|
21
20
|
platform: #{platform}
|
22
21
|
request:
|
23
22
|
parameters:
|
@@ -89,8 +88,7 @@ errors:
|
|
89
88
|
CurrencyCloud.session
|
90
89
|
expect(0).to eq 1, 'expected exception that was not raised'
|
91
90
|
rescue CurrencyCloud::UnexpectedError => error
|
92
|
-
expected_error = %(CurrencyCloud::UnexpectedError
|
93
|
-
---
|
91
|
+
expected_error = %(CurrencyCloud::UnexpectedError---
|
94
92
|
platform: #{platform}
|
95
93
|
request:
|
96
94
|
parameters:
|
@@ -10,7 +10,7 @@ describe 'IBANs', vcr: true do
|
|
10
10
|
iban = ibans[0]
|
11
11
|
expect(iban).to be_a(CurrencyCloud::IBAN)
|
12
12
|
expect(iban.id).to eq "8242d1f4-4555-4155-a9bf-30feee785121"
|
13
|
-
expect(iban.iban_code).to eq '
|
13
|
+
expect(iban.iban_code).to eq 'GB33BUKB20201555555555'
|
14
14
|
expect(iban.currency).to eq 'EUR'
|
15
15
|
end
|
16
16
|
|
@@ -23,7 +23,7 @@ describe 'IBANs', vcr: true do
|
|
23
23
|
iban = ibans[0]
|
24
24
|
expect(iban).to be_a(CurrencyCloud::IBAN)
|
25
25
|
expect(iban.id).to eq "01d8c0bc-7f0c-4cdd-bc7e-ef81f68500fe"
|
26
|
-
expect(iban.iban_code).to eq '
|
26
|
+
expect(iban.iban_code).to eq 'FR7630006000011234567890189'
|
27
27
|
expect(iban.currency).to eq 'EUR'
|
28
28
|
end
|
29
29
|
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "TermsAndConditions", vcr: true do
|
4
|
+
before do
|
5
|
+
CurrencyCloud.login_id = "development@currencycloud.com"
|
6
|
+
CurrencyCloud.api_key = "deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef"
|
7
|
+
CurrencyCloud.environment = :demonstration
|
8
|
+
CurrencyCloud.reset_session
|
9
|
+
end
|
10
|
+
|
11
|
+
it "can accept terms" do
|
12
|
+
terms_and_conditions_result = CurrencyCloud::TermAndCondition.accept(
|
13
|
+
type: "VGSI",
|
14
|
+
version: "1.0",
|
15
|
+
first_name: "firstName",
|
16
|
+
last_name: "lastName",
|
17
|
+
email: "development@currencycloud.com",
|
18
|
+
reference_type: "ACCOUNT",
|
19
|
+
reference_id: "ebcaee2f-a733-11ef-8de2-0242ac1d0002"
|
20
|
+
)
|
21
|
+
expect(terms_and_conditions_result).to be_a(CurrencyCloud::TermsAndConditions)
|
22
|
+
expect(terms_and_conditions_result.acceptance_id).to eq("1c4667dd-ddea-47e8-a0d7-e39d9cce1a39")
|
23
|
+
expect(terms_and_conditions_result.accepted_at).to eq("2024-10-04T15:27:04.052814529")
|
24
|
+
end
|
25
|
+
end
|
@@ -99,7 +99,7 @@ http_interactions:
|
|
99
99
|
- 43b4a540be7806c4-LHR
|
100
100
|
body:
|
101
101
|
encoding: UTF-8
|
102
|
-
string: '{"ibans":[{"id":"01d8c0bc-7f0c-4cdd-bc7e-ef81f68500fe","iban_code":"
|
102
|
+
string: '{"ibans":[{"id":"01d8c0bc-7f0c-4cdd-bc7e-ef81f68500fe","iban_code":"FR7630006000011234567890189","account_id":"87077161-91de-012f-e284-1e0030c7f352",
|
103
103
|
"currency":"EUR","account_holder_name":"Account-IGGLNHYTWFKI","bank_institution_name":"The Currency Cloud","bank_institution_address":"12 Steward Street, The Steward Building, London, E1 6FQ, GB",
|
104
104
|
"bank_institution_country":"United Kingdom","bic_swift":"TCCLGB31","created_at":"2018-01-01T12:34:56+00:00","updated_at":"2018-01-01T12:34:56+00:00"}],
|
105
105
|
"pagination":{"total_entries":1,"total_pages":1,"current_page":1,"per_page":25,"previous_page":-1,"next_page":2,"order":"created_at","order_asc_desc":"asc"}}'
|
@@ -99,7 +99,7 @@ http_interactions:
|
|
99
99
|
- 43b4a5340f4a0a78-LHR
|
100
100
|
body:
|
101
101
|
encoding: UTF-8
|
102
|
-
string: '{"ibans":[{"id":"8242d1f4-4555-4155-a9bf-30feee785121","iban_code":"
|
102
|
+
string: '{"ibans":[{"id":"8242d1f4-4555-4155-a9bf-30feee785121","iban_code":"GB33BUKB20201555555555","account_id":"e277c9f9-679f-454f-8367-274b3ff977ff","currency":"EUR",
|
103
103
|
"account_holder_name":"Development CM","bank_institution_name":"The Currency Cloud","bank_institution_address":"12 Steward Street, The Steward Building, London, E1 6FQ, GB",
|
104
104
|
"bank_institution_country":"United Kingdom","bic_swift":"TCCLGB31","created_at":"2018-02-19T17:24:48+00:00","updated_at":"2018-02-19T17:24:48+00:00"},
|
105
105
|
{"id":"8242d1f4-4555-4155-a9bf-30feee785121","iban_code":"GB51TCCL00997961584808","account_id":"e277c9f9-679f-454f-8367-274b3ff977ff","currency":"GBP",
|
@@ -0,0 +1,140 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://devapi.currencycloud.com/v2/authenticate/api
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: login_id=development%40currencycloud.com&api_key=deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- CurrencyCloudSDK/2.0 Ruby/1.5.0
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message: OK
|
16
|
+
headers:
|
17
|
+
Date:
|
18
|
+
- Tue, 06 Oct 2020 14:57:04 GMT
|
19
|
+
Content-Type:
|
20
|
+
- application/json;charset=utf-8
|
21
|
+
Transfer-Encoding:
|
22
|
+
- chunked
|
23
|
+
Connection:
|
24
|
+
- keep-alive
|
25
|
+
Set-Cookie:
|
26
|
+
- AWSALB=+5Bn07KhTyd8ay/xxyjs4ZHckx+wkDTfrA80GorY54ZviIp/vvD/sBmk/jf5S5i1YrEEgjnAFwp3USqW3T89BGjsd9wszWiebB0mbJ/aL4Ets4ZrWBECalxs5pJT;
|
27
|
+
Expires=Tue, 13 Oct 2020 14:57:02 GMT; Path=/
|
28
|
+
- AWSALBCORS=+5Bn07KhTyd8ay/xxyjs4ZHckx+wkDTfrA80GorY54ZviIp/vvD/sBmk/jf5S5i1YrEEgjnAFwp3USqW3T89BGjsd9wszWiebB0mbJ/aL4Ets4ZrWBECalxs5pJT;
|
29
|
+
Expires=Tue, 13 Oct 2020 14:57:02 GMT; Path=/; SameSite=None; Secure
|
30
|
+
- __cfduid=d70c09bac27ff94e69a66c56e09ea0e211601996222; expires=Thu, 05-Nov-20
|
31
|
+
14:57:02 GMT; path=/; domain=.currencycloud.com; HttpOnly; SameSite=Lax
|
32
|
+
Access-Control-Allow-Origin:
|
33
|
+
- "*"
|
34
|
+
X-Request-Id:
|
35
|
+
- ca2e91bf-0038-4e36-b0a8-5ab248553304
|
36
|
+
Access-Control-Allow-Methods:
|
37
|
+
- POST
|
38
|
+
X-Content-Type-Options:
|
39
|
+
- nosniff
|
40
|
+
Vary:
|
41
|
+
- Origin
|
42
|
+
Access-Control-Allow-Headers:
|
43
|
+
- authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,X-Auth-Token,Origin,Authority,User-Agent
|
44
|
+
Cf-Cache-Status:
|
45
|
+
- DYNAMIC
|
46
|
+
Cf-Request-Id:
|
47
|
+
- 05a00389200000ce2fb1be0200000001
|
48
|
+
Expect-Ct:
|
49
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
50
|
+
Strict-Transport-Security:
|
51
|
+
- max-age=2592000; includeSubDomains
|
52
|
+
Server:
|
53
|
+
- cloudflare
|
54
|
+
Cf-Ray:
|
55
|
+
- 5de03b883b41ce2f-LHR
|
56
|
+
body:
|
57
|
+
encoding: UTF-8
|
58
|
+
string: '{"auth_token":"deadbeefdeadbeefdeadbeefdeadbeef"}'
|
59
|
+
http_version:
|
60
|
+
recorded_at: Tue, 06 Oct 2020 14:57:04 GMT
|
61
|
+
- request:
|
62
|
+
method: post
|
63
|
+
uri: https://devapi.currencycloud.com/v2/terms_and_conditions/accept
|
64
|
+
body:
|
65
|
+
encoding: UTF-8
|
66
|
+
string: type=VGSI&version=1.0&first_name=firstName&last_name=lastName&email=development%40currencycloud.com&reference_type=ACCOUNT&reference_id=ebcaee2f-a733-11ef-8de2-0242ac1d0002
|
67
|
+
headers:
|
68
|
+
X-Auth-Token:
|
69
|
+
- deadbeefdeadbeefdeadbeefdeadbeef
|
70
|
+
User-Agent:
|
71
|
+
- CurrencyCloudSDK/2.0 Ruby/1.5.0
|
72
|
+
response:
|
73
|
+
status:
|
74
|
+
code: 200
|
75
|
+
message: OK
|
76
|
+
headers:
|
77
|
+
Date:
|
78
|
+
- Tue, 23 Nov 2024 14:58:18 GMT
|
79
|
+
Content-Type:
|
80
|
+
- application/json; charset=UTF-8
|
81
|
+
Transfer-Encoding:
|
82
|
+
- chunked
|
83
|
+
Connection:
|
84
|
+
- keep-alive
|
85
|
+
Set-Cookie:
|
86
|
+
- AWSALB=zAxJVt+VYDZWl6uY00wpKwEbXjrgXTN+qejbio2A6YS8V+6lBqAR0Jnjlp4JytpEUfEahh/dd7tsj9RU6ZNBzRB/wzZTdwEXJgUsfoK9w6nlmcq8fEHp7KfxeQaZ;
|
87
|
+
Expires=Tue, 13 Oct 2020 14:58:18 GMT; Path=/
|
88
|
+
- AWSALBCORS=zAxJVt+VYDZWl6uY00wpKwEbXjrgXTN+qejbio2A6YS8V+6lBqAR0Jnjlp4JytpEUfEahh/dd7tsj9RU6ZNBzRB/wzZTdwEXJgUsfoK9w6nlmcq8fEHp7KfxeQaZ;
|
89
|
+
Expires=Tue, 13 Oct 2020 14:58:18 GMT; Path=/; SameSite=None; Secure
|
90
|
+
- __cfduid=d8cdf69d035d7aafb48f8bef431d260cd1601996298; expires=Thu, 05-Nov-20
|
91
|
+
14:58:18 GMT; path=/; domain=.currencycloud.com; HttpOnly; SameSite=Lax
|
92
|
+
Cf-Ipcountry:
|
93
|
+
- GB
|
94
|
+
Access-Control-Allow-Origin:
|
95
|
+
- "*"
|
96
|
+
Access-Control-Allow-Methods:
|
97
|
+
- DELETE,POST,GET,OPTIONS,PATCH,PUT
|
98
|
+
User-Agent:
|
99
|
+
- CurrencyCloudSDK/2.0 Ruby/1.5.0
|
100
|
+
X-Forwarded-Proto:
|
101
|
+
- https
|
102
|
+
Cdn-Loop:
|
103
|
+
- cloudflare
|
104
|
+
Cf-Visitor:
|
105
|
+
- '{"scheme":"https"}'
|
106
|
+
Accept-Encoding:
|
107
|
+
- gzip
|
108
|
+
Cf-Connecting-Ip:
|
109
|
+
- 217.168.17.4
|
110
|
+
X-Forwarded-Port:
|
111
|
+
- '443'
|
112
|
+
Access-Control-Allow-Headers:
|
113
|
+
- authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,X-Auth-Token,Origin,Authority,User-Agent
|
114
|
+
X-Amzn-Trace-Id:
|
115
|
+
- Root=1-5f7c860a-483eb0410e5e568b35f74737
|
116
|
+
Wso2-Am-Api-Default-Version:
|
117
|
+
- 'true'
|
118
|
+
X-Auth-Token:
|
119
|
+
- deadbeefdeadbeefdeadbeefdeadbeef
|
120
|
+
X-Forwarded-For:
|
121
|
+
- 217.168.17.4, 141.101.99.87
|
122
|
+
Cf-Request-Id:
|
123
|
+
- 05a004b1cd00000762bf043200000001
|
124
|
+
Cf-Cache-Status:
|
125
|
+
- DYNAMIC
|
126
|
+
Expect-Ct:
|
127
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
128
|
+
Strict-Transport-Security:
|
129
|
+
- max-age=2592000; includeSubDomains
|
130
|
+
Server:
|
131
|
+
- cloudflare
|
132
|
+
Cf-Ray:
|
133
|
+
- 5de03d62eeb50762-LHR
|
134
|
+
body:
|
135
|
+
encoding: UTF-8
|
136
|
+
string: |-
|
137
|
+
{ "acceptance_id": "1c4667dd-ddea-47e8-a0d7-e39d9cce1a39", "accepted_at": "2024-10-04T15:27:04.052814529"}
|
138
|
+
http_version:
|
139
|
+
recorded_at: Tue, 06 Oct 2020 14:58:18 GMT
|
140
|
+
recorded_with: VCR 5.0.0
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: currency_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Liam McAndrew
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-05-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: httparty
|
@@ -29,44 +29,50 @@ dependencies:
|
|
29
29
|
name: json
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- - "
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '2.3'
|
35
|
+
- - "<"
|
33
36
|
- !ruby/object:Gem::Version
|
34
|
-
version: 2.
|
37
|
+
version: 2.7.6
|
35
38
|
type: :runtime
|
36
39
|
prerelease: false
|
37
40
|
version_requirements: !ruby/object:Gem::Requirement
|
38
41
|
requirements:
|
39
|
-
- - "
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '2.3'
|
45
|
+
- - "<"
|
40
46
|
- !ruby/object:Gem::Version
|
41
|
-
version: 2.
|
47
|
+
version: 2.7.6
|
42
48
|
- !ruby/object:Gem::Dependency
|
43
49
|
name: rake
|
44
50
|
requirement: !ruby/object:Gem::Requirement
|
45
51
|
requirements:
|
46
52
|
- - "~>"
|
47
53
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
54
|
+
version: 13.2.1
|
49
55
|
type: :development
|
50
56
|
prerelease: false
|
51
57
|
version_requirements: !ruby/object:Gem::Requirement
|
52
58
|
requirements:
|
53
59
|
- - "~>"
|
54
60
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
61
|
+
version: 13.2.1
|
56
62
|
- !ruby/object:Gem::Dependency
|
57
63
|
name: addressable
|
58
64
|
requirement: !ruby/object:Gem::Requirement
|
59
65
|
requirements:
|
60
66
|
- - "<="
|
61
67
|
- !ruby/object:Gem::Version
|
62
|
-
version: 2.
|
68
|
+
version: 2.9.0
|
63
69
|
type: :development
|
64
70
|
prerelease: false
|
65
71
|
version_requirements: !ruby/object:Gem::Requirement
|
66
72
|
requirements:
|
67
73
|
- - "<="
|
68
74
|
- !ruby/object:Gem::Version
|
69
|
-
version: 2.
|
75
|
+
version: 2.9.0
|
70
76
|
- !ruby/object:Gem::Dependency
|
71
77
|
name: rspec
|
72
78
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,28 +93,28 @@ dependencies:
|
|
87
93
|
requirements:
|
88
94
|
- - "~>"
|
89
95
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
96
|
+
version: 6.0.0
|
91
97
|
type: :development
|
92
98
|
prerelease: false
|
93
99
|
version_requirements: !ruby/object:Gem::Requirement
|
94
100
|
requirements:
|
95
101
|
- - "~>"
|
96
102
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
103
|
+
version: 6.0.0
|
98
104
|
- !ruby/object:Gem::Dependency
|
99
105
|
name: webmock
|
100
106
|
requirement: !ruby/object:Gem::Requirement
|
101
107
|
requirements:
|
102
108
|
- - "~>"
|
103
109
|
- !ruby/object:Gem::Version
|
104
|
-
version:
|
110
|
+
version: 3.25.0
|
105
111
|
type: :development
|
106
112
|
prerelease: false
|
107
113
|
version_requirements: !ruby/object:Gem::Requirement
|
108
114
|
requirements:
|
109
115
|
- - "~>"
|
110
116
|
- !ruby/object:Gem::Version
|
111
|
-
version:
|
117
|
+
version: 3.25.0
|
112
118
|
description: Ruby SDK for the Currency Cloud API - https://www.currencycloud.com/developers/overview/
|
113
119
|
email:
|
114
120
|
- liam.mcandrew@currencycloud.com
|
@@ -195,6 +201,8 @@ files:
|
|
195
201
|
- lib/currency_cloud/sender_details_result.rb
|
196
202
|
- lib/currency_cloud/session.rb
|
197
203
|
- lib/currency_cloud/settlement_account.rb
|
204
|
+
- lib/currency_cloud/term_and_condition.rb
|
205
|
+
- lib/currency_cloud/terms_and_conditions.rb
|
198
206
|
- lib/currency_cloud/transaction.rb
|
199
207
|
- lib/currency_cloud/transfer.rb
|
200
208
|
- lib/currency_cloud/version.rb
|
@@ -219,6 +227,7 @@ files:
|
|
219
227
|
- spec/integration/rates_spec.rb
|
220
228
|
- spec/integration/reference_spec.rb
|
221
229
|
- spec/integration/reports_spec.rb
|
230
|
+
- spec/integration/term_and_condition_spec.rb
|
222
231
|
- spec/integration/transactions_spec.rb
|
223
232
|
- spec/integration/transfers_spec.rb
|
224
233
|
- spec/integration/virtual_accounts_spec.rb
|
@@ -289,6 +298,7 @@ files:
|
|
289
298
|
- spec/support/vcr_cassettes/Reports/can_create_payments_report.yml
|
290
299
|
- spec/support/vcr_cassettes/Reports/can_find_report_requests.yml
|
291
300
|
- spec/support/vcr_cassettes/Reports/can_retrieve_report_request.yml
|
301
|
+
- spec/support/vcr_cassettes/TermsAndConditions/can_accept_terms.yml
|
292
302
|
- spec/support/vcr_cassettes/Transactions/can_retrieve_sender_details.yml
|
293
303
|
- spec/support/vcr_cassettes/Transfers/can_cancel.yml
|
294
304
|
- spec/support/vcr_cassettes/Transfers/can_create.yml
|
@@ -319,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
319
329
|
- !ruby/object:Gem::Version
|
320
330
|
version: '0'
|
321
331
|
requirements: []
|
322
|
-
rubygems_version: 3.
|
332
|
+
rubygems_version: 3.1.6
|
323
333
|
signing_key:
|
324
334
|
specification_version: 4
|
325
335
|
summary: Ruby SDK for the Currency Cloud API
|
@@ -340,6 +350,7 @@ test_files:
|
|
340
350
|
- spec/integration/rates_spec.rb
|
341
351
|
- spec/integration/reference_spec.rb
|
342
352
|
- spec/integration/reports_spec.rb
|
353
|
+
- spec/integration/term_and_condition_spec.rb
|
343
354
|
- spec/integration/transactions_spec.rb
|
344
355
|
- spec/integration/transfers_spec.rb
|
345
356
|
- spec/integration/virtual_accounts_spec.rb
|
@@ -410,6 +421,7 @@ test_files:
|
|
410
421
|
- spec/support/vcr_cassettes/Reports/can_create_payments_report.yml
|
411
422
|
- spec/support/vcr_cassettes/Reports/can_find_report_requests.yml
|
412
423
|
- spec/support/vcr_cassettes/Reports/can_retrieve_report_request.yml
|
424
|
+
- spec/support/vcr_cassettes/TermsAndConditions/can_accept_terms.yml
|
413
425
|
- spec/support/vcr_cassettes/Transactions/can_retrieve_sender_details.yml
|
414
426
|
- spec/support/vcr_cassettes/Transfers/can_cancel.yml
|
415
427
|
- spec/support/vcr_cassettes/Transfers/can_create.yml
|