omniauth-identity 3.1.0 → 3.1.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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +31 -1
- data/CONTRIBUTING.md +192 -0
- data/{LICENSE → LICENSE.txt} +3 -1
- data/README.md +280 -154
- data/SECURITY.md +25 -0
- data/lib/omniauth/identity/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +76 -53
- 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: 4ae1d22cc4863db6f745452cb551a3d6ce42f61ee3573b8c4318e9c7ad10aa77
|
4
|
+
data.tar.gz: 0acd4989302fbaa277ccebb366b12565b8abd5c9b841e7d66ba78245cf3d8c6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f86bb181b29d85553c77d2ef84a6cf9a05b3c0e6fe52c561de4941fea006593f17022297bc221386f8d0267746647a358e568fd73a8edb4f33b55e1ab226002d
|
7
|
+
data.tar.gz: c0db17c9b14a11a98691e9ffb055487dc8c931d2622605c207d96422a1c0b701433d5fb22a4a1974c2bce0929ceebd5f46f16eec80f6ec7c522ae18cac67ed8a
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -11,6 +11,32 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
11
11
|
### Fixed
|
12
12
|
### Removed
|
13
13
|
|
14
|
+
## [3.1.2] - 2025-05-07 ([tag][3.1.2t])
|
15
|
+
- COVERAGE: 92.02% -- 346/376 lines in 15 files
|
16
|
+
- BRANCH COVERAGE: 79.49% -- 62/78 branches in 15 files
|
17
|
+
### Added
|
18
|
+
- 20 year signing cert expires 2045-04-29 by @pboling
|
19
|
+
- Added CITATION.cff by @pboling
|
20
|
+
- devcontainer for easier maintenance by @pboling
|
21
|
+
- Improved documentation by @pboling
|
22
|
+
- Greatly improved spec suite and CI config by @pboling
|
23
|
+
- Testing against JRuby 9.2, 9.3, 9.4, 10.0, and head
|
24
|
+
- Testing against many more combinations of Databases, ORMs, Rails, and Ruby versions
|
25
|
+
### Changed
|
26
|
+
- Upgraded Code of Conduct based on Contributor Covenant v2.1 by @pboling
|
27
|
+
|
28
|
+
## [3.1.1] - 2024-11-18 ([tag][3.1.1t])
|
29
|
+
- COVERAGE: 92.00% -- 345/375 lines in 15 files
|
30
|
+
- BRANCH COVERAGE: 80.26% -- 61/76 branches in 15 files
|
31
|
+
- 44.44% documented
|
32
|
+
### Added
|
33
|
+
- [PR 130][130] Add SECURITY.md policy by @pboling
|
34
|
+
- [PR 130][130] Add Maintainer contact email by @pboling
|
35
|
+
### Changed
|
36
|
+
- [PR 130][130] Require MFA to publish to RubyGems.org by @pboling
|
37
|
+
|
38
|
+
[130]: https://github.com/omniauth/omniauth-identity/pull/130
|
39
|
+
|
14
40
|
## [3.1.0] - 2024-11-18 ([tag][3.1.0t])
|
15
41
|
- COVERAGE: 91.98% -- 344/374 lines in 15 files
|
16
42
|
- BRANCH COVERAGE: 80.26% -- 61/76 branches in 15 files
|
@@ -150,7 +176,11 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
150
176
|
- Gemfile.lock file
|
151
177
|
- MongoMapper support; unable to satisfy dependencies of both MongoMapper and Mongoid now that MongoMapper is no longer actively maintained.
|
152
178
|
|
153
|
-
[Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.1.
|
179
|
+
[Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.1.2...HEAD
|
180
|
+
[3.1.2]: https://github.com/omniauth/omniauth-identity/compare/v3.1.1...v3.1.2
|
181
|
+
[3.1.2t]: https://github.com/omniauth/omniauth-identity/tags/v3.1.2
|
182
|
+
[3.1.1]: https://github.com/omniauth/omniauth-identity/compare/v3.1.0...v3.1.1
|
183
|
+
[3.1.1t]: https://github.com/omniauth/omniauth-identity/tags/v3.1.1
|
154
184
|
[3.1.0]: https://github.com/omniauth/omniauth-identity/compare/v3.0.9...v3.1.0
|
155
185
|
[3.1.0t]: https://github.com/omniauth/omniauth-identity/tags/v3.1.0
|
156
186
|
[3.0.9]: https://github.com/omniauth/omniauth-identity/compare/v3.0.8...v3.0.9
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,192 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/omniauth/omniauth-identity][🚎src-main]
|
4
|
+
. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
5
|
+
the [code of conduct][🤝conduct].
|
6
|
+
|
7
|
+
To submit a patch, please fork the project and create a patch with tests.
|
8
|
+
Once you're happy with it send a pull request.
|
9
|
+
|
10
|
+
We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
|
11
|
+
|
12
|
+
## You can help!
|
13
|
+
|
14
|
+
Take a look at the `reek` list which is the file called `REEK` and find something to improve.
|
15
|
+
|
16
|
+
Simply follow these instructions:
|
17
|
+
|
18
|
+
1. Fork the repository
|
19
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
20
|
+
3. Make some fixes.
|
21
|
+
4. Commit your changes (`git commit -am 'Added some feature'`)
|
22
|
+
5. Push to the branch (`git push origin my-new-feature`)
|
23
|
+
6. Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
24
|
+
7. Create new Pull Request.
|
25
|
+
|
26
|
+
## Appraisals
|
27
|
+
|
28
|
+
From time to time the appraisal gemfiles in `gemfiles/` will need to be updated.
|
29
|
+
They are created and updated with the commands:
|
30
|
+
|
31
|
+
NOTE: We run on a [fork][🚎appraisal-fork] of Appraisal.
|
32
|
+
|
33
|
+
Please upvote the PR for `eval_gemfile` [support][🚎appraisal-eval-gemfile-pr]
|
34
|
+
|
35
|
+
```shell
|
36
|
+
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle
|
37
|
+
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
|
38
|
+
bundle exec rake rubocop_gradual:autocorrect
|
39
|
+
```
|
40
|
+
|
41
|
+
When adding an appraisal to CI check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
|
42
|
+
|
43
|
+
## The Reek List
|
44
|
+
|
45
|
+
Take a look at the `reek` list which is the file called `REEK` and find something to improve.
|
46
|
+
|
47
|
+
To refresh the `reek` list:
|
48
|
+
|
49
|
+
```bash
|
50
|
+
bundle exec reek > REEK
|
51
|
+
```
|
52
|
+
|
53
|
+
## Run Tests
|
54
|
+
|
55
|
+
NOTE: In order to run *all* the tests you will need to have the following databases installed, configured, and running.
|
56
|
+
|
57
|
+
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
|
+
```bash
|
59
|
+
brew install rethinkdb
|
60
|
+
rethinkdb
|
61
|
+
```
|
62
|
+
2. [MongoDB](https://docs.mongodb.com/manual/administration/install-community/)
|
63
|
+
```bash
|
64
|
+
brew tap mongodb/brew
|
65
|
+
brew install mongodb-community@4.4
|
66
|
+
mongod --config /usr/local/etc/mongod.conf
|
67
|
+
```
|
68
|
+
3. [CouchDB](https://couchdb.apache.org) - download the .app, or:
|
69
|
+
```bash
|
70
|
+
brew install couchdb
|
71
|
+
```
|
72
|
+
CouchDB 3.x requires a set admin password set before startup.
|
73
|
+
Add one to your `$HOMEBREW_PREFIX/etc/local.ini` before starting CouchDB e.g.:
|
74
|
+
```ini
|
75
|
+
[admins]
|
76
|
+
admin = yourabsolutesecret
|
77
|
+
```
|
78
|
+
Also add whatever password you set to your `.env.local`:
|
79
|
+
```dotenv
|
80
|
+
export COUCHDB_PASSWORD=yourabsolutesecret
|
81
|
+
```
|
82
|
+
Then start the CouchDB service
|
83
|
+
```bash
|
84
|
+
brew services start couchdb
|
85
|
+
```
|
86
|
+
|
87
|
+
Now you can run any of the tests!
|
88
|
+
|
89
|
+
To run all tests on all databases (except RethinkDB):
|
90
|
+
```bash
|
91
|
+
bundle exec rake spec:orm:all
|
92
|
+
```
|
93
|
+
|
94
|
+
To run all tests that do not require any additional services, i.e. excluding MongoDB, CouchDB, & RethinkDB:
|
95
|
+
```bash
|
96
|
+
bundle exec rake test
|
97
|
+
```
|
98
|
+
|
99
|
+
To run a specific DB:
|
100
|
+
```bash
|
101
|
+
# CouchDB / CouchPotato
|
102
|
+
bundle exec rspec spec spec_orms --tag 'couchdb'
|
103
|
+
|
104
|
+
# ActiveRecord and Sequel, as they both use the in-memory SQLite driver.
|
105
|
+
bundle exec rspec spec spec_orms --tag 'sqlite3'
|
106
|
+
|
107
|
+
# NOTE - mongoid and nobrainer specs can't be isolated with "tag" because it still loads everything,
|
108
|
+
# and the two libraries are fundamentally incompatible.
|
109
|
+
|
110
|
+
# MongoDB / Mongoid
|
111
|
+
bundle exec rspec spec_orms/mongoid_spec.rb
|
112
|
+
|
113
|
+
# RethinkDB / NoBrainer (Ignored by CI! see spec file for reasons)
|
114
|
+
bundle exec rspec spec_ignored/nobrainer_spec.rb
|
115
|
+
```
|
116
|
+
|
117
|
+
## Lint It
|
118
|
+
|
119
|
+
Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
|
120
|
+
|
121
|
+
```bash
|
122
|
+
bundle exec rake
|
123
|
+
```
|
124
|
+
|
125
|
+
Or just run the linter.
|
126
|
+
|
127
|
+
```bash
|
128
|
+
bundle exec rake rubocop_gradual:autocorrect
|
129
|
+
```
|
130
|
+
|
131
|
+
## Contributors
|
132
|
+
|
133
|
+
Your picture could be here!
|
134
|
+
|
135
|
+
[![Contributors][🖐contributors-img]][🖐contributors]
|
136
|
+
|
137
|
+
Made with [contributors-img][🖐contrib-rocks].
|
138
|
+
|
139
|
+
## For Maintainers
|
140
|
+
|
141
|
+
### One-time, Per-maintainer, Setup
|
142
|
+
|
143
|
+
**IMPORTANT**: If you want to sign the build you create,
|
144
|
+
your public key for signing gems will need to be picked up by the line in the
|
145
|
+
`gemspec` defining the `spec.cert_chain` (check the relevant ENV variables there).
|
146
|
+
All releases to RubyGems.org will be signed.
|
147
|
+
See: [RubyGems Security Guide][🔒️rubygems-security-guide]
|
148
|
+
|
149
|
+
NOTE: To build without signing the gem you must set `SKIP_GEM_SIGNING` to some value in your environment.
|
150
|
+
|
151
|
+
### To release a new version:
|
152
|
+
|
153
|
+
1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check
|
154
|
+
2. Update the version number in `version.rb`, and ensure `CHANGELOG.md` reflects changes
|
155
|
+
3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
|
156
|
+
4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
|
157
|
+
5. Run `git push` to trigger the final CI pipeline before release, & merge PRs
|
158
|
+
- NOTE: Remember to [check the build][🧪build]!
|
159
|
+
6. Run `export GIT_TRUNK_BRANCH_NAME="$(git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5)" && echo $GIT_TRUNK_BRANCH_NAME`
|
160
|
+
7. Run `git checkout $GIT_TRUNK_BRANCH_NAME`
|
161
|
+
8. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure you will release the latest trunk code
|
162
|
+
9. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp, and generate same checksums
|
163
|
+
- Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
|
164
|
+
- If the echo above has no output, then it didn't work.
|
165
|
+
- Note that you'll need the `zsh/datetime` module, if running `zsh`.
|
166
|
+
- In older versions of `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
|
167
|
+
10. Run `bundle exec rake build`
|
168
|
+
11. Run `bin/gem_checksums` (more context [1][🔒️rubygems-checksums-pr], [2][🔒️rubygems-guides-pr])
|
169
|
+
to create SHA-256 and SHA-512 checksums. This functionality is provided by the `stone_checksums`
|
170
|
+
[gem][💎stone_checksums].
|
171
|
+
- Checksums will be committed automatically by the script, but not pushed
|
172
|
+
12. Run `bundle exec rake release` which will create a git tag for the version,
|
173
|
+
push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
|
174
|
+
|
175
|
+
[🚎src-main]: https://github.com/omniauth/omniauth-identity
|
176
|
+
[🧪build]: https://github.com/omniauth/omniauth-identity/actions
|
177
|
+
[🤝conduct]: https://github.com/omniauth/omniauth-identity/blob/main/CODE_OF_CONDUCT.md
|
178
|
+
[🖐contrib-rocks]: https://contrib.rocks
|
179
|
+
[🖐contributors]: https://github.com/omniauth/omniauth-identity/graphs/contributors
|
180
|
+
[🖐contributors-img]: https://contrib.rocks/image?repo=omniauth/omniauth-identity
|
181
|
+
[💎rubygems]: https://rubygems.org
|
182
|
+
[🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
183
|
+
[🔒️rubygems-checksums-pr]: https://github.com/rubygems/rubygems/pull/6022
|
184
|
+
[🔒️rubygems-guides-pr]: https://github.com/rubygems/guides/pull/325
|
185
|
+
[💎stone_checksums]: https://github.com/pboling/stone_checksums
|
186
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
187
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
188
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
189
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
190
|
+
[🚎appraisal-eval-gemfile-pr]: https://github.com/thoughtbot/appraisal/pull/248
|
191
|
+
[🚎appraisal-fork]: https://github.com/pboling/appraisal/tree/galtzo
|
192
|
+
[🏃♂️runner-tool-cache]: https://github.com/ruby/ruby-builder/releases/tag/toolcache
|
data/{LICENSE → LICENSE.txt}
RENAMED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2021, 2024 - 2025 Peter H. Boling, and OmniAuth::Identity Contributors
|
2
4
|
Copyright (c) 2020 Peter H. Boling, Andrew Roberts, and Jellybooks Ltd.
|
3
5
|
Copyright (c) 2010-2015 Michael Bleigh, and Intridea, Inc.
|
4
6
|
|
data/README.md
CHANGED
@@ -5,148 +5,123 @@
|
|
5
5
|
[![Downloads Rank][👽dl-ranki]][👽dl-rank]
|
6
6
|
[![Open Source Helpers][👽oss-helpi]][👽oss-help]
|
7
7
|
[![Depfu][🔑depfui♻️]][🔑depfu]
|
8
|
-
[![CodeCov][🔑codecovi♻️]][🔑codecov]
|
9
|
-
[![Test Coverage][🔑
|
10
|
-
[![
|
11
|
-
[![CI
|
12
|
-
[![CI
|
13
|
-
[![CI
|
14
|
-
[![CI
|
15
|
-
[![CI
|
16
|
-
[![CI
|
17
|
-
[![CI
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
[👽dl-rank]: https://rubygems.org/gems/omniauth-identity
|
22
|
-
[👽dl-ranki]: https://img.shields.io/gem/rd/omniauth-identity.svg
|
23
|
-
[👽oss-help]: https://www.codetriage.com/omniauth/omniauth-identity
|
24
|
-
[👽oss-helpi]: https://www.codetriage.com/omniauth/omniauth-identity/badges/users.svg
|
25
|
-
[👽version]: https://rubygems.org/gems/omniauth-identity
|
26
|
-
[👽versioni]: https://img.shields.io/gem/v/omniauth-identity.svg
|
27
|
-
|
28
|
-
<!--- ( 🔑 KEYED LINKS ) -->
|
29
|
-
|
30
|
-
[🔑cc-mnt]: https://codeclimate.com/github/omniauth/omniauth-identity/maintainability
|
31
|
-
[🔑cc-mnti♻️]: https://api.codeclimate.com/v1/badges/621d6211cb2e0959ce00/maintainability
|
32
|
-
[🔑cc-cov]: https://codeclimate.com/github/omniauth/omniauth-identity/test_coverage
|
33
|
-
[🔑cc-covi♻️]: https://api.codeclimate.com/v1/badges/621d6211cb2e0959ce00/test_coverage
|
34
|
-
[🔑codecov]: https://codecov.io/gh/omniauth/omniauth-identity
|
35
|
-
[🔑codecovi♻️]: https://codecov.io/gh/omniauth/omniauth-identity/graph/badge.svg?token=cc6UdZCpAL
|
36
|
-
[🔑depfu]: https://depfu.com/github/omniauth/omniauth-identity
|
37
|
-
[🔑depfui♻️]: https://badges.depfu.com/badges/6c9b45362951b872127f9e46d39bed76/count.svg
|
38
|
-
|
39
|
-
<!--- ( 🚎 BUILD LINKS ) -->
|
40
|
-
|
41
|
-
[🚎1-an-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/ancient.yml
|
42
|
-
[🚎1-an-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/ancient.yml/badge.svg
|
43
|
-
[🚎2-cov-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/coverage.yml
|
44
|
-
[🚎2-cov-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/coverage.yml/badge.svg
|
45
|
-
[🚎3-hd-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/heads.yml
|
46
|
-
[🚎3-hd-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/heads.yml/badge.svg
|
47
|
-
[🚎4-lg-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/legacy.yml
|
48
|
-
[🚎4-lg-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/legacy.yml/badge.svg
|
49
|
-
[🚎5-st-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/style.yml
|
50
|
-
[🚎5-st-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/style.yml/badge.svg
|
51
|
-
[🚎6-s-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/supported.yml
|
52
|
-
[🚎6-s-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/supported.yml/badge.svg
|
53
|
-
[🚎7-us-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/unsupported.yml
|
54
|
-
[🚎7-us-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/unsupported.yml/badge.svg
|
55
|
-
|
56
|
-
-----
|
8
|
+
[![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov]
|
9
|
+
[![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls]
|
10
|
+
[![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf]
|
11
|
+
[![CI Current][🚎11-c-wfi]][🚎11-c-wf]
|
12
|
+
[![CI JRuby][🚎10-j-wfi]][🚎10-j-wf]
|
13
|
+
[![CI Supported][🚎6-s-wfi]][🚎6-s-wf]
|
14
|
+
[![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf]
|
15
|
+
[![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf]
|
16
|
+
[![CI Ancient][🚎1-an-wfi]][🚎1-an-wf]
|
17
|
+
[![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf]
|
18
|
+
[![CI Style][🚎5-st-wfi]][🚎5-st-wf]
|
19
|
+
|
20
|
+
---
|
57
21
|
|
58
22
|
[![Liberapay Patrons][⛳liberapay-img]][⛳liberapay]
|
59
23
|
[![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor]
|
60
|
-
[![
|
24
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme]
|
25
|
+
[![Donate on Polar][🖇polar-img]][🖇polar]
|
61
26
|
[![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
62
27
|
[![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
|
63
28
|
|
64
|
-
|
65
|
-
[⛳liberapay]: https://liberapay.com/pboling/donate
|
66
|
-
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
67
|
-
[🖇sponsor]: https://github.com/sponsors/pboling
|
68
|
-
[🖇polar-img]: https://polar.sh/embed/seeks-funding-shield.svg?org=pboling
|
69
|
-
[🖇polar]: https://polar.sh/pboling
|
70
|
-
[🖇kofi-img]: https://img.shields.io/badge/buy%20me%20coffee-donate-yellow.svg
|
71
|
-
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
72
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
|
73
|
-
[🖇patreon]: https://patreon.com/galtzo
|
74
|
-
|
75
|
-
The OmniAuth Identity gem provides a way for applications to utilize a
|
29
|
+
The `omniauth-identity` gem provides a way for applications to utilize a
|
76
30
|
traditional username/password based authentication system without the need
|
77
31
|
to give up the simple authentication flow provided by OmniAuth. Identity
|
78
32
|
is designed on purpose to be as featureless as possible: it provides the
|
79
33
|
basic construct for user management and then gets out of the way.
|
80
34
|
|
81
|
-
|
82
|
-
|
83
|
-
|
|
84
|
-
|
85
|
-
|
|
86
|
-
|
87
|
-
|
88
|
-
[
|
89
|
-
[
|
90
|
-
[
|
91
|
-
[
|
92
|
-
[
|
93
|
-
[
|
94
|
-
[
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
35
|
+
## 💡 Info you can shake a stick at
|
36
|
+
|
37
|
+
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
38
|
+
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
39
|
+
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎10-j-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎10-j-wf] [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎10-j-wf] [![JRuby 10.0 Compat][💎jruby-c-i]][🚎11-c-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf] |
|
40
|
+
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎4-lg-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎6-s-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎6-s-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎6-s-wf] [![Ruby 3.4 Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf] |
|
41
|
+
| Works with MRI Ruby 2 | [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎1-an-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎1-an-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎7-us-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎7-us-wf] |
|
42
|
+
| Source | [![Source on Github.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
|
43
|
+
| Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![HEAD on RubyDoc.info][📜docs-head-rd-img]][🚎yard-head] [![BDFL Blog][🚂bdfl-blog-img]][🚂bdfl-blog] [![Wiki][📜wiki-img]][📜wiki] |
|
44
|
+
| Compliance | [![License: MIT][📄license-img]][📄license-ref] [![📄ilo-declaration-img]][📄ilo-declaration] [![Security Policy][🔐security-img]][🔐security] [![CodeQL][🖐codeQL-img]][🖐codeQL] [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct] [![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog] [![Gitmoji Commits][📌gitmoji-img]][📌gitmoji] |
|
45
|
+
| Expert 1:1 Support | [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] `or` [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
46
|
+
| Enterprise Support | [![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift]<br/>💡Subscribe for support guarantees covering _all_ FLOSS dependencies!<br/>💡Tidelift is part of [Sonar][🏙️entsup-tidelift-sonar]!<br/>💡Tidelift pays maintainers to maintain the software you depend on!<br/>📊`@`Pointy Haired Boss: An [enterprise support][🏙️entsup-tidelift] subscription is "[never gonna let you down][🧮kloc]", and *supports* open source maintainers! |
|
47
|
+
| Comrade BDFL 🎖️ | [![Follow Me on LinkedIn][💖🖇linkedin-img]][💖🖇linkedin] [![Follow Me on Ruby.Social][💖🐘ruby-mast-img]][💖🐘ruby-mast] [![Follow Me on Bluesky][💖🦋bluesky-img]][💖🦋bluesky] [![Contact BDFL][🚂bdfl-contact-img]][🚂bdfl-contact] [![My technical writing][💖💁🏼♂️devto-img]][💖💁🏼♂️devto] |
|
48
|
+
| `...` 💖 | [![Find Me on WellFound:][💖✌️wellfound-img]][💖✌️wellfound] [![Find Me on CrunchBase][💖💲crunchbase-img]][💖💲crunchbase] [![My LinkTree][💖🌳linktree-img]][💖🌳linktree] [![More About Me][💖💁🏼♂️aboutme-img]][💖💁🏼♂️aboutme] [🧊][💖🧊berg] [🐙][💖🐙hub] [🛖][💖🛖hut] [🧪][💖🧪lab] |
|
49
|
+
|
50
|
+
## ✨ Installation
|
51
|
+
|
52
|
+
Install the gem and add to the application's Gemfile by executing:
|
53
|
+
|
54
|
+
$ bundle add omniauth-identity
|
55
|
+
|
56
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
57
|
+
|
58
|
+
$ gem install omniauth-identity
|
59
|
+
|
60
|
+
### 🔒 Secure Installation
|
61
|
+
|
62
|
+
`omniauth-identity` is cryptographically signed, and has verifiable [SHA-256 and SHA-512][💎SHA_checksums] checksums by
|
63
|
+
[stone_checksums][💎stone_checksums]. Be sure the gem you install hasn’t been tampered with
|
64
|
+
by following the instructions below.
|
65
|
+
|
66
|
+
Add my public key (if you haven’t already, expires 2045-04-29) as a trusted certificate:
|
110
67
|
|
111
68
|
```shell
|
112
|
-
|
69
|
+
gem cert --add <(curl -Ls https://raw.github.com/omniauth/omniauth-identity/main/certs/pboling.pem)
|
113
70
|
```
|
114
71
|
|
115
|
-
|
72
|
+
You only need to do that once. Then proceed to install with:
|
116
73
|
|
117
|
-
```
|
118
|
-
gem
|
74
|
+
```shell
|
75
|
+
gem install omniauth-identity -P MediumSecurity
|
119
76
|
```
|
120
77
|
|
121
|
-
|
78
|
+
The `MediumSecurity` trust profile will verify signed gems, but allow the installation of unsigned dependencies.
|
79
|
+
|
80
|
+
This is necessary because not all of `omniauth-identity`’s dependencies are signed, so we cannot use `HighSecurity`.
|
122
81
|
|
123
|
-
|
82
|
+
If you want to up your security game full-time:
|
83
|
+
|
84
|
+
```shell
|
85
|
+
bundle config set --global trust-policy MediumSecurity
|
86
|
+
```
|
87
|
+
|
88
|
+
NOTE: Be prepared to track down certs for signed gems and add them the same way you added mine.
|
89
|
+
|
90
|
+
## 🔧 Compatibility
|
91
|
+
|
92
|
+
This gem is compatible with a wide range of Ruby versions and Ruby ORMs, as of May 2025, version 3.1.
|
124
93
|
|
125
94
|
* Latest released version of omniauth, v2+
|
126
|
-
* Tested in CI against
|
127
|
-
*
|
95
|
+
* Tested in CI against:
|
96
|
+
* Ruby 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, ruby-head
|
97
|
+
* JRuby 9.2, 9.3, 9.4, 10.0, jruby-head
|
98
|
+
* ActiveRecord 5.2, 6.0, 6.1, 7.0, 7.1, 7.2, 8.0
|
99
|
+
* sqlite3 1.2, 1.3, 1.4, 1.5, 1.6, 1.7
|
100
|
+
* couch_potato 1.17
|
101
|
+
* mongoid 7.3, 7.4, 8.1, 9.0
|
102
|
+
* sequel 5.92+
|
128
103
|
* At least 5 different database ORM adapters, which connect to 15 different database clients!
|
129
104
|
|
130
105
|
| Databases | Adapter Libraries |
|
131
|
-
|
132
|
-
| MySQL, PostgreSQL,
|
106
|
+
| --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ |
|
107
|
+
| MySQL, MariaDB, PostgreSQL, SQLite | [ActiveRecord](https://guides.rubyonrails.org/active_record_basics.html) |
|
133
108
|
| CouchDB | [CouchPotato](https://github.com/langalex/couch_potato) |
|
134
109
|
| MongoDB | [Mongoid](https://github.com/mongodb/mongoid) |
|
135
110
|
| RethinkDB | [NoBrainer](http://nobrainer.io/) |
|
136
|
-
| ADO, Amalgalite, IBM_DB, JDBC, MySQL,
|
111
|
+
| ADO, Amalgalite, IBM_DB, JDBC, MySQL, MariaDB, ODBC, Oracle, PostgreSQL, SQLAnywhere, SQLite, and TinyTDS | [Sequel](http://sequel.jeremyevans.net) |
|
137
112
|
|
138
|
-
## Usage
|
113
|
+
## 🔧 Basic Usage
|
139
114
|
|
140
115
|
This can be a bit hard to understand the first time. Luckily, Ryan Bates made
|
141
116
|
a [Railscast](http://railscasts.com/episodes/304-omniauth-identity) about it!
|
142
117
|
|
143
118
|
You use `omniauth-identity` just like you would any other OmniAuth provider: as a
|
144
119
|
Rack middleware. In rails, this would be created by an initializer, such as
|
145
|
-
`config/initializers/omniauth.rb`. The basic setup for
|
120
|
+
`config/initializers/omniauth.rb`. The basic setup for an email/password authentication would look something like this:
|
146
121
|
|
147
122
|
```ruby
|
148
123
|
use OmniAuth::Builder do
|
149
|
-
provider :identity,
|
124
|
+
provider :identity, # required: tells OA that the Identity strategy is being used
|
150
125
|
model: Identity, # optional: specifies the name of the "Identity" model. Defaults to "Identity"
|
151
126
|
fields: %i[email custom1 custom2] # optional: list of custom fields that are in the model's table
|
152
127
|
end
|
@@ -162,7 +137,7 @@ running, you can point users to `/auth/identity` and it will request
|
|
162
137
|
that they log in or give them the opportunity to sign up for an account.
|
163
138
|
Once they have authenticated with their identity, OmniAuth will call
|
164
139
|
through to `/auth/identity/callback` with the same kinds of information
|
165
|
-
it would had the user authenticated through an external provider.
|
140
|
+
it would have had the user authenticated through an external provider.
|
166
141
|
|
167
142
|
**Note:** OmniAuth Identity is different from many other user authentication
|
168
143
|
systems in that it is *not* built to store authentication information in your primary
|
@@ -173,7 +148,7 @@ strategies such as Facebook, Twitter, etc.
|
|
173
148
|
### ActiveRecord
|
174
149
|
|
175
150
|
Just subclass `OmniAuth::Identity::Models::ActiveRecord` and provide fields
|
176
|
-
in the database for all
|
151
|
+
in the database for all the fields you are using.
|
177
152
|
|
178
153
|
```ruby
|
179
154
|
class Identity < OmniAuth::Identity::Models::ActiveRecord
|
@@ -271,7 +246,7 @@ end
|
|
271
246
|
NOTE: In the above example, `MyCustomClass` must have a class method called `auth_key` that returns
|
272
247
|
the default (`email`) or custom `auth_key` to use.
|
273
248
|
|
274
|
-
|
249
|
+
### Customizing Registration Failure
|
275
250
|
|
276
251
|
To use your own custom registration form, create a form that POSTs to
|
277
252
|
`/auth/identity/register` with `password`, `password_confirmation`, and your
|
@@ -320,7 +295,7 @@ introduction](http://library.edgecase.com/Rails/2011/01/04/rails-routing-and-rac
|
|
320
295
|
and
|
321
296
|
[ActionController::Metal](http://rubydoc.info/docs/rails/ActionController/Metal)
|
322
297
|
|
323
|
-
|
298
|
+
### Customizing Locate Conditions
|
324
299
|
|
325
300
|
You can customize the way that matching records are found when authenticating.
|
326
301
|
For example, for a site with multiple domains, you may wish to scope the search
|
@@ -344,9 +319,10 @@ Note: Be careful when customizing `locate_conditions`. The best way to modify t
|
|
344
319
|
to copy the default value, and then add to the hash. Removing the default condition will almost
|
345
320
|
always break things!
|
346
321
|
|
347
|
-
|
322
|
+
### Customizing Other Things
|
348
323
|
|
349
324
|
From the code - here are the options we have for you, a couple of which are documented above, and the rest are documented... in the specs we hope!?
|
325
|
+
|
350
326
|
```
|
351
327
|
option :fields, %i[name email]
|
352
328
|
|
@@ -364,23 +340,28 @@ option :locate_conditions, ->(req) { {model.auth_key => req.params["auth_key"]}
|
|
364
340
|
|
365
341
|
Please contribute some documentation if you have the gumption! The maintainer's time is limited, and sometimes the authors of PRs with new options don't update the _this_ readme. 😭
|
366
342
|
|
343
|
+
## 🔐 Security
|
344
|
+
|
345
|
+
See [SECURITY.md][🔐security].
|
346
|
+
|
367
347
|
## 🤝 Contributing
|
368
348
|
|
369
349
|
If you need some ideas of where to help, you could work on adding more code coverage,
|
370
350
|
or if it is already 💯 (see [below](#code-coverage)) then check [issues][🤝issues], or [PRs][🤝pulls],
|
371
351
|
or use the gem and think about how it could be better.
|
372
352
|
|
373
|
-
|
353
|
+
We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
|
374
354
|
|
375
|
-
[🤝
|
376
|
-
[🤝pulls]: https://github.com/omniauth/omniauth-identity/pulls
|
377
|
-
[🤝contributing]: CONTRIBUTING.md
|
355
|
+
See [CONTRIBUTING.md][🤝contributing] for more detailed instructions.
|
378
356
|
|
379
357
|
### Code Coverage
|
380
358
|
|
381
|
-
[![Coverage Graph][🔑codecov-g]][🔑codecov]
|
359
|
+
[![Coverage Graph][🔑codecov-g♻️]][🔑codecov]
|
382
360
|
|
383
|
-
|
361
|
+
### 🪇 Code of Conduct
|
362
|
+
|
363
|
+
Everyone interacting in this project's codebases, issue trackers,
|
364
|
+
chat rooms and mailing lists is expected to follow the [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct].
|
384
365
|
|
385
366
|
## 🌈 Contributors
|
386
367
|
|
@@ -388,11 +369,7 @@ Also, see [CONTRIBUTING.md][🤝contributing].
|
|
388
369
|
|
389
370
|
Made with [contributors-img][🖐contrib-rocks].
|
390
371
|
|
391
|
-
|
392
|
-
[🖐contributors]: https://github.com/omniauth/omniauth-identity/graphs/contributors
|
393
|
-
[🖐contributors-img]: https://contrib.rocks/image?repo=omniauth/omniauth-identity
|
394
|
-
|
395
|
-
## Star History
|
372
|
+
## ⭐️ Star History
|
396
373
|
|
397
374
|
<a href="https://star-history.com/#omniauth/omniauth-identity&Date">
|
398
375
|
<picture>
|
@@ -402,27 +379,33 @@ Made with [contributors-img][🖐contrib-rocks].
|
|
402
379
|
</picture>
|
403
380
|
</a>
|
404
381
|
|
405
|
-
## 🪇 Code of Conduct
|
406
|
-
|
407
|
-
Everyone interacting in this project's codebases, issue trackers,
|
408
|
-
chat rooms and mailing lists is expected to follow the [code of conduct][🪇conduct].
|
409
|
-
|
410
|
-
[🪇conduct]: CODE_OF_CONDUCT.md
|
411
|
-
|
412
382
|
## 📌 Versioning
|
413
383
|
|
414
|
-
This Library adheres to [Semantic Versioning 2.0.0][📌semver].
|
384
|
+
This Library adheres to [![Semantic Versioning 2.0.0][📌semver-img]][📌semver].
|
415
385
|
Violations of this scheme should be reported as bugs.
|
416
386
|
Specifically, if a minor or patch version is released that breaks backward compatibility,
|
417
387
|
a new version should be immediately released that restores compatibility.
|
418
388
|
Breaking changes to the public API will only be introduced with new major versions.
|
419
389
|
|
390
|
+
### 📌 Is "Platform Support" part of the public API?
|
391
|
+
|
392
|
+
Yes. But I'm obligated to include notes...
|
393
|
+
|
394
|
+
SemVer should, but doesn't explicitly, say that dropping support for specific Platforms
|
395
|
+
is a *breaking change* to an API.
|
396
|
+
It is obvious to many, but not all, and since the spec is silent, the bike shedding is endless.
|
397
|
+
|
398
|
+
> dropping support for a platform is both obviously and objectively a breaking change
|
399
|
+
|
400
|
+
- Jordan Harband (@ljharb, maintainer of SemVer) [in SemVer issue 716][📌semver-breaking]
|
401
|
+
|
420
402
|
To get a better understanding of how SemVer is intended to work over a project's lifetime,
|
421
403
|
read this article from the creator of SemVer:
|
422
404
|
|
423
405
|
- ["Major Version Numbers are Not Sacred"][📌major-versions-not-sacred]
|
424
406
|
|
425
|
-
As a result of this policy,
|
407
|
+
As a result of this policy, and the interpretive lens used by the maintainer,
|
408
|
+
you can (and should) specify a dependency on these libraries using
|
426
409
|
the [Pessimistic Version Constraint][📌pvc] with two digits of precision.
|
427
410
|
|
428
411
|
For example:
|
@@ -433,38 +416,31 @@ spec.add_dependency("omniauth-identity", "~> 3.1")
|
|
433
416
|
|
434
417
|
See [CHANGELOG.md][📌changelog] for list of releases.
|
435
418
|
|
436
|
-
<!--- ( 📌 VERSIONING LINKS ) -->
|
437
|
-
|
438
|
-
[📌pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
439
|
-
[📌semver]: http://semver.org/
|
440
|
-
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
441
|
-
[📌changelog]: CHANGELOG.md
|
442
|
-
|
443
419
|
## 📄 License
|
444
420
|
|
445
421
|
The gem is available as open source under the terms of
|
446
422
|
the [MIT License][📄license] [![License: MIT][📄license-img]][📄license-ref].
|
447
423
|
See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright-notice-explainer].
|
448
424
|
|
449
|
-
[comment]: <> ( 📄 LEGAL LINKS )
|
450
|
-
|
451
|
-
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
452
|
-
[📄license]: LICENSE.txt
|
453
|
-
[📄license-ref]: https://opensource.org/licenses/MIT
|
454
|
-
[📄license-img]: https://img.shields.io/badge/License-MIT-green.svg
|
455
|
-
|
456
425
|
### © Copyright
|
457
426
|
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
427
|
+
<ul>
|
428
|
+
<li>
|
429
|
+
Copyright (c) 2021, 2024 - 2025 Peter H. Boling, of
|
430
|
+
<a href="https://railsbling.com">
|
431
|
+
RailsBling.com
|
432
|
+
<picture>
|
433
|
+
<img alt="Rails Bling" height="20" src="https://railsbling.com/images/logos/RailsBling-TrainLogo.svg" />
|
434
|
+
</picture>
|
435
|
+
</a>, and OmniAuth::Identity Contributors
|
436
|
+
</li>
|
437
|
+
<li>
|
438
|
+
Copyright (c) 2020 Peter H. Boling, Andrew Roberts, and Jellybooks Ltd.
|
439
|
+
</li>
|
440
|
+
<li>
|
441
|
+
Copyright (c) 2010-2015 Michael Bleigh, and Intridea, Inc.
|
442
|
+
</li>
|
443
|
+
</ul>
|
468
444
|
|
469
445
|
## 🤑 One more thing
|
470
446
|
|
@@ -477,5 +453,155 @@ or one of the others at the head of this README.
|
|
477
453
|
|
478
454
|
[![Buy me a latte][🖇buyme-img]][🖇buyme]
|
479
455
|
|
456
|
+
[✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
|
457
|
+
[⛳️gem-namespace]: https://github.com/omniauth/omniauth-identity
|
458
|
+
[⛳️namespace-img]: https://img.shields.io/badge/namespace-OmniAuth%3A%3AIdentity-brightgreen.svg?style=flat&logo=ruby&logoColor=white
|
459
|
+
[⛳️gem-name]: https://rubygems.org/gems/omniauth-identity
|
460
|
+
[⛳️name-img]: https://img.shields.io/badge/name-omniauth--identity-brightgreen.svg?style=flat&logo=rubygems&logoColor=red
|
461
|
+
[🚂bdfl-blog]: http://www.railsbling.com/tags/omniauth-identity
|
462
|
+
[🚂bdfl-blog-img]: https://img.shields.io/badge/blog-railsbling-0093D0.svg?style=for-the-badge&logo=rubyonrails&logoColor=orange
|
463
|
+
[🚂bdfl-contact]: http://www.railsbling.com/contact
|
464
|
+
[🚂bdfl-contact-img]: https://img.shields.io/badge/Contact-BDFL-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|
465
|
+
[💖🖇linkedin]: http://www.linkedin.com/in/peterboling
|
466
|
+
[💖🖇linkedin-img]: https://img.shields.io/badge/PeterBoling-LinkedIn-0B66C2?style=flat&logo=newjapanprowrestling
|
467
|
+
[💖✌️wellfound]: https://angel.co/u/peter-boling
|
468
|
+
[💖✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=flat&logo=wellfound
|
469
|
+
[💖💲crunchbase]: https://www.crunchbase.com/person/peter-boling
|
470
|
+
[💖💲crunchbase-img]: https://img.shields.io/badge/peter--boling-purple?style=flat&logo=crunchbase
|
471
|
+
[💖🐘ruby-mast]: https://ruby.social/@galtzo
|
472
|
+
[💖🐘ruby-mast-img]: https://img.shields.io/mastodon/follow/109447111526622197?domain=https%3A%2F%2Fruby.social&style=flat&logo=mastodon&label=Ruby%20%40galtzo
|
473
|
+
[💖🦋bluesky]: https://bsky.app/profile/galtzo.com
|
474
|
+
[💖🦋bluesky-img]: https://img.shields.io/badge/@galtzo.com-0285FF?style=flat&logo=bluesky&logoColor=white
|
475
|
+
[💖🌳linktree]: https://linktr.ee/galtzo
|
476
|
+
[💖🌳linktree-img]: https://img.shields.io/badge/galtzo-purple?style=flat&logo=linktree
|
477
|
+
[💖💁🏼♂️devto]: https://dev.to/galtzo
|
478
|
+
[💖💁🏼♂️devto-img]: https://img.shields.io/badge/dev.to-0A0A0A?style=flat&logo=devdotto&logoColor=white
|
479
|
+
[💖💁🏼♂️aboutme]: https://about.me/peter.boling
|
480
|
+
[💖💁🏼♂️aboutme-img]: https://img.shields.io/badge/about.me-0A0A0A?style=flat&logo=aboutme&logoColor=white
|
481
|
+
[💖🧊berg]: https://codeberg.org/pboling
|
482
|
+
[💖🐙hub]: https://github.org/pboling
|
483
|
+
[💖🛖hut]: https://sr.ht/~galtzo/
|
484
|
+
[💖🧪lab]: https://gitlab.com/pboling
|
485
|
+
[👨🏼🏫expsup-upwork]: https://www.upwork.com/freelancers/~014942e9b056abdf86?mp_source=share
|
486
|
+
[👨🏼🏫expsup-upwork-img]: https://img.shields.io/badge/UpWork-13544E?style=for-the-badge&logo=Upwork&logoColor=white
|
487
|
+
[👨🏼🏫expsup-codementor]: https://www.codementor.io/peterboling?utm_source=github&utm_medium=button&utm_term=peterboling&utm_campaign=github
|
488
|
+
[👨🏼🏫expsup-codementor-img]: https://img.shields.io/badge/CodeMentor-Get_Help-1abc9c?style=for-the-badge&logo=CodeMentor&logoColor=white
|
489
|
+
[🏙️entsup-tidelift]: https://tidelift.com/subscription
|
490
|
+
[🏙️entsup-tidelift-img]: https://img.shields.io/badge/Tidelift_and_Sonar-Enterprise_Support-FD3456?style=for-the-badge&logo=sonar&logoColor=white
|
491
|
+
[🏙️entsup-tidelift-sonar]: https://blog.tidelift.com/tidelift-joins-sonar
|
492
|
+
[💁🏼♂️peterboling]: http://www.peterboling.com
|
493
|
+
[🚂railsbling]: http://www.railsbling.com
|
494
|
+
[📜src-gl-img]: https://img.shields.io/badge/GitLab-FBA326?style=for-the-badge&logo=Gitlab&logoColor=orange
|
495
|
+
[📜src-gl]: https://gitlab.com/omniauth/omniauth-identity/
|
496
|
+
[📜src-cb-img]: https://img.shields.io/badge/CodeBerg-4893CC?style=for-the-badge&logo=CodeBerg&logoColor=blue
|
497
|
+
[📜src-cb]: https://codeberg.org/omniauth/omniauth-identity
|
498
|
+
[📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=Github&logoColor=green
|
499
|
+
[📜src-gh]: https://github.com/omniauth/omniauth-identity
|
500
|
+
[📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
501
|
+
[📜docs-head-rd-img]: https://img.shields.io/badge/RubyDoc-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
502
|
+
[📜wiki]: https://github.com/omniauth/omniauth-identity/wiki
|
503
|
+
[📜wiki-img]: https://img.shields.io/badge/wiki-examples-943CD2.svg?style=for-the-badge&logo=Wiki&logoColor=white
|
504
|
+
[👽dl-rank]: https://rubygems.org/gems/omniauth-identity
|
505
|
+
[👽dl-ranki]: https://img.shields.io/gem/rd/omniauth-identity.svg
|
506
|
+
[👽oss-help]: https://www.codetriage.com/omniauth/omniauth-identity
|
507
|
+
[👽oss-helpi]: https://www.codetriage.com/omniauth/omniauth-identity/badges/users.svg
|
508
|
+
[👽version]: https://rubygems.org/gems/omniauth-identity
|
509
|
+
[👽versioni]: https://img.shields.io/gem/v/omniauth-identity.svg
|
510
|
+
[🔑codecov]: https://codecov.io/gh/omniauth/omniauth-identity
|
511
|
+
[🔑codecovi♻️]: https://codecov.io/gh/omniauth/omniauth-identity/branch/main/graph/badge.svg?token=cc6UdZCpAL
|
512
|
+
[🔑coveralls]: https://coveralls.io/github/omniauth/omniauth-identity?branch=main
|
513
|
+
[🔑coveralls-img]: https://coveralls.io/repos/github/omniauth/omniauth-identity/badge.svg?branch=main
|
514
|
+
[🔑depfu]: https://depfu.com/github/omniauth/omniauth-identity?project_id=22381
|
515
|
+
[🔑depfui♻️]: https://badges.depfu.com/badges/6c9b45362951b872127f9e46d39bed76/count.svg
|
516
|
+
[🖐codeQL]: https://github.com/omniauth/omniauth-identity/security/code-scanning
|
517
|
+
[🖐codeQL-img]: https://github.com/omniauth/omniauth-identity/actions/workflows/codeql-analysis.yml/badge.svg
|
518
|
+
[🚎1-an-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/ancient.yml
|
519
|
+
[🚎1-an-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/ancient.yml/badge.svg
|
520
|
+
[🚎2-cov-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/coverage.yml
|
521
|
+
[🚎2-cov-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/coverage.yml/badge.svg
|
522
|
+
[🚎3-hd-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/heads.yml
|
523
|
+
[🚎3-hd-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/heads.yml/badge.svg
|
524
|
+
[🚎4-lg-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/legacy.yml
|
525
|
+
[🚎4-lg-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/legacy.yml/badge.svg
|
526
|
+
[🚎5-st-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/style.yml
|
527
|
+
[🚎5-st-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/style.yml/badge.svg
|
528
|
+
[🚎6-s-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/supported.yml
|
529
|
+
[🚎6-s-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/supported.yml/badge.svg
|
530
|
+
[🚎7-us-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/unsupported.yml
|
531
|
+
[🚎7-us-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/unsupported.yml/badge.svg
|
532
|
+
[🚎8-ho-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/hoary.yml
|
533
|
+
[🚎8-ho-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/hoary.yml/badge.svg
|
534
|
+
[🚎9-t-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffle.yml
|
535
|
+
[🚎9-t-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffle.yml/badge.svg
|
536
|
+
[🚎10-j-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/jruby.yml
|
537
|
+
[🚎10-j-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/jruby.yml/badge.svg
|
538
|
+
[🚎11-c-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/current.yml
|
539
|
+
[🚎11-c-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/current.yml/badge.svg
|
540
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay
|
541
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
542
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
543
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
544
|
+
[🖇polar-img]: https://img.shields.io/badge/polar-donate-yellow.svg
|
545
|
+
[🖇polar]: https://polar.sh/pboling
|
546
|
+
[🖇kofi-img]: https://img.shields.io/badge/a_more_different_coffee-✓-yellow.svg
|
547
|
+
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
548
|
+
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
|
549
|
+
[🖇patreon]: https://patreon.com/galtzo
|
480
550
|
[🖇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
|
481
551
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
552
|
+
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
|
553
|
+
[💎ruby-2.3i]: https://img.shields.io/badge/Ruby-2.3-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
554
|
+
[💎ruby-2.4i]: https://img.shields.io/badge/Ruby-2.4-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
555
|
+
[💎ruby-2.5i]: https://img.shields.io/badge/Ruby-2.5-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
556
|
+
[💎ruby-2.6i]: https://img.shields.io/badge/Ruby-2.6-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
557
|
+
[💎ruby-2.7i]: https://img.shields.io/badge/Ruby-2.7-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
558
|
+
[💎ruby-3.0i]: https://img.shields.io/badge/Ruby-3.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
559
|
+
[💎ruby-3.1i]: https://img.shields.io/badge/Ruby-3.1-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
560
|
+
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
561
|
+
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
562
|
+
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
563
|
+
[💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
|
564
|
+
[💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
565
|
+
[💎truby-23.0i]: https://img.shields.io/badge/Truffle_Ruby-23.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
566
|
+
[💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
567
|
+
[💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
|
568
|
+
[💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
|
569
|
+
[💎jruby-9.2i]: https://img.shields.io/badge/JRuby-9.2-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
570
|
+
[💎jruby-9.3i]: https://img.shields.io/badge/JRuby-9.3-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
571
|
+
[💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
572
|
+
[💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
|
573
|
+
[💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
|
574
|
+
[🤝issues]: https://github.com/omniauth/omniauth-identity/issues
|
575
|
+
[🤝pulls]: https://github.com/omniauth/omniauth-identity/pulls
|
576
|
+
[🤝contributing]: CONTRIBUTING.md
|
577
|
+
[🔑codecov-g♻️]: https://codecov.io/gh/omniauth/omniauth-identity/graphs/tree.svg?token=cc6UdZCpAL
|
578
|
+
[🖐contrib-rocks]: https://contrib.rocks
|
579
|
+
[🖐contributors]: https://github.com/omniauth/omniauth-identity/graphs/contributors
|
580
|
+
[🖐contributors-img]: https://contrib.rocks/image?repo=omniauth/omniauth-identity
|
581
|
+
[🚎contributors-gl]: https://gitlab.com/omniauth/omniauth-identity/-/graphs/main
|
582
|
+
[🪇conduct]: CODE_OF_CONDUCT.md
|
583
|
+
[🪇conduct-img]: https://img.shields.io/badge/Contributor_Covenant-2.1-4baaaa.svg
|
584
|
+
[📌pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
585
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
586
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
587
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
588
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
589
|
+
[📌changelog]: CHANGELOG.md
|
590
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
591
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
592
|
+
[📌gitmoji]:https://gitmoji.dev
|
593
|
+
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=flat-square
|
594
|
+
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
595
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.376-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
596
|
+
[🔐security]: SECURITY.md
|
597
|
+
[🔐security-img]: https://img.shields.io/badge/security-policy-brightgreen.svg?style=flat
|
598
|
+
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
599
|
+
[📄license]: LICENSE.txt
|
600
|
+
[📄license-ref]: https://opensource.org/licenses/MIT
|
601
|
+
[📄license-img]: https://img.shields.io/badge/License-MIT-green.svg
|
602
|
+
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
603
|
+
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-brightgreen.svg?style=flat
|
604
|
+
[🚎yard-current]: http://rubydoc.info/gems/omniauth-identity
|
605
|
+
[🚎yard-head]: https://rubydoc.info/github/omniauth/omniauth-identity/main
|
606
|
+
[💎stone_checksums]: https://github.com/pboling/stone_checksums
|
607
|
+
[💎SHA_checksums]: https://github.com/omniauth/omniauth-identity/tree/main/checksums
|
data/SECURITY.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Security Policy
|
2
|
+
|
3
|
+
## Supported Versions
|
4
|
+
|
5
|
+
| Version | Supported |
|
6
|
+
|---------|-----------|
|
7
|
+
| 3.1.x | ✅ |
|
8
|
+
| 3.0.x | ❌ |
|
9
|
+
| 2.x | ❌ |
|
10
|
+
| 1.x | ❌ |
|
11
|
+
| 0.x | ❌ |
|
12
|
+
|
13
|
+
## Security contact information
|
14
|
+
|
15
|
+
To report a security vulnerability, please use the
|
16
|
+
[Tidelift security contact](https://tidelift.com/security).
|
17
|
+
Tidelift will coordinate the fix and disclosure.
|
18
|
+
|
19
|
+
## Additional Support
|
20
|
+
|
21
|
+
If you are interested in support for versions older than the latest release,
|
22
|
+
please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
|
23
|
+
or find other sponsorship links in the [README].
|
24
|
+
|
25
|
+
[README]: README.md
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,44 +1,43 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
8
8
|
- Andrew Roberts
|
9
9
|
- Michael Bleigh
|
10
|
-
autorequire:
|
11
10
|
bindir: exe
|
12
11
|
cert_chain:
|
13
12
|
- |
|
14
13
|
-----BEGIN CERTIFICATE-----
|
15
14
|
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
16
15
|
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
17
|
-
|
16
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
18
17
|
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
/
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
18
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
19
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
20
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
21
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
22
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
23
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
24
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
25
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
26
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
27
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
28
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
30
29
|
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
30
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
31
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
32
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
33
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
34
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
35
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
36
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
37
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
38
|
+
L9nRqA==
|
40
39
|
-----END CERTIFICATE-----
|
41
|
-
date:
|
40
|
+
date: 2025-05-07 00:00:00.000000000 Z
|
42
41
|
dependencies:
|
43
42
|
- !ruby/object:Gem::Dependency
|
44
43
|
name: bcrypt
|
@@ -54,6 +53,20 @@ dependencies:
|
|
54
53
|
- - "~>"
|
55
54
|
- !ruby/object:Gem::Version
|
56
55
|
version: '3.1'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: mutex_m
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0.1'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0.1'
|
57
70
|
- !ruby/object:Gem::Dependency
|
58
71
|
name: omniauth
|
59
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -77,7 +90,7 @@ dependencies:
|
|
77
90
|
version: '1.1'
|
78
91
|
- - ">="
|
79
92
|
- !ruby/object:Gem::Version
|
80
|
-
version: 1.1.
|
93
|
+
version: 1.1.8
|
81
94
|
type: :runtime
|
82
95
|
prerelease: false
|
83
96
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -87,7 +100,7 @@ dependencies:
|
|
87
100
|
version: '1.1'
|
88
101
|
- - ">="
|
89
102
|
- !ruby/object:Gem::Version
|
90
|
-
version: 1.1.
|
103
|
+
version: 1.1.8
|
91
104
|
- !ruby/object:Gem::Dependency
|
92
105
|
name: activerecord
|
93
106
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,20 +135,6 @@ dependencies:
|
|
122
135
|
- - ">="
|
123
136
|
- !ruby/object:Gem::Version
|
124
137
|
version: 1.0.9
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: appraisal
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - "~>"
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '2.5'
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - "~>"
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '2.5'
|
139
138
|
- !ruby/object:Gem::Dependency
|
140
139
|
name: rack-test
|
141
140
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,29 +198,38 @@ dependencies:
|
|
199
198
|
- !ruby/object:Gem::Version
|
200
199
|
version: 1.0.6
|
201
200
|
- !ruby/object:Gem::Dependency
|
202
|
-
name:
|
201
|
+
name: stone_checksums
|
203
202
|
requirement: !ruby/object:Gem::Requirement
|
204
203
|
requirements:
|
205
|
-
- - "
|
204
|
+
- - "~>"
|
206
205
|
- !ruby/object:Gem::Version
|
207
|
-
version: '1'
|
206
|
+
version: '1.0'
|
208
207
|
type: :development
|
209
208
|
prerelease: false
|
210
209
|
version_requirements: !ruby/object:Gem::Requirement
|
211
210
|
requirements:
|
212
|
-
- - "
|
211
|
+
- - "~>"
|
213
212
|
- !ruby/object:Gem::Version
|
214
|
-
version: '1'
|
213
|
+
version: '1.0'
|
215
214
|
description: Traditional username/password based authentication system for OmniAuth
|
216
215
|
email:
|
216
|
+
- peter.boling@gmail.com
|
217
217
|
executables: []
|
218
218
|
extensions: []
|
219
|
-
extra_rdoc_files:
|
219
|
+
extra_rdoc_files:
|
220
|
+
- CHANGELOG.md
|
221
|
+
- CODE_OF_CONDUCT.md
|
222
|
+
- CONTRIBUTING.md
|
223
|
+
- LICENSE.txt
|
224
|
+
- README.md
|
225
|
+
- SECURITY.md
|
220
226
|
files:
|
221
227
|
- CHANGELOG.md
|
222
228
|
- CODE_OF_CONDUCT.md
|
223
|
-
-
|
229
|
+
- CONTRIBUTING.md
|
230
|
+
- LICENSE.txt
|
224
231
|
- README.md
|
232
|
+
- SECURITY.md
|
225
233
|
- lib/omniauth-identity.rb
|
226
234
|
- lib/omniauth/identity.rb
|
227
235
|
- lib/omniauth/identity/model.rb
|
@@ -236,9 +244,25 @@ files:
|
|
236
244
|
homepage: https://github.com/omniauth/omniauth-identity
|
237
245
|
licenses:
|
238
246
|
- MIT
|
239
|
-
metadata:
|
240
|
-
|
241
|
-
|
247
|
+
metadata:
|
248
|
+
homepage_uri: https://railsbling.com/tags/omniauth-identity/
|
249
|
+
source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.1.2
|
250
|
+
changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.1.2/CHANGELOG.md
|
251
|
+
bug_tracker_uri: https://github.com/omniauth/omniauth-identity/issues
|
252
|
+
documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.2
|
253
|
+
wiki_uri: https://github.com/omniauth/omniauth-identity/wiki
|
254
|
+
funding_uri: https://liberapay.com/pboling
|
255
|
+
news_uri: https://www.railsbling.com/tags/omniauth-identity
|
256
|
+
rubygems_mfa_required: 'true'
|
257
|
+
rdoc_options:
|
258
|
+
- "--title"
|
259
|
+
- omniauth-identity - Traditional username/password based authentication system for
|
260
|
+
OmniAuth
|
261
|
+
- "--main"
|
262
|
+
- README.md
|
263
|
+
- "--line-numbers"
|
264
|
+
- "--inline-source"
|
265
|
+
- "--quiet"
|
242
266
|
require_paths:
|
243
267
|
- lib
|
244
268
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -252,8 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
252
276
|
- !ruby/object:Gem::Version
|
253
277
|
version: '0'
|
254
278
|
requirements: []
|
255
|
-
rubygems_version: 3.
|
256
|
-
signing_key:
|
279
|
+
rubygems_version: 3.6.2
|
257
280
|
specification_version: 4
|
258
|
-
summary:
|
281
|
+
summary: Traditional username/password based authentication system for OmniAuth
|
259
282
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|