cloud_payments 0.0.3 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +12 -15
- data/Gemfile +2 -2
- data/README.md +74 -5
- data/Rakefile +1 -0
- data/cloud_payments.gemspec +7 -6
- data/config.ru +1 -0
- data/lib/cloud_payments.rb +1 -1
- data/lib/cloud_payments/client.rb +3 -2
- data/lib/cloud_payments/client/errors.rb +1 -0
- data/lib/cloud_payments/client/gateway_errors.rb +3 -1
- data/lib/cloud_payments/client/response.rb +2 -1
- data/lib/cloud_payments/client/serializer.rb +1 -0
- data/lib/cloud_payments/client/serializer/base.rb +9 -1
- data/lib/cloud_payments/client/serializer/multi_json.rb +1 -0
- data/lib/cloud_payments/config.rb +4 -0
- data/lib/cloud_payments/models.rb +2 -0
- data/lib/cloud_payments/models/like_subscription.rb +1 -0
- data/lib/cloud_payments/models/model.rb +1 -0
- data/lib/cloud_payments/models/on_fail.rb +2 -0
- data/lib/cloud_payments/models/on_kassa_receipt.rb +23 -0
- data/lib/cloud_payments/models/on_pay.rb +2 -0
- data/lib/cloud_payments/models/on_recurrent.rb +1 -0
- data/lib/cloud_payments/models/order.rb +1 -0
- data/lib/cloud_payments/models/secure3d.rb +1 -0
- data/lib/cloud_payments/models/subscription.rb +2 -1
- data/lib/cloud_payments/models/transaction.rb +9 -0
- data/lib/cloud_payments/namespaces.rb +12 -1
- data/lib/cloud_payments/namespaces/apple_pay.rb +18 -0
- data/lib/cloud_payments/namespaces/base.rb +2 -1
- data/lib/cloud_payments/namespaces/cards.rb +6 -0
- data/lib/cloud_payments/namespaces/kassa.rb +22 -0
- data/lib/cloud_payments/namespaces/orders.rb +5 -0
- data/lib/cloud_payments/namespaces/payments.rb +11 -0
- data/lib/cloud_payments/namespaces/subscriptions.rb +6 -0
- data/lib/cloud_payments/namespaces/tokens.rb +1 -0
- data/lib/cloud_payments/version.rb +2 -1
- data/lib/cloud_payments/webhooks.rb +7 -2
- data/spec/cloud_payments/client/response_spec.rb +3 -1
- data/spec/cloud_payments/client/serializer/multi_json_spec.rb +1 -0
- data/spec/cloud_payments/models/order_spec.rb +1 -0
- data/spec/cloud_payments/models/secure3d_spec.rb +1 -0
- data/spec/cloud_payments/models/subscription_spec.rb +1 -1
- data/spec/cloud_payments/models/transaction_spec.rb +25 -1
- data/spec/cloud_payments/namespaces/apple_pay_spec.rb +21 -0
- data/spec/cloud_payments/namespaces/base_spec.rb +10 -3
- data/spec/cloud_payments/namespaces/cards_spec.rb +42 -2
- data/spec/cloud_payments/namespaces/kassa_spec.rb +43 -0
- data/spec/cloud_payments/namespaces/orders_spec.rb +13 -0
- data/spec/cloud_payments/namespaces/payments_spec.rb +119 -0
- data/spec/cloud_payments/namespaces/subscriptions_spec.rb +21 -1
- data/spec/cloud_payments/namespaces/tokens_spec.rb +1 -0
- data/spec/cloud_payments/namespaces_spec.rb +2 -1
- data/spec/cloud_payments/webhooks_spec.rb +43 -0
- data/spec/cloud_payments_spec.rb +27 -4
- data/spec/fixtures/apis/cards/post3ds/failed.yml +45 -0
- data/spec/fixtures/apis/cards/post3ds/successful.yml +48 -0
- data/spec/fixtures/apis/orders/cancel/failed.yml +6 -0
- data/spec/fixtures/apis/orders/cancel/successful.yml +6 -0
- data/spec/fixtures/apis/payments/find/failed.yml +45 -0
- data/spec/fixtures/apis/payments/find/failed_with_message.yml +6 -0
- data/spec/fixtures/apis/payments/find/successful.yml +48 -0
- data/spec/fixtures/apis/payments/get/failed.yml +46 -0
- data/spec/fixtures/apis/payments/get/failed_with_message.yml +6 -0
- data/spec/fixtures/apis/payments/get/refunded.yml +49 -0
- data/spec/fixtures/apis/payments/get/successful.yml +49 -0
- data/spec/fixtures/apis/subscriptions/find/successful.yml +4 -4
- data/spec/fixtures/apis/subscriptions/get/successful.yml +31 -0
- data/spec/spec_helper.rb +13 -24
- data/spec/support/examples.rb +1 -0
- data/spec/support/helpers.rb +3 -2
- metadata +45 -15
- data/spec/cloud_payments/client_spec.rb +0 -5
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
:request:
|
3
|
+
:url: '/payments/find'
|
4
|
+
:body: '{"InvoiceId":"1234567"}'
|
5
|
+
:response:
|
6
|
+
:body: >
|
7
|
+
{
|
8
|
+
"Model": {
|
9
|
+
"TransactionId": 12345,
|
10
|
+
"Amount": 10.0,
|
11
|
+
"Currency": "RUB",
|
12
|
+
"CurrencyCode": 0,
|
13
|
+
"PaymentAmount": 10.0,
|
14
|
+
"PaymentCurrency": "RUB",
|
15
|
+
"PaymentCurrencyCode": 0,
|
16
|
+
"InvoiceId": "1234567",
|
17
|
+
"AccountId": "user_x",
|
18
|
+
"Email": null,
|
19
|
+
"Description": "Payment for goods on example.com",
|
20
|
+
"JsonData": null,
|
21
|
+
"CreatedDate": "\/Date(1401718880000)\/",
|
22
|
+
"CreatedDateIso":"2014-08-09T11:49:41",
|
23
|
+
"TestMode": true,
|
24
|
+
"IpAddress": "195.91.194.13",
|
25
|
+
"IpCountry": "RU",
|
26
|
+
"IpCity": "Ufa",
|
27
|
+
"IpRegion": "Bashkortostan Republic",
|
28
|
+
"IpDistrict": "Volga Federal District",
|
29
|
+
"IpLatitude": 54.7355,
|
30
|
+
"IpLongitude": 55.991982,
|
31
|
+
"CardFirstSix": "411111",
|
32
|
+
"CardLastFour": "1111",
|
33
|
+
"CardType": "Visa",
|
34
|
+
"CardTypeCode": 0,
|
35
|
+
"IssuerBankCountry": "RU",
|
36
|
+
"Status": "Declined",
|
37
|
+
"StatusCode": 5,
|
38
|
+
"Reason": "InsufficientFunds",
|
39
|
+
"ReasonCode": 5051,
|
40
|
+
"CardHolderMessage": "Insufficient funds on account",
|
41
|
+
"Name": "CARDHOLDER NAME"
|
42
|
+
},
|
43
|
+
"Success": false,
|
44
|
+
"Message": null
|
45
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
:request:
|
3
|
+
:url: '/payments/find'
|
4
|
+
:body: '{"InvoiceId":"1234567"}'
|
5
|
+
:response:
|
6
|
+
:body: >
|
7
|
+
{
|
8
|
+
"Model":{
|
9
|
+
"TransactionId":12345,
|
10
|
+
"Amount":10.0,
|
11
|
+
"Currency":"RUB",
|
12
|
+
"CurrencyCode":0,
|
13
|
+
"InvoiceId":"1234567",
|
14
|
+
"AccountId":"user_x",
|
15
|
+
"Email":null,
|
16
|
+
"Description":"Payment for goods on example.com",
|
17
|
+
"JsonData":null,
|
18
|
+
"CreatedDate":"\/Date(1401718880000)\/",
|
19
|
+
"CreatedDateIso":"2014-08-09T11:49:41",
|
20
|
+
"AuthDate":"\/Date(1401733880523)\/",
|
21
|
+
"AuthDateIso":"2014-08-09T11:49:42",
|
22
|
+
"ConfirmDate":"\/Date(1401733880523)\/",
|
23
|
+
"ConfirmDateIso":"2014-08-09T11:49:42",
|
24
|
+
"AuthCode":"123456",
|
25
|
+
"TestMode":true,
|
26
|
+
"IpAddress":"195.91.194.13",
|
27
|
+
"IpCountry":"RU",
|
28
|
+
"IpCity":"Ufa",
|
29
|
+
"IpRegion":"Bashkortostan Republic",
|
30
|
+
"IpDistrict":"Volga Federal District",
|
31
|
+
"IpLatitude":54.7355,
|
32
|
+
"IpLongitude":55.991982,
|
33
|
+
"CardFirstSix":"411111",
|
34
|
+
"CardLastFour":"1111",
|
35
|
+
"CardType":"Visa",
|
36
|
+
"CardTypeCode":0,
|
37
|
+
"IssuerBankCountry":"RU",
|
38
|
+
"Status":"Completed",
|
39
|
+
"StatusCode":3,
|
40
|
+
"Reason":"Approved",
|
41
|
+
"ReasonCode":0,
|
42
|
+
"CardHolderMessage":"Payment successful",
|
43
|
+
"Name":"CARDHOLDER NAME",
|
44
|
+
"Token":"a4e67841-abb0-42de-a364-d1d8f9f4b3c0"
|
45
|
+
},
|
46
|
+
"Success":true,
|
47
|
+
"Message": null
|
48
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
:request:
|
3
|
+
:url: '/payments/get'
|
4
|
+
:body: '{"TransactionId":12345}'
|
5
|
+
:response:
|
6
|
+
:body: >
|
7
|
+
{
|
8
|
+
"Model": {
|
9
|
+
"TransactionId": 12345,
|
10
|
+
"Amount": 10.0,
|
11
|
+
"Currency": "RUB",
|
12
|
+
"CurrencyCode": 0,
|
13
|
+
"PaymentAmount": 10.0,
|
14
|
+
"PaymentCurrency": "RUB",
|
15
|
+
"PaymentCurrencyCode": 0,
|
16
|
+
"InvoiceId": "1234567",
|
17
|
+
"AccountId": "user_x",
|
18
|
+
"Email": null,
|
19
|
+
"Description": "Payment for goods on example.com",
|
20
|
+
"JsonData": null,
|
21
|
+
"CreatedDate": "\/Date(1401718880000)\/",
|
22
|
+
"CreatedDateIso":"2014-08-09T11:49:41",
|
23
|
+
"TestMode": true,
|
24
|
+
"IpAddress": "195.91.194.13",
|
25
|
+
"IpCountry": "RU",
|
26
|
+
"IpCity": "Ufa",
|
27
|
+
"IpRegion": "Bashkortostan Republic",
|
28
|
+
"IpDistrict": "Volga Federal District",
|
29
|
+
"IpLatitude": 54.7355,
|
30
|
+
"IpLongitude": 55.991982,
|
31
|
+
"CardFirstSix": "411111",
|
32
|
+
"CardLastFour": "1111",
|
33
|
+
"CardType": "Visa",
|
34
|
+
"CardTypeCode": 0,
|
35
|
+
"IssuerBankCountry": "RU",
|
36
|
+
"Status": "Declined",
|
37
|
+
"StatusCode": 5,
|
38
|
+
"Reason": "InsufficientFunds",
|
39
|
+
"ReasonCode": 5051,
|
40
|
+
"Refunded": false,
|
41
|
+
"CardHolderMessage": "Insufficient funds on account",
|
42
|
+
"Name": "CARDHOLDER NAME"
|
43
|
+
},
|
44
|
+
"Success": false,
|
45
|
+
"Message": null
|
46
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
:request:
|
3
|
+
:url: '/payments/get'
|
4
|
+
:body: '{"TransactionId":12345}'
|
5
|
+
:response:
|
6
|
+
:body: >
|
7
|
+
{
|
8
|
+
"Model":{
|
9
|
+
"TransactionId":12345,
|
10
|
+
"Amount":10.0,
|
11
|
+
"Currency":"RUB",
|
12
|
+
"CurrencyCode":0,
|
13
|
+
"InvoiceId":"1234567",
|
14
|
+
"AccountId":"user_x",
|
15
|
+
"Email":null,
|
16
|
+
"Description":"Payment for goods on example.com",
|
17
|
+
"JsonData":null,
|
18
|
+
"CreatedDate":"\/Date(1401718880000)\/",
|
19
|
+
"CreatedDateIso":"2014-08-09T11:49:41",
|
20
|
+
"AuthDate":"\/Date(1401733880523)\/",
|
21
|
+
"AuthDateIso":"2014-08-09T11:49:42",
|
22
|
+
"ConfirmDate":"\/Date(1401733880523)\/",
|
23
|
+
"ConfirmDateIso":"2014-08-09T11:49:42",
|
24
|
+
"AuthCode":"123456",
|
25
|
+
"TestMode":true,
|
26
|
+
"IpAddress":"195.91.194.13",
|
27
|
+
"IpCountry":"RU",
|
28
|
+
"IpCity":"Ufa",
|
29
|
+
"IpRegion":"Bashkortostan Republic",
|
30
|
+
"IpDistrict":"Volga Federal District",
|
31
|
+
"IpLatitude":54.7355,
|
32
|
+
"IpLongitude":55.991982,
|
33
|
+
"CardFirstSix":"411111",
|
34
|
+
"CardLastFour":"1111",
|
35
|
+
"CardType":"Visa",
|
36
|
+
"CardTypeCode":0,
|
37
|
+
"IssuerBankCountry":"RU",
|
38
|
+
"Status":"Completed",
|
39
|
+
"StatusCode":3,
|
40
|
+
"Reason":"Approved",
|
41
|
+
"ReasonCode":0,
|
42
|
+
"Refunded": true,
|
43
|
+
"CardHolderMessage":"Payment successful",
|
44
|
+
"Name":"CARDHOLDER NAME",
|
45
|
+
"Token":"a4e67841-abb0-42de-a364-d1d8f9f4b3c0"
|
46
|
+
},
|
47
|
+
"Success":true,
|
48
|
+
"Message": null
|
49
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
:request:
|
3
|
+
:url: '/payments/get'
|
4
|
+
:body: '{"TransactionId":12345}'
|
5
|
+
:response:
|
6
|
+
:body: >
|
7
|
+
{
|
8
|
+
"Model":{
|
9
|
+
"TransactionId":12345,
|
10
|
+
"Amount":10.0,
|
11
|
+
"Currency":"RUB",
|
12
|
+
"CurrencyCode":0,
|
13
|
+
"InvoiceId":"1234567",
|
14
|
+
"AccountId":"user_x",
|
15
|
+
"Email":null,
|
16
|
+
"Description":"Payment for goods on example.com",
|
17
|
+
"JsonData":null,
|
18
|
+
"CreatedDate":"\/Date(1401718880000)\/",
|
19
|
+
"CreatedDateIso":"2014-08-09T11:49:41",
|
20
|
+
"AuthDate":"\/Date(1401733880523)\/",
|
21
|
+
"AuthDateIso":"2014-08-09T11:49:42",
|
22
|
+
"ConfirmDate":"\/Date(1401733880523)\/",
|
23
|
+
"ConfirmDateIso":"2014-08-09T11:49:42",
|
24
|
+
"AuthCode":"123456",
|
25
|
+
"TestMode":true,
|
26
|
+
"IpAddress":"195.91.194.13",
|
27
|
+
"IpCountry":"RU",
|
28
|
+
"IpCity":"Ufa",
|
29
|
+
"IpRegion":"Bashkortostan Republic",
|
30
|
+
"IpDistrict":"Volga Federal District",
|
31
|
+
"IpLatitude":54.7355,
|
32
|
+
"IpLongitude":55.991982,
|
33
|
+
"CardFirstSix":"411111",
|
34
|
+
"CardLastFour":"1111",
|
35
|
+
"CardType":"Visa",
|
36
|
+
"CardTypeCode":0,
|
37
|
+
"IssuerBankCountry":"RU",
|
38
|
+
"Status":"Completed",
|
39
|
+
"StatusCode":3,
|
40
|
+
"Reason":"Approved",
|
41
|
+
"ReasonCode":0,
|
42
|
+
"Refunded": false,
|
43
|
+
"CardHolderMessage":"Payment successful",
|
44
|
+
"Name":"CARDHOLDER NAME",
|
45
|
+
"Token":"a4e67841-abb0-42de-a364-d1d8f9f4b3c0"
|
46
|
+
},
|
47
|
+
"Success":true,
|
48
|
+
"Message": null
|
49
|
+
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
---
|
2
2
|
:request:
|
3
|
-
:url: '/subscriptions/
|
4
|
-
:body: '{"
|
3
|
+
:url: '/subscriptions/find'
|
4
|
+
:body: '{"AccountId":"user@example.com"}'
|
5
5
|
:response:
|
6
6
|
:body: >
|
7
7
|
{
|
8
|
-
"Model":{
|
8
|
+
"Model":[{
|
9
9
|
"Id":"sc_8cf8a9338fb",
|
10
10
|
"AccountId":"user@example.com",
|
11
11
|
"Description":"Monthly subscription",
|
@@ -25,7 +25,7 @@
|
|
25
25
|
"FailedTransactionsNumber":0,
|
26
26
|
"LastTransactionDateIso":"2014-08-09T11:49:41",
|
27
27
|
"NextTransactionDateIso":"2014-08-09T11:49:41"
|
28
|
-
},
|
28
|
+
}],
|
29
29
|
"Success":true,
|
30
30
|
"Message": null
|
31
31
|
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
:request:
|
3
|
+
:url: '/subscriptions/get'
|
4
|
+
:body: '{"Id":"sc_8cf8a9338fb"}'
|
5
|
+
:response:
|
6
|
+
:body: >
|
7
|
+
{
|
8
|
+
"Model":{
|
9
|
+
"Id":"sc_8cf8a9338fb",
|
10
|
+
"AccountId":"user@example.com",
|
11
|
+
"Description":"Monthly subscription",
|
12
|
+
"Email":"user@example.com",
|
13
|
+
"Amount":1.02,
|
14
|
+
"CurrencyCode":0,
|
15
|
+
"Currency":"RUB",
|
16
|
+
"RequireConfirmation":false,
|
17
|
+
"StartDateIso":"2014-08-09T11:49:41",
|
18
|
+
"IntervalCode":1,
|
19
|
+
"Interval":"Month",
|
20
|
+
"Period":1,
|
21
|
+
"MaxPeriods":12,
|
22
|
+
"StatusCode":0,
|
23
|
+
"Status":"Active",
|
24
|
+
"SuccessfulTransactionsNumber":0,
|
25
|
+
"FailedTransactionsNumber":0,
|
26
|
+
"LastTransactionDateIso":"2014-08-09T11:49:41",
|
27
|
+
"NextTransactionDateIso":"2014-08-09T11:49:41"
|
28
|
+
},
|
29
|
+
"Success":true,
|
30
|
+
"Message": null
|
31
|
+
}
|
data/spec/spec_helper.rb
CHANGED
@@ -1,38 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
2
3
|
|
3
|
-
if ENV['CODECLIMATE_REPO_TOKEN']
|
4
|
-
require "codeclimate-test-reporter"
|
5
|
-
CodeClimate::TestReporter.start
|
6
|
-
end
|
7
|
-
|
8
4
|
require 'bundler'
|
9
5
|
Bundler.require(:default, :test)
|
10
6
|
|
7
|
+
require 'webmock/rspec'
|
8
|
+
|
9
|
+
WebMock.enable!
|
11
10
|
WebMock.disable_net_connect!
|
12
11
|
|
13
12
|
Dir["./spec/support/**/*.rb"].each { |f| require f }
|
14
13
|
|
15
|
-
CloudPayments.configure do |c|
|
16
|
-
c.public_key = 'user'
|
17
|
-
c.secret_key = 'pass'
|
18
|
-
c.host = 'http://localhost:9292'
|
19
|
-
c.log = false
|
20
|
-
# c.raise_banking_errors = true
|
21
|
-
end
|
22
|
-
|
23
14
|
RSpec.configure do |config|
|
24
15
|
config.mock_with :rspec
|
25
16
|
config.include CloudPayments::RSpec::Helpers
|
26
17
|
|
27
|
-
config.
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
# Timecop.freeze(datetime){ example.run }
|
37
|
-
# end
|
18
|
+
config.before :each do
|
19
|
+
CloudPayments.configure do |c|
|
20
|
+
c.public_key = 'user'
|
21
|
+
c.secret_key = 'pass'
|
22
|
+
c.host = 'http://localhost:9292'
|
23
|
+
c.log = false
|
24
|
+
# c.raise_banking_errors = true
|
25
|
+
end
|
26
|
+
end
|
38
27
|
end
|
data/spec/support/examples.rb
CHANGED
data/spec/support/helpers.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require 'yaml'
|
2
3
|
|
3
4
|
module CloudPayments
|
@@ -44,13 +45,13 @@ module CloudPayments
|
|
44
45
|
@webmock_stub ||= begin
|
45
46
|
if fixture
|
46
47
|
WebMock::StubRegistry.instance.register_request_stub(WebMock::RequestStub.new(:post, url)).
|
47
|
-
with(body: request[:body] || '', headers: request_headers)
|
48
|
+
with(body: request[:body] || '', headers: request_headers, basic_auth: ['user', 'pass'])
|
48
49
|
end
|
49
50
|
end
|
50
51
|
end
|
51
52
|
|
52
53
|
def url
|
53
|
-
"http://
|
54
|
+
"http://localhost:9292#{request[:url]}"
|
54
55
|
end
|
55
56
|
|
56
57
|
def request_headers
|
metadata
CHANGED
@@ -1,29 +1,30 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloud_payments
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- undr
|
8
|
+
- kirillplatonov
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2020-07-11 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: faraday
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
|
-
- - "
|
18
|
+
- - ">="
|
18
19
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0
|
20
|
+
version: '0'
|
20
21
|
type: :runtime
|
21
22
|
prerelease: false
|
22
23
|
version_requirements: !ruby/object:Gem::Requirement
|
23
24
|
requirements:
|
24
|
-
- - "
|
25
|
+
- - ">="
|
25
26
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0
|
27
|
+
version: '0'
|
27
28
|
- !ruby/object:Gem::Dependency
|
28
29
|
name: multi_json
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,31 +59,32 @@ dependencies:
|
|
58
59
|
requirements:
|
59
60
|
- - "~>"
|
60
61
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
62
|
+
version: '13.0'
|
62
63
|
type: :development
|
63
64
|
prerelease: false
|
64
65
|
version_requirements: !ruby/object:Gem::Requirement
|
65
66
|
requirements:
|
66
67
|
- - "~>"
|
67
68
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
69
|
+
version: '13.0'
|
69
70
|
- !ruby/object:Gem::Dependency
|
70
71
|
name: rspec
|
71
72
|
requirement: !ruby/object:Gem::Requirement
|
72
73
|
requirements:
|
73
74
|
- - "~>"
|
74
75
|
- !ruby/object:Gem::Version
|
75
|
-
version: '3.
|
76
|
+
version: '3.9'
|
76
77
|
type: :development
|
77
78
|
prerelease: false
|
78
79
|
version_requirements: !ruby/object:Gem::Requirement
|
79
80
|
requirements:
|
80
81
|
- - "~>"
|
81
82
|
- !ruby/object:Gem::Version
|
82
|
-
version: '3.
|
83
|
+
version: '3.9'
|
83
84
|
description: CloudPayments ruby client
|
84
85
|
email:
|
85
86
|
- undr@yandex.ru
|
87
|
+
- mail@kirillplatonov.com
|
86
88
|
executables: []
|
87
89
|
extensions: []
|
88
90
|
extra_rdoc_files: []
|
@@ -109,6 +111,7 @@ files:
|
|
109
111
|
- lib/cloud_payments/models/like_subscription.rb
|
110
112
|
- lib/cloud_payments/models/model.rb
|
111
113
|
- lib/cloud_payments/models/on_fail.rb
|
114
|
+
- lib/cloud_payments/models/on_kassa_receipt.rb
|
112
115
|
- lib/cloud_payments/models/on_pay.rb
|
113
116
|
- lib/cloud_payments/models/on_recurrent.rb
|
114
117
|
- lib/cloud_payments/models/order.rb
|
@@ -116,8 +119,10 @@ files:
|
|
116
119
|
- lib/cloud_payments/models/subscription.rb
|
117
120
|
- lib/cloud_payments/models/transaction.rb
|
118
121
|
- lib/cloud_payments/namespaces.rb
|
122
|
+
- lib/cloud_payments/namespaces/apple_pay.rb
|
119
123
|
- lib/cloud_payments/namespaces/base.rb
|
120
124
|
- lib/cloud_payments/namespaces/cards.rb
|
125
|
+
- lib/cloud_payments/namespaces/kassa.rb
|
121
126
|
- lib/cloud_payments/namespaces/orders.rb
|
122
127
|
- lib/cloud_payments/namespaces/payments.rb
|
123
128
|
- lib/cloud_payments/namespaces/subscriptions.rb
|
@@ -126,13 +131,14 @@ files:
|
|
126
131
|
- lib/cloud_payments/webhooks.rb
|
127
132
|
- spec/cloud_payments/client/response_spec.rb
|
128
133
|
- spec/cloud_payments/client/serializer/multi_json_spec.rb
|
129
|
-
- spec/cloud_payments/client_spec.rb
|
130
134
|
- spec/cloud_payments/models/order_spec.rb
|
131
135
|
- spec/cloud_payments/models/secure3d_spec.rb
|
132
136
|
- spec/cloud_payments/models/subscription_spec.rb
|
133
137
|
- spec/cloud_payments/models/transaction_spec.rb
|
138
|
+
- spec/cloud_payments/namespaces/apple_pay_spec.rb
|
134
139
|
- spec/cloud_payments/namespaces/base_spec.rb
|
135
140
|
- spec/cloud_payments/namespaces/cards_spec.rb
|
141
|
+
- spec/cloud_payments/namespaces/kassa_spec.rb
|
136
142
|
- spec/cloud_payments/namespaces/orders_spec.rb
|
137
143
|
- spec/cloud_payments/namespaces/payments_spec.rb
|
138
144
|
- spec/cloud_payments/namespaces/subscriptions_spec.rb
|
@@ -146,10 +152,21 @@ files:
|
|
146
152
|
- spec/fixtures/apis/cards/charge/failed.yml
|
147
153
|
- spec/fixtures/apis/cards/charge/secure3d.yml
|
148
154
|
- spec/fixtures/apis/cards/charge/successful.yml
|
155
|
+
- spec/fixtures/apis/cards/post3ds/failed.yml
|
156
|
+
- spec/fixtures/apis/cards/post3ds/successful.yml
|
157
|
+
- spec/fixtures/apis/orders/cancel/failed.yml
|
158
|
+
- spec/fixtures/apis/orders/cancel/successful.yml
|
149
159
|
- spec/fixtures/apis/orders/create/successful.yml
|
150
160
|
- spec/fixtures/apis/payments/confirm/failed.yml
|
151
161
|
- spec/fixtures/apis/payments/confirm/failed_with_message.yml
|
152
162
|
- spec/fixtures/apis/payments/confirm/successful.yml
|
163
|
+
- spec/fixtures/apis/payments/find/failed.yml
|
164
|
+
- spec/fixtures/apis/payments/find/failed_with_message.yml
|
165
|
+
- spec/fixtures/apis/payments/find/successful.yml
|
166
|
+
- spec/fixtures/apis/payments/get/failed.yml
|
167
|
+
- spec/fixtures/apis/payments/get/failed_with_message.yml
|
168
|
+
- spec/fixtures/apis/payments/get/refunded.yml
|
169
|
+
- spec/fixtures/apis/payments/get/successful.yml
|
153
170
|
- spec/fixtures/apis/payments/post3ds/failed.yml
|
154
171
|
- spec/fixtures/apis/payments/post3ds/successful.yml
|
155
172
|
- spec/fixtures/apis/payments/refund/failed.yml
|
@@ -163,6 +180,7 @@ files:
|
|
163
180
|
- spec/fixtures/apis/subscriptions/cancel/successful.yml
|
164
181
|
- spec/fixtures/apis/subscriptions/create/successful.yml
|
165
182
|
- spec/fixtures/apis/subscriptions/find/successful.yml
|
183
|
+
- spec/fixtures/apis/subscriptions/get/successful.yml
|
166
184
|
- spec/fixtures/apis/subscriptions/update/successful.yml
|
167
185
|
- spec/fixtures/apis/tokens/auth/failed.yml
|
168
186
|
- spec/fixtures/apis/tokens/auth/successful.yml
|
@@ -171,7 +189,7 @@ files:
|
|
171
189
|
- spec/spec_helper.rb
|
172
190
|
- spec/support/examples.rb
|
173
191
|
- spec/support/helpers.rb
|
174
|
-
homepage:
|
192
|
+
homepage: https://github.com/platmart/cloud_payments
|
175
193
|
licenses:
|
176
194
|
- MIT
|
177
195
|
metadata: {}
|
@@ -190,21 +208,21 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
208
|
- !ruby/object:Gem::Version
|
191
209
|
version: '0'
|
192
210
|
requirements: []
|
193
|
-
|
194
|
-
rubygems_version: 2.4.8
|
211
|
+
rubygems_version: 3.1.2
|
195
212
|
signing_key:
|
196
213
|
specification_version: 4
|
197
214
|
summary: CloudPayments ruby client
|
198
215
|
test_files:
|
199
216
|
- spec/cloud_payments/client/response_spec.rb
|
200
217
|
- spec/cloud_payments/client/serializer/multi_json_spec.rb
|
201
|
-
- spec/cloud_payments/client_spec.rb
|
202
218
|
- spec/cloud_payments/models/order_spec.rb
|
203
219
|
- spec/cloud_payments/models/secure3d_spec.rb
|
204
220
|
- spec/cloud_payments/models/subscription_spec.rb
|
205
221
|
- spec/cloud_payments/models/transaction_spec.rb
|
222
|
+
- spec/cloud_payments/namespaces/apple_pay_spec.rb
|
206
223
|
- spec/cloud_payments/namespaces/base_spec.rb
|
207
224
|
- spec/cloud_payments/namespaces/cards_spec.rb
|
225
|
+
- spec/cloud_payments/namespaces/kassa_spec.rb
|
208
226
|
- spec/cloud_payments/namespaces/orders_spec.rb
|
209
227
|
- spec/cloud_payments/namespaces/payments_spec.rb
|
210
228
|
- spec/cloud_payments/namespaces/subscriptions_spec.rb
|
@@ -218,10 +236,21 @@ test_files:
|
|
218
236
|
- spec/fixtures/apis/cards/charge/failed.yml
|
219
237
|
- spec/fixtures/apis/cards/charge/secure3d.yml
|
220
238
|
- spec/fixtures/apis/cards/charge/successful.yml
|
239
|
+
- spec/fixtures/apis/cards/post3ds/failed.yml
|
240
|
+
- spec/fixtures/apis/cards/post3ds/successful.yml
|
241
|
+
- spec/fixtures/apis/orders/cancel/failed.yml
|
242
|
+
- spec/fixtures/apis/orders/cancel/successful.yml
|
221
243
|
- spec/fixtures/apis/orders/create/successful.yml
|
222
244
|
- spec/fixtures/apis/payments/confirm/failed.yml
|
223
245
|
- spec/fixtures/apis/payments/confirm/failed_with_message.yml
|
224
246
|
- spec/fixtures/apis/payments/confirm/successful.yml
|
247
|
+
- spec/fixtures/apis/payments/find/failed.yml
|
248
|
+
- spec/fixtures/apis/payments/find/failed_with_message.yml
|
249
|
+
- spec/fixtures/apis/payments/find/successful.yml
|
250
|
+
- spec/fixtures/apis/payments/get/failed.yml
|
251
|
+
- spec/fixtures/apis/payments/get/failed_with_message.yml
|
252
|
+
- spec/fixtures/apis/payments/get/refunded.yml
|
253
|
+
- spec/fixtures/apis/payments/get/successful.yml
|
225
254
|
- spec/fixtures/apis/payments/post3ds/failed.yml
|
226
255
|
- spec/fixtures/apis/payments/post3ds/successful.yml
|
227
256
|
- spec/fixtures/apis/payments/refund/failed.yml
|
@@ -235,6 +264,7 @@ test_files:
|
|
235
264
|
- spec/fixtures/apis/subscriptions/cancel/successful.yml
|
236
265
|
- spec/fixtures/apis/subscriptions/create/successful.yml
|
237
266
|
- spec/fixtures/apis/subscriptions/find/successful.yml
|
267
|
+
- spec/fixtures/apis/subscriptions/get/successful.yml
|
238
268
|
- spec/fixtures/apis/subscriptions/update/successful.yml
|
239
269
|
- spec/fixtures/apis/tokens/auth/failed.yml
|
240
270
|
- spec/fixtures/apis/tokens/auth/successful.yml
|