zoreal-oauth2 0.1.1 → 0.1.3
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 +5 -4
- data/lib/zoreal/oauth2/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 316d86bac36a690c10fdfefbf5b5f1ebbadce45e56e69d0d0074d641ff9e1f07
|
|
4
|
+
data.tar.gz: c47f42263f881132a9281b70402654bb4f07bfa9b7963544a712e4f4ee8c8246
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2341f70010a3769490afe488816d3a223b243693c1bdf70ffbfd1f7d0ce81443ba55c32126bb3f9629232530ae3590d3c85ab0a5f3820c0cc48b4a78fb67c61
|
|
7
|
+
data.tar.gz: 10447f93e400fb9154fe8e59a46655640ed7f995c39c54b23fb23ebbbbf134c650ad278dc2e1ed4904de39afec1873cd3b0f284a4a98e7dce843981fd478339f
|
data/README.md
CHANGED
|
@@ -18,10 +18,12 @@ zoreal-oauth2 (this gem) your backend: exchange, verify, userinfo
|
|
|
18
18
|
## Install
|
|
19
19
|
|
|
20
20
|
```ruby
|
|
21
|
-
# Gemfile
|
|
22
|
-
gem 'zoreal-oauth2'
|
|
21
|
+
# Gemfile
|
|
22
|
+
gem 'zoreal-oauth2'
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
Or directly: `gem install zoreal-oauth2`.
|
|
26
|
+
|
|
25
27
|
Ruby >= 3.1. One dependency: `jwt`.
|
|
26
28
|
|
|
27
29
|
## Quick start
|
|
@@ -124,8 +126,7 @@ signup that needs the email cannot.
|
|
|
124
126
|
|
|
125
127
|
## Development against a local provider
|
|
126
128
|
|
|
127
|
-
Point `issuer:` at your provider instance
|
|
128
|
-
`https://rails.bynn.io/id`). The issuer value must match the `iss` inside the
|
|
129
|
+
Point `issuer:` at your provider instance. The issuer value must match the `iss` inside the
|
|
129
130
|
tokens exactly — it is compared, not normalized.
|
|
130
131
|
|
|
131
132
|
## The ZOREAL OAuth2 library family
|