workarea-paypal 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/tasks/workarea/create_webhooks.rake +2 -1
- data/lib/workarea/paypal/gateway.rb +1 -1
- data/lib/workarea/paypal/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d0ce77786a2ad96d5214c78579c0cdbc5b43244cf601f804ce7816d79ff7b26
|
4
|
+
data.tar.gz: 541c17558e7d370bba35069c36e94c5b2b117ec8272f4166d13de28f32832881
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bacf6162780b95520e23ac0de9e09fb2e85415c689af9b8d4695b8f96159de868d155371a52436804238fea7ac874971ca5a1e43020dca37d8ede749eda3c8dc
|
7
|
+
data.tar.gz: 3d63100bfb1a3a49608a65cb2804148cf4868c39e9d13106a73268e52874adc1d04e66ded3813a62da4bd754d1c0d5bb3e882a63c60a046fe6b7e0bd02db956b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
Workarea Paypal 3.0.2 (2020-05-14)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Fix wrong protocol when using SSL
|
5
|
+
|
6
|
+
Fixes #11
|
7
|
+
|
8
|
+
Ben Crouse
|
9
|
+
|
10
|
+
* Fix field name on #refund
|
11
|
+
|
12
|
+
|
13
|
+
Alejandro Babio
|
14
|
+
|
15
|
+
|
16
|
+
|
1
17
|
Workarea Paypal 3.0.1 (2020-03-17)
|
2
18
|
--------------------------------------------------------------------------------
|
3
19
|
|
@@ -17,7 +17,8 @@ namespace :workarea do
|
|
17
17
|
puts 'Subscribing to PayPal webhook events...'
|
18
18
|
Workarea::Paypal.gateway.create_webhook(
|
19
19
|
url: Workarea::Storefront::Engine.routes.url_helpers.paypal_event_url(
|
20
|
-
host: Workarea.config.host
|
20
|
+
host: Workarea.config.host,
|
21
|
+
protocol: Rails.application.config.force_ssl ? 'https' : 'http'
|
21
22
|
),
|
22
23
|
event_types: Workarea.config.default_webhook_events
|
23
24
|
)
|
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: 3.0.
|
4
|
+
version: 3.0.2
|
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-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
@@ -218,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
218
218
|
- !ruby/object:Gem::Version
|
219
219
|
version: '0'
|
220
220
|
requirements: []
|
221
|
-
rubygems_version: 3.0.
|
221
|
+
rubygems_version: 3.0.3
|
222
222
|
signing_key:
|
223
223
|
specification_version: 4
|
224
224
|
summary: PayPal integration for the Workarea Commerce Platform
|