omniauth-identity 3.1.3 → 3.1.4
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +21 -1
- data/CONTRIBUTING.md +41 -18
- data/README.md +26 -35
- data/lib/omniauth/identity/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +20 -6
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1299ed56a1450bd936c5b4f7345901c81d3e485cd2191b778074c058344c4d51
|
4
|
+
data.tar.gz: 8b82be0d7c38e24fa01f5741d184c9e27fa6b842d863dc2912b6b6e3a1ac2b6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0b274d8ab8950e144fef290d150b294ffe5984764ae25d04b90458e3d44a605e0328141cf00fd09e5b4e295aadeb186f2f3386515997e6f1c8f5eae9de40aeb
|
7
|
+
data.tar.gz: cd20cf2c660f0592b9926fc3deac8f7d87e50f37c57393301f57a093988567b4063df04f6b677b7ba06fd3a562fa46328917097ee7962247f950ccd182560cb8
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -13,6 +13,24 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
13
13
|
### Fixed
|
14
14
|
### Security
|
15
15
|
|
16
|
+
## [3.1.4] - 2025-07-28
|
17
|
+
- TAG: [v3.1.4][3.1.4t]
|
18
|
+
- COVERAGE: 92.06% -- 348/378 lines in 15 files
|
19
|
+
- BRANCH COVERAGE: 79.49% -- 62/78 branches in 15 files
|
20
|
+
- 44.44% documented
|
21
|
+
# Added
|
22
|
+
- More documentation
|
23
|
+
- Tracking maintainability and coverage with QLTY.sh
|
24
|
+
- Documentation site
|
25
|
+
- https://omniauth-identity.galtzo.com
|
26
|
+
- Test against bson v5.1.1
|
27
|
+
- Test against locked and unlocked, runtime and development, dependencies
|
28
|
+
### Changed
|
29
|
+
- gemspec metadata
|
30
|
+
- Test against latest bundler
|
31
|
+
- Develop on ruby@3.4.5
|
32
|
+
- Switch to [Appraisal2](https://github.com/appraisal-rb/appraisal2)
|
33
|
+
|
16
34
|
## [3.1.3] - 2025-06-08
|
17
35
|
- TAG: [v3.1.3][3.1.3t]
|
18
36
|
- COVERAGE: 92.06% -- 348/378 lines in 15 files
|
@@ -206,7 +224,9 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
206
224
|
- Gemfile.lock file
|
207
225
|
- MongoMapper support; unable to satisfy dependencies of both MongoMapper and Mongoid now that MongoMapper is no longer actively maintained.
|
208
226
|
|
209
|
-
[Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.1.
|
227
|
+
[Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.1.4...HEAD
|
228
|
+
[3.1.4]: https://github.com/omniauth/omniauth-identity/compare/v3.1.3...v3.1.4
|
229
|
+
[3.1.4t]: https://github.com/omniauth/omniauth-identity/tags/v3.1.4
|
210
230
|
[3.1.3]: https://github.com/omniauth/omniauth-identity/compare/v3.1.2...v3.1.3
|
211
231
|
[3.1.3t]: https://github.com/omniauth/omniauth-identity/tags/v3.1.3
|
212
232
|
[3.1.2]: https://github.com/omniauth/omniauth-identity/compare/v3.1.1...v3.1.2
|
data/CONTRIBUTING.md
CHANGED
@@ -26,27 +26,52 @@ Follow these instructions:
|
|
26
26
|
|
27
27
|
From time to time the appraisal gemfiles in `gemfiles/` will need to be updated.
|
28
28
|
|
29
|
-
NOTE: The `eval_gemfile` feature comes from a [fork][🚎appraisal-fork] of Appraisal.
|
30
|
-
|
31
|
-
Please upvote the PR for `eval_gemfile` [support][🚎appraisal-eval-gemfile-pr]
|
32
|
-
|
33
29
|
Create or update them with the commands:
|
34
30
|
|
35
|
-
```
|
31
|
+
```console
|
36
32
|
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle
|
37
33
|
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
|
38
34
|
bundle exec rake rubocop_gradual:autocorrect
|
39
35
|
```
|
40
36
|
|
37
|
+
NOTE: Commands need to be run from the devcontainer if old Rails or old sqlite3 won't install for you locally.
|
38
|
+
|
41
39
|
When adding an appraisal to CI, check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
|
42
40
|
|
41
|
+
### We commit, and don't commit, our "gemfile.lock" files
|
42
|
+
|
43
|
+
Thanks to [Appraisal2](https://github.com/appraisal-rb/appraisal2) we have a `gemfiles/*.gemfile` suite
|
44
|
+
in addition to the main `Gemfile` at the root of the project.
|
45
|
+
We run a workflow against the main Gemfile, which has a `Gemfile.lock` committed, and
|
46
|
+
we also run workflows against each of the Appraisal2 `gemfiles/*.gemfile` suite,
|
47
|
+
which **do not** have `gemfiles/*.gemfile.lock` committed.
|
48
|
+
|
49
|
+
```
|
50
|
+
# Lock/Unlock Deps Pattern
|
51
|
+
#
|
52
|
+
# Two often conflicting goals resolved!
|
53
|
+
#
|
54
|
+
# - deps_unlocked.yml
|
55
|
+
# - All runtime & dev dependencies, but does not have a `gemfiles/*.gemfile.lock` committed
|
56
|
+
# - Uses an Appraisal2 "deps_unlocked" gemfile, and the current MRI Ruby release
|
57
|
+
# - Know when new dependency releases will break local dev with unlocked dependencies
|
58
|
+
# - Broken workflow indicates that new releases of dependencies may not work
|
59
|
+
#
|
60
|
+
# - deps_locked.yml
|
61
|
+
# - All runtime & dev dependencies, and has a `Gemfile.lock` committed
|
62
|
+
# - Uses the project's main Gemfile, and the current MRI Ruby release
|
63
|
+
# - Matches what contributors and maintainers use locally for development
|
64
|
+
# - Broken workflow indicates that a new contributor will have a bad time
|
65
|
+
#
|
66
|
+
```
|
67
|
+
|
43
68
|
## The Reek List
|
44
69
|
|
45
70
|
Take a look at the `reek` list which is the file called `REEK` and find something to improve.
|
46
71
|
|
47
72
|
To refresh the `reek` list:
|
48
73
|
|
49
|
-
```
|
74
|
+
```console
|
50
75
|
bundle exec reek > REEK
|
51
76
|
```
|
52
77
|
|
@@ -55,18 +80,18 @@ bundle exec reek > REEK
|
|
55
80
|
NOTE: To run *all* tests have the following databases installed, configured, and running.
|
56
81
|
|
57
82
|
1. [RethinkDB](https://rethinkdb.com), an open source, real-time, web database, [installed](https://rethinkdb.com/docs/install/) and [running](https://rethinkdb.com/docs/start-a-server/), e.g.
|
58
|
-
```
|
83
|
+
```console
|
59
84
|
brew install rethinkdb
|
60
85
|
rethinkdb
|
61
86
|
```
|
62
87
|
2. [MongoDB](https://docs.mongodb.com/manual/administration/install-community/)
|
63
|
-
```
|
88
|
+
```console
|
64
89
|
brew tap mongodb/brew
|
65
90
|
brew install mongodb-community@4.4
|
66
91
|
mongod --config /usr/local/etc/mongod.conf
|
67
92
|
```
|
68
93
|
3. [CouchDB](https://couchdb.apache.org) - download the .app, or:
|
69
|
-
```
|
94
|
+
```console
|
70
95
|
brew install couchdb
|
71
96
|
```
|
72
97
|
CouchDB 3.x requires a set admin password set before startup.
|
@@ -80,24 +105,24 @@ NOTE: To run *all* tests have the following databases installed, configured, and
|
|
80
105
|
export COUCHDB_PASSWORD=yourabsolutesecret
|
81
106
|
```
|
82
107
|
Then start the CouchDB service
|
83
|
-
```
|
108
|
+
```console
|
84
109
|
brew services start couchdb
|
85
110
|
```
|
86
111
|
|
87
112
|
Now you can run any of the tests!
|
88
113
|
|
89
114
|
To run all tests on all databases (except RethinkDB):
|
90
|
-
```
|
115
|
+
```console
|
91
116
|
bundle exec rake spec:orm:all
|
92
117
|
```
|
93
118
|
|
94
119
|
To run all tests that do not require any additional services, i.e. excluding MongoDB, CouchDB, & RethinkDB:
|
95
|
-
```
|
120
|
+
```console
|
96
121
|
bundle exec rake test
|
97
122
|
```
|
98
123
|
|
99
124
|
To run a specific DB:
|
100
|
-
```
|
125
|
+
```console
|
101
126
|
# CouchDB / CouchPotato
|
102
127
|
bundle exec rspec spec spec_orms --tag 'couchdb'
|
103
128
|
|
@@ -118,13 +143,13 @@ bundle exec rspec spec_ignored/nobrainer_spec.rb
|
|
118
143
|
|
119
144
|
Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
|
120
145
|
|
121
|
-
```
|
146
|
+
```console
|
122
147
|
bundle exec rake
|
123
148
|
```
|
124
149
|
|
125
150
|
Or just run the linter.
|
126
151
|
|
127
|
-
```
|
152
|
+
```console
|
128
153
|
bundle exec rake rubocop_gradual:autocorrect
|
129
154
|
```
|
130
155
|
|
@@ -170,7 +195,7 @@ NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in th
|
|
170
195
|
12. Run `bundle exec rake release` which will create a git tag for the version,
|
171
196
|
push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
|
172
197
|
|
173
|
-
|
198
|
+
[🚎src-main]: https://github.com/omniauth/omniauth-identity
|
174
199
|
[🧪build]: https://github.com/omniauth/omniauth-identity/actions
|
175
200
|
[🤝conduct]: https://github.com/omniauth/omniauth-identity/blob/main/CODE_OF_CONDUCT.md
|
176
201
|
[🖐contrib-rocks]: https://contrib.rocks
|
@@ -183,6 +208,4 @@ NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in th
|
|
183
208
|
[💎stone_checksums]: https://github.com/pboling/stone_checksums
|
184
209
|
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
185
210
|
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
186
|
-
[🚎appraisal-eval-gemfile-pr]: https://github.com/thoughtbot/appraisal/pull/248
|
187
|
-
[🚎appraisal-fork]: https://github.com/pboling/appraisal/tree/galtzo
|
188
211
|
[🏃♂️runner-tool-cache]: https://github.com/ruby/ruby-builder/releases/tag/toolcache
|
data/README.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
<p align="center">
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
<a href="https://discord.gg/3qme4XHNKN" target="_blank" rel="noopener">
|
3
|
+
<img width="124px" src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/galtzo-floss-logos-original.svg?raw=true" alt="Galtzo.com Logo by Aboling0, CC BY-SA 4.0">
|
4
|
+
</a>
|
5
|
+
<a href="https://github.com/omniauth" target="_blank" rel="noopener">
|
6
|
+
<img src="https://github.com/omniauth/omniauth-identity/raw/main/docs/images/logo/omniauth-logo-182px.png?raw=true" alt="OmniAuth Logo possibly by Ted O'Meara, license unknown">
|
7
|
+
</a>
|
8
|
+
<a href="https://www.ruby-lang.org/" target="_blank" rel="noopener">
|
9
|
+
<img width="124px" src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/ruby-logo-198px.svg?raw=true" alt="Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5">
|
10
|
+
</a>
|
11
11
|
</p>
|
12
12
|
|
13
13
|
# 🫵 OmniAuth::Identity
|
14
14
|
|
15
|
-
[![Version][👽versioni]][👽version] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![Depfu][🔑depfui♻️]][🔑depfu] [![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls] [![QLTY Test Coverage][🔑qlty-covi
|
15
|
+
[![Version][👽versioni]][👽version] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![Depfu][🔑depfui♻️]][🔑depfu] [![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls] [![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov] [![QLTY Test Coverage][🔑qlty-covi]][🔑qlty-cov] [![QLTY Maintainability][🔑qlty-mnti]][🔑qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Runtime Dependencies @ HEAD][🚎12-crh-wfi]][🚎12-crh-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Supported][🚎6-s-wfi]][🚎6-s-wf] [![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf] [![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf] [![CI Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf]
|
16
16
|
|
17
17
|
---
|
18
18
|
|
@@ -58,13 +58,13 @@ by following the instructions below.
|
|
58
58
|
|
59
59
|
Add my public key (if you haven’t already, expires 2045-04-29) as a trusted certificate:
|
60
60
|
|
61
|
-
```
|
61
|
+
```console
|
62
62
|
gem cert --add <(curl -Ls https://raw.github.com/omniauth/omniauth-identity/main/certs/pboling.pem)
|
63
63
|
```
|
64
64
|
|
65
65
|
You only need to do that once. Then proceed to install with:
|
66
66
|
|
67
|
-
```
|
67
|
+
```console
|
68
68
|
gem install omniauth-identity -P MediumSecurity
|
69
69
|
```
|
70
70
|
|
@@ -74,7 +74,7 @@ This is necessary because not all of `omniauth-identity`’s dependencies are si
|
|
74
74
|
|
75
75
|
If you want to up your security game full-time:
|
76
76
|
|
77
|
-
```
|
77
|
+
```console
|
78
78
|
bundle config set --global trust-policy MediumSecurity
|
79
79
|
```
|
80
80
|
|
@@ -354,6 +354,8 @@ See [CONTRIBUTING.md][🤝contributing].
|
|
354
354
|
|
355
355
|
### Code Coverage
|
356
356
|
|
357
|
+
[![Coverage Graph][🔑codecov-g♻️]][🔑codecov]
|
358
|
+
|
357
359
|
[![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls]
|
358
360
|
|
359
361
|
### 🪇 Code of Conduct
|
@@ -430,7 +432,7 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright
|
|
430
432
|
<a href="https://discord.gg/3qme4XHNKN">
|
431
433
|
Galtzo.com
|
432
434
|
<picture>
|
433
|
-
<img src="https://github.com/
|
435
|
+
<img src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/galtzo-floss-logos-wordless.svg?raw=true" alt="Galtzo.com Logo by Aboling0, CC BY-SA 4.0" width="24">
|
434
436
|
</picture>
|
435
437
|
</a>, and omniauth-identity contributors
|
436
438
|
</li>
|
@@ -454,7 +456,7 @@ or one of smaller ones, depending on button size preference.
|
|
454
456
|
|
455
457
|
[![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
|
456
458
|
|
457
|
-
P.S.
|
459
|
+
P.S. If you need help️, or want to say thanks, 👇 Join the Discord.
|
458
460
|
|
459
461
|
[![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
460
462
|
|
@@ -471,6 +473,8 @@ P.S. Use the gem => Discord for help
|
|
471
473
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
|
472
474
|
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
473
475
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
476
|
+
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
477
|
+
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|
474
478
|
|
475
479
|
[✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
|
476
480
|
[⛳️gem-namespace]: https://github.com/omniauth/omniauth-identity
|
@@ -527,9 +531,9 @@ P.S. Use the gem => Discord for help
|
|
527
531
|
[👽version]: https://rubygems.org/gems/omniauth-identity
|
528
532
|
[👽versioni]: https://img.shields.io/gem/v/omniauth-identity.svg
|
529
533
|
[🔑qlty-mnt]: https://qlty.sh/gh/omniauth/projects/omniauth-identity
|
530
|
-
[🔑qlty-mnti
|
531
|
-
[🔑qlty-cov]: https://qlty.sh/gh/omniauth/projects/omniauth-identity
|
532
|
-
[🔑qlty-covi
|
534
|
+
[🔑qlty-mnti]: https://qlty.sh/gh/omniauth/projects/omniauth-identity/maintainability.svg
|
535
|
+
[🔑qlty-cov]: https://qlty.sh/gh/omniauth/projects/omniauth-identity/metrics/code?sort=coverageRating
|
536
|
+
[🔑qlty-covi]: https://qlty.sh/gh/omniauth/projects/omniauth-identity/coverage.svg
|
533
537
|
[🔑codecov]: https://codecov.io/gh/omniauth/omniauth-identity
|
534
538
|
[🔑codecovi♻️]: https://codecov.io/gh/omniauth/omniauth-identity/branch/main/graph/badge.svg?token=cc6UdZCpAL
|
535
539
|
[🔑coveralls]: https://coveralls.io/github/omniauth/omniauth-identity?branch=main
|
@@ -562,6 +566,10 @@ P.S. Use the gem => Discord for help
|
|
562
566
|
[🚎11-c-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/current.yml/badge.svg
|
563
567
|
[🚎12-crh-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/current-runtime-heads.yml
|
564
568
|
[🚎12-crh-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/current-runtime-heads.yml/badge.svg
|
569
|
+
[🚎13-🔒️-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/deps_locked.yml
|
570
|
+
[🚎13-🔒️-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/deps_locked.yml/badge.svg
|
571
|
+
[🚎14-🔓️-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/deps_unlocked.yml
|
572
|
+
[🚎14-🔓️-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/deps_unlocked.yml/badge.svg
|
565
573
|
[💎ruby-2.3i]: https://img.shields.io/badge/Ruby-2.3-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
566
574
|
[💎ruby-2.4i]: https://img.shields.io/badge/Ruby-2.4-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
567
575
|
[💎ruby-2.5i]: https://img.shields.io/badge/Ruby-2.5-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
@@ -619,20 +627,3 @@ P.S. Use the gem => Discord for help
|
|
619
627
|
[💎SHA_checksums]: https://github.com/omniauth/omniauth-identity/tree/main/checksums
|
620
628
|
[💎rlts]: https://github.com/rubocop-lts/rubocop-lts
|
621
629
|
[💎rlts-img]: https://img.shields.io/badge/code_style_%26_linting-rubocop--lts-34495e.svg?plastic&logo=ruby&logoColor=white
|
622
|
-
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
623
|
-
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|
624
|
-
|
625
|
-
<details>
|
626
|
-
<summary>
|
627
|
-
Disabled Badges
|
628
|
-
</summary>
|
629
|
-
|
630
|
-
Badges for failing services.
|
631
|
-
Bug reports filed.
|
632
|
-
Once fixed, these should look much nicer.
|
633
|
-
|
634
|
-
[![QLTY Maintainability][🔑qlty-mnti♻️]][🔑qlty-mnt]
|
635
|
-
[![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov]
|
636
|
-
[![Coverage Graph][🔑codecov-g♻️]][🔑codecov]
|
637
|
-
|
638
|
-
</details>
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-identity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -37,7 +37,7 @@ cert_chain:
|
|
37
37
|
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
38
38
|
L9nRqA==
|
39
39
|
-----END CERTIFICATE-----
|
40
|
-
date: 2025-
|
40
|
+
date: 2025-07-29 00:00:00.000000000 Z
|
41
41
|
dependencies:
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: bcrypt
|
@@ -135,6 +135,20 @@ dependencies:
|
|
135
135
|
- - ">="
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: 1.0.9
|
138
|
+
- !ruby/object:Gem::Dependency
|
139
|
+
name: appraisal2
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '3.0'
|
145
|
+
type: :development
|
146
|
+
prerelease: false
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - "~>"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '3.0'
|
138
152
|
- !ruby/object:Gem::Dependency
|
139
153
|
name: rack-test
|
140
154
|
requirement: !ruby/object:Gem::Requirement
|
@@ -246,10 +260,10 @@ licenses:
|
|
246
260
|
- MIT
|
247
261
|
metadata:
|
248
262
|
homepage_uri: https://omniauth-identity.galtzo.com/
|
249
|
-
source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.1.
|
250
|
-
changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.1.
|
263
|
+
source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.1.4
|
264
|
+
changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.1.4/CHANGELOG.md
|
251
265
|
bug_tracker_uri: https://github.com/omniauth/omniauth-identity/issues
|
252
|
-
documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.
|
266
|
+
documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.4
|
253
267
|
wiki_uri: https://github.com/omniauth/omniauth-identity/wiki
|
254
268
|
funding_uri: https://github.com/sponsors/pboling
|
255
269
|
news_uri: https://www.railsbling.com/tags/omniauth-identity
|
@@ -281,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
281
295
|
- !ruby/object:Gem::Version
|
282
296
|
version: '0'
|
283
297
|
requirements: []
|
284
|
-
rubygems_version: 3.
|
298
|
+
rubygems_version: 3.7.1
|
285
299
|
specification_version: 4
|
286
300
|
summary: Traditional username/password based authentication system for OmniAuth
|
287
301
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|