workarea-paypal 2.0.11 → 2.0.12
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 56a09d91218ed3f26af740d2452a11f318b20883b3d81232b0d6fc930f4eacdc
|
|
4
|
+
data.tar.gz: 55a0ee63c4306a9b5011c9415177173599bf0274910fd32ed7ee8a4e458871c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5d7624bd975a7e4e88aa357a99358f35cc45ffdbab1e4331808992b704fbf754c62e7d2ee3280f6fc0424de29f77418d13ebdaeb1ecda2d8cf05562cd45ae0c
|
|
7
|
+
data.tar.gz: 9d6668de3ebfd54f9c315c0c3ee69af19dba5448062073c09940969620d0497c074ecb491d22638381eb238d9e2904aa4f74c01f3cd2f090512c1cb48296b8e1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
Workarea Paypal 2.0.11 (2020-07-11)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Fix Paypal BN code not being sent
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Matt Duffy
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
Workarea Paypal 2.0.10 (2020-05-26)
|
|
2
11
|
--------------------------------------------------------------------------------
|
|
3
12
|
|
data/lib/workarea/paypal.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
require 'workarea'
|
|
2
2
|
require 'workarea/storefront'
|
|
3
3
|
require 'workarea/admin'
|
|
4
|
+
require 'workarea/paypal/ext/active_merchant/paypal_express_gateway'
|
|
4
5
|
|
|
5
6
|
module Workarea
|
|
6
7
|
module Paypal
|
|
@@ -15,9 +16,7 @@ module Workarea
|
|
|
15
16
|
def self.auto_configure_gateway
|
|
16
17
|
if Rails.application.secrets.paypal.present?
|
|
17
18
|
self.gateway = ActiveMerchant::Billing::PaypalExpressGateway.new(
|
|
18
|
-
Rails.application.secrets.paypal.deep_symbolize_keys
|
|
19
|
-
button_source: 'Workarea_SP'
|
|
20
|
-
)
|
|
19
|
+
Rails.application.secrets.paypal.deep_symbolize_keys
|
|
21
20
|
)
|
|
22
21
|
elsif gateway.blank?
|
|
23
22
|
self.gateway = ActiveMerchant::Billing::BogusGateway.new
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
module ActiveMerchant
|
|
4
|
+
module Billing
|
|
5
|
+
class PaypalExpressGatewayTest < Workarea::TestCase
|
|
6
|
+
def test_add_button_source
|
|
7
|
+
xml = Builder::XmlMarkup.new
|
|
8
|
+
gateway = PaypalExpressGateway.new(login: 'w', password: 'a', signature: 'p')
|
|
9
|
+
|
|
10
|
+
assert_equal(
|
|
11
|
+
'<n2:ButtonSource>Workarea_SP</n2:ButtonSource>',
|
|
12
|
+
gateway.add_button_source(xml)
|
|
13
|
+
)
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-paypal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bcrouse
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -85,6 +85,7 @@ files:
|
|
|
85
85
|
- config/routes.rb
|
|
86
86
|
- lib/workarea/paypal.rb
|
|
87
87
|
- lib/workarea/paypal/engine.rb
|
|
88
|
+
- lib/workarea/paypal/ext/active_merchant/paypal_express_gateway.rb
|
|
88
89
|
- lib/workarea/paypal/version.rb
|
|
89
90
|
- test/dummy/Rakefile
|
|
90
91
|
- test/dummy/app/assets/config/manifest.js
|
|
@@ -147,6 +148,7 @@ files:
|
|
|
147
148
|
- test/system/workarea/storefront/cart_system_test.decorator
|
|
148
149
|
- test/system/workarea/storefront/logged_in_checkout_system_test.decorator
|
|
149
150
|
- test/test_helper.rb
|
|
151
|
+
- test/workarea/paypal/ext/active_merchant/paypal_express_gateway_test.rb
|
|
150
152
|
- workarea-paypal.gemspec
|
|
151
153
|
homepage: https://github.com/workarea-commerce/workarea-paypal
|
|
152
154
|
licenses:
|