omniauth-paypal-oauth2 2.0.1 → 2.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/README.md +12 -2
- data/lib/omniauth/paypal_oauth2/version.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67bfab593dd887770f78ba211e7bca04336340445caa9accd847b282bfaefe84
|
|
4
|
+
data.tar.gz: fd6dc68018f7e5d404eb3f295ff79d5972adc9ac7cd6e15e20ee4c69590195a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8842b6e8928433e4a174bd184648d1cd13c15e38f397907155be3982c48c76ae1760b3ea3b57c74b7f5bf784f759276982b651a887769c0e5658fcef9d1314c8
|
|
7
|
+
data.tar.gz: b9d432085cbf4829a3dc7ae0c3fd8c7cd0e513e12f89454af7bc73cfd0484358154f2e77209e49d44236057b12d5eb232081c86de27d259acc1ef1f653aafed5
|
data/README.md
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# OmniAuth PayPal OAuth2 Strategy
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/rb/omniauth-paypal-oauth2) 
|
|
4
|
-
|
|
5
3
|
Strategy to authenticate with PayPal via OmniAuth.
|
|
6
4
|
|
|
7
5
|
Get your API key at: https://developer.paypal.com/developer/applications/ in the section **RESTApps**. Note the Client ID and the Client Secret.
|
|
@@ -23,6 +21,7 @@ For more details, read the PayPal docs: https://developer.paypal.com/docs/integr
|
|
|
23
21
|
* [Configuration](#configuration)
|
|
24
22
|
* [Auth hash](#auth-hash)
|
|
25
23
|
* [Testing](#testing)
|
|
24
|
+
* [Release](#release)
|
|
26
25
|
* [To Do](#to-do)
|
|
27
26
|
* [Contributing](#contributing)
|
|
28
27
|
* [Semantic versioning](#semantic-versioning)
|
|
@@ -228,6 +227,17 @@ For more details see the PayPal [List Of Attributes](https://developer.paypal.co
|
|
|
228
227
|
|
|
229
228
|
---
|
|
230
229
|
|
|
230
|
+
## Release
|
|
231
|
+
|
|
232
|
+
1. Review breaking changes and deprecations in `CHANGELOG.md`
|
|
233
|
+
2. Change the gem version in `lib/omniauth/paypal_oauth2/version.rb`
|
|
234
|
+
3. Reset `CHANGELOG.md`
|
|
235
|
+
4. Create a pull request to merge the changes into `master`
|
|
236
|
+
5. After the pull request was merged, create a new release listing the breaking changes and commits on `master` since the last release.
|
|
237
|
+
6. The release workflow will publish the gems to RubyGems and the GitHub Package Registry
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
231
241
|
## To Do
|
|
232
242
|
|
|
233
243
|
We use [GitHub projects](https://github.com/jonhue/omniauth-paypal-oauth2/projects/1) to coordinate the work on this project.
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-paypal-oauth2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonas Hübotter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.7'
|
|
20
|
+
- - "<"
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
22
|
+
version: '3'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.7'
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
32
|
+
version: '3'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: omniauth-oauth2
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -81,7 +87,7 @@ dependencies:
|
|
|
81
87
|
- !ruby/object:Gem::Version
|
|
82
88
|
version: '0'
|
|
83
89
|
description: A PayPal OAuth2 strategy for OmniAuth
|
|
84
|
-
email:
|
|
90
|
+
email: jonas.huebotter@gmail.com
|
|
85
91
|
executables: []
|
|
86
92
|
extensions: []
|
|
87
93
|
extra_rdoc_files: []
|