solidus_payu_latam 0.0.1 → 0.0.2
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/.rvmrc +1 -0
- data/.travis.yml +21 -1
- data/Gemfile +3 -0
- data/README.md +7 -0
- data/app/models/solidus/gateway/payu_latam_gateway.rb +4 -14
- data/db/migrate/20170916072806_add_customer_document_to_orders.rb +1 -1
- data/lib/solidus_payu_latam/factories.rb +1 -1
- data/lib/solidus_payu_latam/version.rb +1 -1
- data/solidus_payu_latam.gemspec +5 -5
- data/spec/cassettes/Payu_Latam_checkout/with_autocapture/can_process_a_valid_payment.yml +9 -6
- data/spec/cassettes/Payu_Latam_checkout/without_autocapture/with_valid_payment/can_process.yml +9 -6
- data/spec/features/payu_latam_checkout_spec.rb +6 -8
- data/spec/models/spree/order_spec.rb +3 -3
- data/spec/models/spree/permitted_attributes_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -2
- data/spec/support/payu_latam_helper.rb +1 -1
- metadata +15 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dab536e982e292446f937b981452c0c40f5b8690
|
4
|
+
data.tar.gz: 1f388ad3d392de85218c18f69157a6dea14186cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78cb8ae483068ff2d62a68636c47af6e7511ee950560a3e0ab3179b8113e7394b190ad6d8664d3466d5f89da5c9a2b0d486ec2332aa23dec43474fdf5e08449f
|
7
|
+
data.tar.gz: 820a0b6f637329cb274236dd8648d182bb1acaafe37b2774d075ccafdd7baee10060e0c999a0d3af8dc6ac1cd0a469ce9afd9d9202aaba85b614f0aa7b954bd7
|
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm --create use 2.4.1@solidus_payu_latam
|
data/.travis.yml
CHANGED
@@ -5,4 +5,24 @@ bundler_args: --quiet
|
|
5
5
|
script:
|
6
6
|
- bundle exec rake
|
7
7
|
rvm:
|
8
|
-
- 2.1
|
8
|
+
- 2.4.1
|
9
|
+
env:
|
10
|
+
matrix:
|
11
|
+
- SOLIDUS_BRANCH=v1.3 DB=postgres
|
12
|
+
- SOLIDUS_BRANCH=v1.4 DB=postgres
|
13
|
+
- SOLIDUS_BRANCH=v2.0 DB=postgres
|
14
|
+
- SOLIDUS_BRANCH=v2.1 DB=postgres
|
15
|
+
- SOLIDUS_BRANCH=v2.2 DB=postgres
|
16
|
+
- SOLIDUS_BRANCH=v2.3 DB=postgres
|
17
|
+
- SOLIDUS_BRANCH=v2.4 DB=postgres
|
18
|
+
- SOLIDUS_BRANCH=v2.5 DB=postgres
|
19
|
+
- SOLIDUS_BRANCH=master DB=postgres
|
20
|
+
- SOLIDUS_BRANCH=v1.3 DB=mysql
|
21
|
+
- SOLIDUS_BRANCH=v1.4 DB=mysql
|
22
|
+
- SOLIDUS_BRANCH=v2.0 DB=mysql
|
23
|
+
- SOLIDUS_BRANCH=v2.1 DB=mysql
|
24
|
+
- SOLIDUS_BRANCH=v2.2 DB=mysql
|
25
|
+
- SOLIDUS_BRANCH=v2.3 DB=mysql
|
26
|
+
- SOLIDUS_BRANCH=v2.4 DB=mysql
|
27
|
+
- SOLIDUS_BRANCH=v2.5 DB=mysql
|
28
|
+
- SOLIDUS_BRANCH=master DB=mysql
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
Solidus PayuLatam
|
2
2
|
=================
|
3
|
+
[![Gem Version][rubygems-image]][rubygems-url]
|
4
|
+
[![Build Status][travis-image]][travis-url]
|
3
5
|
|
4
6
|
Solidus extension to add support for Payu Latam Gateway.
|
5
7
|
|
@@ -43,3 +45,8 @@ bundle exec rake
|
|
43
45
|
```
|
44
46
|
|
45
47
|
The dummy app can be regenerated by using `rake test_app`.
|
48
|
+
|
49
|
+
[rubygems-image]: https://badge.fury.io/rb/solidus_payu_latam.svg
|
50
|
+
[rubygems-url]: https://badge.fury.io/rb/solidus_payu_latam
|
51
|
+
[travis-image]: https://travis-ci.org/ccarruitero/solidus_payu_latam.svg?branch=master
|
52
|
+
[travis-url]: https://travis-ci.org/ccarruitero/solidus_payu_latam
|
@@ -4,7 +4,7 @@ module Solidus
|
|
4
4
|
preference :account_id, :string
|
5
5
|
preference :api_login, :string
|
6
6
|
preference :api_key, :string
|
7
|
-
preference :
|
7
|
+
preference :payment_country, :string, default: 'PE'
|
8
8
|
|
9
9
|
def provider_class
|
10
10
|
ActiveMerchant::Billing::PayuLatamGateway
|
@@ -27,13 +27,11 @@ module Solidus
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def capture(amount, authorization, gateway_options)
|
30
|
-
|
31
|
-
provider.capture(amount, authorization, options)
|
30
|
+
provider.capture(amount, authorization, gateway_options)
|
32
31
|
end
|
33
32
|
|
34
33
|
def void(authorization, gateway_options)
|
35
|
-
|
36
|
-
provider.void(authorization, options)
|
34
|
+
provider.void(authorization, gateway_options)
|
37
35
|
end
|
38
36
|
|
39
37
|
def purchase(amount, credit_card, gateway_options)
|
@@ -43,8 +41,7 @@ module Solidus
|
|
43
41
|
end
|
44
42
|
|
45
43
|
def credit(amount, authorization, gateway_options)
|
46
|
-
|
47
|
-
provider.refund(amount, authorization, options)
|
44
|
+
provider.refund(amount, authorization, gateway_options)
|
48
45
|
end
|
49
46
|
|
50
47
|
private
|
@@ -56,15 +53,8 @@ module Solidus
|
|
56
53
|
buyer_name: options[:shipping_address][:name],
|
57
54
|
buyer_dni_number: dni_number,
|
58
55
|
dni_number: dni_number,
|
59
|
-
payment_country: preferred_account_country,
|
60
56
|
cvv: cvv
|
61
57
|
)
|
62
58
|
end
|
63
|
-
|
64
|
-
def add_payment_country(options, payment_country)
|
65
|
-
options.merge(
|
66
|
-
payment_country: payment_country
|
67
|
-
)
|
68
|
-
end
|
69
59
|
end
|
70
60
|
end
|
data/solidus_payu_latam.gemspec
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
$:.push File.expand_path('
|
1
|
+
$:.push File.expand_path('lib', __dir__)
|
2
2
|
|
3
3
|
require 'solidus_payu_latam/version'
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = 'solidus_payu_latam'
|
7
7
|
s.version = SolidusPayuLatam::VERSION
|
8
|
-
s.summary = 'Adds Solidus support for Payu Latam Gateway'
|
8
|
+
s.summary = 'Adds Solidus support for payments with Payu Latam Gateway'
|
9
9
|
s.description = s.summary
|
10
10
|
s.license = 'MIT'
|
11
11
|
|
@@ -16,14 +16,14 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.files = `git ls-files`.split("\n")
|
17
17
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
18
|
|
19
|
+
s.add_dependency 'activemerchant', '> 1.76'
|
19
20
|
s.add_dependency 'solidus_core'
|
20
21
|
s.add_dependency 'solidus_support'
|
21
|
-
s.add_dependency 'activemerchant'
|
22
22
|
|
23
23
|
s.add_development_dependency 'capybara'
|
24
|
-
s.add_development_dependency 'poltergeist'
|
25
24
|
s.add_development_dependency 'database_cleaner'
|
26
|
-
s.add_development_dependency '
|
25
|
+
s.add_development_dependency 'factory_bot'
|
26
|
+
s.add_development_dependency 'poltergeist'
|
27
27
|
s.add_development_dependency 'rspec-rails'
|
28
28
|
s.add_development_dependency 'rubocop'
|
29
29
|
s.add_development_dependency 'rubocop-rspec'
|
@@ -5,10 +5,13 @@ http_interactions:
|
|
5
5
|
uri: https://sandbox.api.payulatam.com/payments-api/4.0/service.cgi
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"test":true,"language":"en","command":"SUBMIT_TRANSACTION","merchant":{"apiLogin":"pRRXKOl8ikMmt9u","apiKey":"4Vj8eK4rloUd272L48hsrarnUA"},"transaction":{"paymentCountry":"PE","type":"AUTHORIZATION_AND_CAPTURE","ipAddress":"127.0.0.1","order":{"accountId":"512323","referenceCode":"
|
9
|
-
|
8
|
+
string: '{"test":true,"language":"en","command":"SUBMIT_TRANSACTION","merchant":{"apiLogin":"pRRXKOl8ikMmt9u","apiKey":"4Vj8eK4rloUd272L48hsrarnUA"},"transaction":{"paymentCountry":"PE","type":"AUTHORIZATION_AND_CAPTURE","ipAddress":"127.0.0.1","order":{"accountId":"512323","referenceCode":"R637264834-2RY4LX4V","description":"Compra
|
9
|
+
en 508029","language":"en","shippingAddress":{"street1":"YT-1300","street2":"","city":"Mos
|
10
|
+
Eisley","state":"AL","country":"US","postalCode":"12010","phone":"(555) 555-5555"},"buyer":{"fullName":"APPROVED
|
11
|
+
.","dniNumber":"32144457","dniType":null,"emailAddress":"han@example.com","contactPhone":"(555)
|
10
12
|
555-5555","shippingAddress":{"street1":"YT-1300","street2":"","city":"Mos
|
11
|
-
Eisley","state":"AL","country":"US","postalCode":"12010","phone":"(555) 555-5555"}},"additionalValues":{"TX_VALUE":{"value":"19.99","currency":"USD"}},"signature":"
|
13
|
+
Eisley","state":"AL","country":"US","postalCode":"12010","phone":"(555) 555-5555"}},"additionalValues":{"TX_VALUE":{"value":"19.99","currency":"USD"}},"signature":"7adf0fa0c92d660d225f4b54bb1ec2ce"},"creditCard":{"number":"4111111111111111","securityCode":"123","expirationDate":"2019/01","name":"APPROVED
|
14
|
+
."},"paymentMethod":"VISA","payer":{"fullName":"APPROVED .","contactPhone":"(555)
|
12
15
|
555-5555","dniNumber":"32144457","emailAddress":"han@example.com","billingAddress":{"street1":"YT-1300","street2":"","city":"Mos
|
13
16
|
Eisley","state":"AL","country":"US","phone":"(555) 555-5555"}},"extraParameters":{"INSTALLMENTS_NUMBER":1}}}'
|
14
17
|
headers:
|
@@ -32,12 +35,12 @@ http_interactions:
|
|
32
35
|
Transfer-Encoding:
|
33
36
|
- chunked
|
34
37
|
Date:
|
35
|
-
-
|
38
|
+
- Tue, 15 May 2018 00:38:09 GMT
|
36
39
|
Server:
|
37
40
|
- PayU server
|
38
41
|
body:
|
39
42
|
encoding: UTF-8
|
40
|
-
string: '{"code":"SUCCESS","error":null,"transactionResponse":{"orderId":
|
43
|
+
string: '{"code":"SUCCESS","error":null,"transactionResponse":{"orderId":844152680,"transactionId":"350f7e42-5a18-4ddc-a3bb-7e2ce16bcb4f","state":"APPROVED","paymentNetworkResponseCode":null,"paymentNetworkResponseErrorMessage":null,"trazabilityCode":"00000000","authorizationCode":"00000000","pendingReason":null,"responseCode":"APPROVED","errorCode":null,"responseMessage":null,"transactionDate":null,"transactionTime":null,"operationDate":1526344688778,"referenceQuestionnaire":null,"extraParameters":null,"additionalInfo":null}}'
|
41
44
|
http_version:
|
42
|
-
recorded_at:
|
45
|
+
recorded_at: Tue, 15 May 2018 00:38:09 GMT
|
43
46
|
recorded_with: VCR 3.0.3
|
data/spec/cassettes/Payu_Latam_checkout/without_autocapture/with_valid_payment/can_process.yml
CHANGED
@@ -5,10 +5,13 @@ http_interactions:
|
|
5
5
|
uri: https://sandbox.api.payulatam.com/payments-api/4.0/service.cgi
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: '{"test":true,"language":"en","command":"SUBMIT_TRANSACTION","merchant":{"apiLogin":"pRRXKOl8ikMmt9u","apiKey":"4Vj8eK4rloUd272L48hsrarnUA"},"transaction":{"paymentCountry":"PE","type":"AUTHORIZATION","ipAddress":"127.0.0.1","order":{"accountId":"512323","referenceCode":"
|
9
|
-
|
8
|
+
string: '{"test":true,"language":"en","command":"SUBMIT_TRANSACTION","merchant":{"apiLogin":"pRRXKOl8ikMmt9u","apiKey":"4Vj8eK4rloUd272L48hsrarnUA"},"transaction":{"paymentCountry":"PE","type":"AUTHORIZATION","ipAddress":"127.0.0.1","order":{"accountId":"512323","referenceCode":"R308229857-MLKZE7X3","description":"Compra
|
9
|
+
en 508029","language":"en","shippingAddress":{"street1":"YT-1300","street2":"","city":"Mos
|
10
|
+
Eisley","state":"AL","country":"US","postalCode":"12010","phone":"(555) 555-5555"},"buyer":{"fullName":"APPROVED
|
11
|
+
.","dniNumber":"32144457","dniType":null,"emailAddress":"han@example.com","contactPhone":"(555)
|
10
12
|
555-5555","shippingAddress":{"street1":"YT-1300","street2":"","city":"Mos
|
11
|
-
Eisley","state":"AL","country":"US","postalCode":"12010","phone":"(555) 555-5555"}},"additionalValues":{"TX_VALUE":{"value":"19.99","currency":"PEN"}},"signature":"
|
13
|
+
Eisley","state":"AL","country":"US","postalCode":"12010","phone":"(555) 555-5555"}},"additionalValues":{"TX_VALUE":{"value":"19.99","currency":"PEN"}},"signature":"71ec020380212939c6e26536149521b8"},"creditCard":{"number":"4111111111111111","securityCode":"123","expirationDate":"2019/01","name":"APPROVED
|
14
|
+
."},"paymentMethod":"VISA","payer":{"fullName":"APPROVED .","contactPhone":"(555)
|
12
15
|
555-5555","dniNumber":"32144457","emailAddress":"han@example.com","billingAddress":{"street1":"YT-1300","street2":"","city":"Mos
|
13
16
|
Eisley","state":"AL","country":"US","phone":"(555) 555-5555"}},"extraParameters":{"INSTALLMENTS_NUMBER":1}}}'
|
14
17
|
headers:
|
@@ -32,12 +35,12 @@ http_interactions:
|
|
32
35
|
Transfer-Encoding:
|
33
36
|
- chunked
|
34
37
|
Date:
|
35
|
-
-
|
38
|
+
- Tue, 15 May 2018 00:37:41 GMT
|
36
39
|
Server:
|
37
40
|
- PayU server
|
38
41
|
body:
|
39
42
|
encoding: UTF-8
|
40
|
-
string: '{"code":"SUCCESS","error":null,"transactionResponse":{"orderId":
|
43
|
+
string: '{"code":"SUCCESS","error":null,"transactionResponse":{"orderId":844152679,"transactionId":"0363c07c-2dbf-4445-a217-c083721e17d6","state":"APPROVED","paymentNetworkResponseCode":null,"paymentNetworkResponseErrorMessage":null,"trazabilityCode":"00000000","authorizationCode":"00000000","pendingReason":null,"responseCode":"APPROVED","errorCode":null,"responseMessage":null,"transactionDate":null,"transactionTime":null,"operationDate":1526344660595,"referenceQuestionnaire":null,"extraParameters":null,"additionalInfo":null}}'
|
41
44
|
http_version:
|
42
|
-
recorded_at:
|
45
|
+
recorded_at: Tue, 15 May 2018 00:37:41 GMT
|
43
46
|
recorded_with: VCR 3.0.3
|
@@ -23,8 +23,6 @@ describe 'Payu Latam checkout', :vcr, type: :feature do
|
|
23
23
|
end
|
24
24
|
|
25
25
|
it 'can process a valid payment', js: true do
|
26
|
-
sleep(5)
|
27
|
-
# wait to payU.getPaymentMethods()
|
28
26
|
fill_credit_card '4111 1111 1111 1111', '32144457'
|
29
27
|
click_button 'Save and Continue'
|
30
28
|
expect(page).to have_content('Your order has been processed successfully')
|
@@ -52,8 +50,6 @@ describe 'Payu Latam checkout', :vcr, type: :feature do
|
|
52
50
|
stub_authorization!
|
53
51
|
|
54
52
|
before do
|
55
|
-
sleep(5)
|
56
|
-
# wait to payU.getPaymentMethods()
|
57
53
|
fill_credit_card '4111 1111 1111 1111', '32144457'
|
58
54
|
click_button 'Save and Continue'
|
59
55
|
end
|
@@ -62,20 +58,22 @@ describe 'Payu Latam checkout', :vcr, type: :feature do
|
|
62
58
|
expect(page).to have_content('Your order has been processed successfully')
|
63
59
|
end
|
64
60
|
|
65
|
-
|
61
|
+
# temporally skip capture since there is a bug in Payu Latam sandbox
|
62
|
+
xit 'capture payment' do
|
66
63
|
sleep(5)
|
67
64
|
visit spree.admin_order_payments_path(Spree::Order.last)
|
68
65
|
sleep(3)
|
69
66
|
click_icon(:capture)
|
70
|
-
expect(page).to have_content(
|
67
|
+
expect(page).to have_content('Payment Updated')
|
71
68
|
end
|
72
69
|
|
73
|
-
|
70
|
+
# skip void since is not allowed in sandbox for Payu Latam
|
71
|
+
xit 'voids a payment' do
|
74
72
|
sleep(5)
|
75
73
|
visit spree.admin_order_payments_path(Spree::Order.last)
|
76
74
|
sleep(3)
|
77
75
|
click_icon(:void)
|
78
|
-
expect(page).to have_content(
|
76
|
+
expect(page).to have_content('Payment Updated')
|
79
77
|
end
|
80
78
|
end
|
81
79
|
end
|
@@ -9,12 +9,12 @@ describe Spree::Order, type: :model do
|
|
9
9
|
expect(order.customer_document).to eq(document)
|
10
10
|
end
|
11
11
|
|
12
|
-
|
12
|
+
describe 'state_machine' do
|
13
13
|
it 'dont have confirm state' do
|
14
|
-
expect(Spree::Order.checkout_steps.
|
14
|
+
expect(Spree::Order.checkout_steps.key?(:confirm)).to be(false)
|
15
15
|
end
|
16
16
|
|
17
|
-
context 'payment_failed event' do
|
17
|
+
context 'with payment_failed event' do
|
18
18
|
let(:event) { Spree::Order.state_machine.events[:payment_failed] }
|
19
19
|
|
20
20
|
it 'not have confirm state' do
|
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
3
3
|
describe Spree::PermittedAttributes do
|
4
4
|
let(:attributes) { described_class }
|
5
5
|
|
6
|
-
|
6
|
+
describe 'checkout_attributes' do
|
7
7
|
it 'include customer_document' do
|
8
8
|
expect(attributes.checkout_attributes).to include(:customer_document)
|
9
9
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -13,7 +13,7 @@ end
|
|
13
13
|
# Configure Rails Environment
|
14
14
|
ENV['RAILS_ENV'] = 'test'
|
15
15
|
|
16
|
-
require File.expand_path('
|
16
|
+
require File.expand_path('dummy/config/environment.rb', __dir__)
|
17
17
|
|
18
18
|
require 'rspec/rails'
|
19
19
|
require 'database_cleaner'
|
@@ -44,7 +44,7 @@ require 'spree/testing_support/preferences'
|
|
44
44
|
require 'solidus_payu_latam/factories'
|
45
45
|
|
46
46
|
RSpec.configure do |config|
|
47
|
-
config.include
|
47
|
+
config.include FactoryBot::Syntax::Methods
|
48
48
|
config.include PayuLatamHelper
|
49
49
|
|
50
50
|
# Infer an example group's spec type from the file location.
|
@@ -104,4 +104,5 @@ VCR.configure do |c|
|
|
104
104
|
c.hook_into :webmock
|
105
105
|
c.ignore_localhost = true
|
106
106
|
c.configure_rspec_metadata!
|
107
|
+
c.default_cassette_options = { re_record_interval: 7.days }
|
107
108
|
end
|
@@ -20,7 +20,7 @@ module PayuLatamHelper
|
|
20
20
|
|
21
21
|
def fill_address(country)
|
22
22
|
fill_in 'First Name', with: 'APPROVED'
|
23
|
-
fill_in 'Last Name', with: ''
|
23
|
+
fill_in 'Last Name', with: '.'
|
24
24
|
fill_in 'Street Address', with: 'YT-1300'
|
25
25
|
fill_in 'City', with: 'Mos Eisley'
|
26
26
|
select 'United States of America', from: 'Country'
|
metadata
CHANGED
@@ -1,31 +1,31 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: solidus_payu_latam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- César Carruitero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: activemerchant
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '1.76'
|
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: '
|
26
|
+
version: '1.76'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: solidus_core
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: solidus_support
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: database_cleaner
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
@@ -81,7 +81,7 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: factory_bot
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - ">="
|
@@ -95,7 +95,7 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: poltergeist
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - ">="
|
@@ -164,7 +164,7 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
-
description: Adds Solidus support for Payu Latam Gateway
|
167
|
+
description: Adds Solidus support for payments with Payu Latam Gateway
|
168
168
|
email: ccarruitero@protonmail.com
|
169
169
|
executables: []
|
170
170
|
extensions: []
|
@@ -173,6 +173,7 @@ files:
|
|
173
173
|
- ".gitignore"
|
174
174
|
- ".rspec"
|
175
175
|
- ".rubocop.yml"
|
176
|
+
- ".rvmrc"
|
176
177
|
- ".travis.yml"
|
177
178
|
- Gemfile
|
178
179
|
- LICENSE
|
@@ -228,5 +229,5 @@ rubyforge_project:
|
|
228
229
|
rubygems_version: 2.6.13
|
229
230
|
signing_key:
|
230
231
|
specification_version: 4
|
231
|
-
summary: Adds Solidus support for Payu Latam Gateway
|
232
|
+
summary: Adds Solidus support for payments with Payu Latam Gateway
|
232
233
|
test_files: []
|