solidus_paypal_commerce_platform 0.2.1 → 0.2.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/CHANGELOG.md +15 -0
- data/README.md +4 -0
- data/lib/solidus_paypal_commerce_platform/version.rb +1 -1
- data/solidus_paypal_commerce_platform.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6b42e62ea794f6f98a382e3944a86f1b03130eef00a43691d731396b424b1a6
|
|
4
|
+
data.tar.gz: ed073fde27a260b13e256619efa1e0382bbe9e682d0a02312716b064acbec74c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f65d2f2afb76c41ce0210766d7b38d5535caad5c14fb69e949fc48d0e64c0c80eae602e4e720b0e69db78484d316ab7af51f8850231e461c4067d302a953d523
|
|
7
|
+
data.tar.gz: 04edef6d25e8e3421dacb99ff25ed2c9eda8c280430d7c7ad7dd61380e64fe907384545deb282da748dae3be745f6b02b832ca225c5494c4ffbaca20634b6ca4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v0.2.2](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/tree/v0.2.2) (2020-11-20)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/compare/v0.2.1...v0.2.2)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Make the PayPal messaging component a bit more modular [\#112](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/issues/112)
|
|
10
|
+
- Implement and QA Paypal credit solutions [\#99](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/issues/99)
|
|
11
|
+
- Simulated Address Info in Live Order [\#104](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/issues/104)
|
|
12
|
+
|
|
13
|
+
**Merged pull requests:**
|
|
14
|
+
|
|
15
|
+
- Relax SolidusWebhooks dependency [\#114](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/pull/114) ([kennyadsl](https://github.com/kennyadsl))
|
|
16
|
+
- Add information about paypal credit messaging to readme [\#113](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/pull/113) ([seand7565](https://github.com/seand7565))
|
|
17
|
+
|
|
3
18
|
## [v0.2.1](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/tree/v0.2.1) (2020-11-09)
|
|
4
19
|
|
|
5
20
|
[Full Changelog](https://github.com/solidusio-contrib/solidus_paypal_commerce_platform/compare/v0.2.0...v0.2.1)
|
data/README.md
CHANGED
|
@@ -71,6 +71,10 @@ When you return to your app, your payment method should be set up and ready to g
|
|
|
71
71
|
A confirmed email is required to get paid by PayPal. You'll need to check `Paypal Email Confirmed` on your new
|
|
72
72
|
payment method before being able to select `Available To Users`.
|
|
73
73
|
|
|
74
|
+
### Messaging Component
|
|
75
|
+
|
|
76
|
+
PayPal offers a messaging component that displays credit messaging to the user. You can find more information [here.](https://www.paypal.com/us/webapps/mpp/on-site-messaging) This messaging is enabled by default on all pages that use the paypal payment buttons, but can be disabled via preferences. PayPal recommends that this messaging be displayed near product or order totals, so please keep that in mind during implementation.
|
|
77
|
+
|
|
74
78
|
## Wizards
|
|
75
79
|
|
|
76
80
|
This gem adds support for payment method wizards to be set up. Payment wizards can be used to automatically set up
|
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
spec.add_dependency 'deface', '~> 1.5'
|
|
32
32
|
spec.add_dependency 'solidus_core', ['>= 2.0.0', '< 3']
|
|
33
33
|
spec.add_dependency 'solidus_support', [">= 0.5.1", "< 1"]
|
|
34
|
-
spec.add_dependency 'solidus_webhooks', '~> 0.2
|
|
34
|
+
spec.add_dependency 'solidus_webhooks', '~> 0.2'
|
|
35
35
|
|
|
36
36
|
spec.add_dependency 'paypal-checkout-sdk'
|
|
37
37
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_paypal_commerce_platform
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Denny
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-11-
|
|
12
|
+
date: 2020-11-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: deface
|
|
@@ -71,14 +71,14 @@ dependencies:
|
|
|
71
71
|
requirements:
|
|
72
72
|
- - "~>"
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: 0.2
|
|
74
|
+
version: '0.2'
|
|
75
75
|
type: :runtime
|
|
76
76
|
prerelease: false
|
|
77
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: 0.2
|
|
81
|
+
version: '0.2'
|
|
82
82
|
- !ruby/object:Gem::Dependency
|
|
83
83
|
name: paypal-checkout-sdk
|
|
84
84
|
requirement: !ruby/object:Gem::Requirement
|