omniauth-identity 3.1.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2a7eb266545d5ae300646af12c8557a414f49872f05850793ebd1c7b2cc17ca
4
- data.tar.gz: 44b4dabec7425f586b1e9b731ea5a14b08902f7c782a360a3bb3ff9c829fa041
3
+ metadata.gz: 4ae1d22cc4863db6f745452cb551a3d6ce42f61ee3573b8c4318e9c7ad10aa77
4
+ data.tar.gz: 0acd4989302fbaa277ccebb366b12565b8abd5c9b841e7d66ba78245cf3d8c6d
5
5
  SHA512:
6
- metadata.gz: ba1eafc9b744438b11dc71db4c8b8e8ec731568413f8dc461fa08df0956903015976669e66ce0402b064259a675db06f325548a54c86a3197f77bee4d1b4d438
7
- data.tar.gz: 73e8367e8cb0fe207214cc8fbca53bbe800a76d4770ac0ef4f6b650eab2c2534ea28eb7371efa7537160c89a21d3812c37e6c4c39d4dce91caa826a87cb4518f
6
+ metadata.gz: f86bb181b29d85553c77d2ef84a6cf9a05b3c0e6fe52c561de4941fea006593f17022297bc221386f8d0267746647a358e568fd73a8edb4f33b55e1ab226002d
7
+ data.tar.gz: c0db17c9b14a11a98691e9ffb055487dc8c931d2622605c207d96422a1c0b701433d5fb22a4a1974c2bce0929ceebd5f46f16eec80f6ec7c522ae18cac67ed8a
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -11,6 +11,20 @@ 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
+
14
28
  ## [3.1.1] - 2024-11-18 ([tag][3.1.1t])
15
29
  - COVERAGE: 92.00% -- 345/375 lines in 15 files
16
30
  - BRANCH COVERAGE: 80.26% -- 61/76 branches in 15 files
@@ -162,7 +176,9 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
162
176
  - Gemfile.lock file
163
177
  - MongoMapper support; unable to satisfy dependencies of both MongoMapper and Mongoid now that MongoMapper is no longer actively maintained.
164
178
 
165
- [Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.1.1...HEAD
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
166
182
  [3.1.1]: https://github.com/omniauth/omniauth-identity/compare/v3.1.0...v3.1.1
167
183
  [3.1.1t]: https://github.com/omniauth/omniauth-identity/tags/v3.1.1
168
184
  [3.1.0]: https://github.com/omniauth/omniauth-identity/compare/v3.0.9...v3.1.0
data/CONTRIBUTING.md CHANGED
@@ -7,6 +7,8 @@ the [code of conduct][🤝conduct].
7
7
  To submit a patch, please fork the project and create a patch with tests.
8
8
  Once you're happy with it send a pull request.
9
9
 
10
+ We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
11
+
10
12
  ## You can help!
11
13
 
12
14
  Take a look at the `reek` list which is the file called `REEK` and find something to improve.
@@ -21,28 +23,31 @@ Simply follow these instructions:
21
23
  6. Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
22
24
  7. Create new Pull Request.
23
25
 
24
- ## Contributors
26
+ ## Appraisals
25
27
 
26
- Your picture could be here!
28
+ From time to time the appraisal gemfiles in `gemfiles/` will need to be updated.
29
+ They are created and updated with the commands:
27
30
 
28
- [![Contributors][🖐contributors-img]][🖐contributors]
31
+ NOTE: We run on a [fork][🚎appraisal-fork] of Appraisal.
29
32
 
30
- Made with [contributors-img][🖐contrib-rocks].
33
+ Please upvote the PR for `eval_gemfile` [support][🚎appraisal-eval-gemfile-pr]
31
34
 
32
- ## The Reek List
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
+ ```
33
40
 
34
- To refresh the `reek` list:
41
+ When adding an appraisal to CI check the [runner tool cache][🏃‍♂️runner-tool-cache] to see which runner to use.
35
42
 
36
- ```bash
37
- bundle exec reek > REEK
38
- ```
43
+ ## The Reek List
39
44
 
40
- ## Appraisal & Combustion
45
+ Take a look at the `reek` list which is the file called `REEK` and find something to improve.
41
46
 
42
- ### Generate a new set of Appraisal gemfiles:
47
+ To refresh the `reek` list:
43
48
 
44
49
  ```bash
45
- BUNDLE_GEMFILE=Appraisal.root.gemfile appraisal update
50
+ bundle exec reek > REEK
46
51
  ```
47
52
 
48
53
  ## Run Tests
@@ -86,7 +91,7 @@ To run all tests on all databases (except RethinkDB):
86
91
  bundle exec rake spec:orm:all
87
92
  ```
88
93
 
89
- To run all tests that do not require any additional services, like MongoDB, CouchDB, or RethinkDB:
94
+ To run all tests that do not require any additional services, i.e. excluding MongoDB, CouchDB, & RethinkDB:
90
95
  ```bash
91
96
  bundle exec rake test
92
97
  ```
@@ -118,41 +123,56 @@ bundle exec rake
118
123
  ```
119
124
 
120
125
  Or just run the linter.
126
+
121
127
  ```bash
122
- bundle exec rubocop_gradual:autocorrect
128
+ bundle exec rake rubocop_gradual:autocorrect
123
129
  ```
124
130
 
125
- ## Release
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
126
140
 
127
141
  ### One-time, Per-maintainer, Setup
128
142
 
129
- **IMPORTANT**: Your public key for signing gems will need to be picked up by the line in the
130
- `gemspec` defining the `spec.cert_chain` (check the relevant ENV variables there),
131
- in order to sign the new release.
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.
132
147
  See: [RubyGems Security Guide][🔒️rubygems-security-guide]
133
148
 
149
+ NOTE: To build without signing the gem you must set `SKIP_GEM_SIGNING` to some value in your environment.
150
+
134
151
  ### To release a new version:
135
152
 
136
153
  1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check
137
- 2. Update the version number in `version.rb`
154
+ 2. Update the version number in `version.rb`, and ensure `CHANGELOG.md` reflects changes
138
155
  3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
139
156
  4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
140
157
  5. Run `git push` to trigger the final CI pipeline before release, & merge PRs
141
- - NOTE: Remember to [check the build][🧪build]!
158
+ - NOTE: Remember to [check the build][🧪build]!
142
159
  6. Run `export GIT_TRUNK_BRANCH_NAME="$(git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5)" && echo $GIT_TRUNK_BRANCH_NAME`
143
160
  7. Run `git checkout $GIT_TRUNK_BRANCH_NAME`
144
161
  8. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure you will release the latest trunk code
145
162
  9. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp, and generate same checksums
146
- - Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
147
- - If the echo above has no output, then it didn't work.
148
- - Note that you'll need the `zsh/datetime` module, if running `zsh`.
149
- - In `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
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`
150
167
  10. Run `bundle exec rake build`
151
- 11. Run `bin/checksums` (more [context][🔒️rubygems-checksums-pr]) to create SHA-256 and SHA-512 checksums
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].
152
171
  - Checksums will be committed automatically by the script, but not pushed
153
172
  12. Run `bundle exec rake release` which will create a git tag for the version,
154
173
  push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
155
174
 
175
+ [🚎src-main]: https://github.com/omniauth/omniauth-identity
156
176
  [🧪build]: https://github.com/omniauth/omniauth-identity/actions
157
177
  [🤝conduct]: https://github.com/omniauth/omniauth-identity/blob/main/CODE_OF_CONDUCT.md
158
178
  [🖐contrib-rocks]: https://contrib.rocks
@@ -160,5 +180,13 @@ See: [RubyGems Security Guide][🔒️rubygems-security-guide]
160
180
  [🖐contributors-img]: https://contrib.rocks/image?repo=omniauth/omniauth-identity
161
181
  [💎rubygems]: https://rubygems.org
162
182
  [🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
163
- [🔒️rubygems-checksums-pr]: https://github.com/rubygems/guides/pull/325
164
- [🚎src-main]: https://github.com/omniauth/omniauth-identity
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.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021, 2024 Peter H. Boling, and OmniAuth-Identity Maintainers
3
+ Copyright (c) 2021, 2024 - 2025 Peter H. Boling, and OmniAuth::Identity Contributors
4
4
  Copyright (c) 2020 Peter H. Boling, Andrew Roberts, and Jellybooks Ltd.
5
5
  Copyright (c) 2010-2015 Michael Bleigh, and Intridea, Inc.
6
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][🔑cc-covi♻️]][🔑cc-cov]
10
- [![Maintainability][🔑cc-mnti♻️]][🔑cc-mnt]
11
- [![CI Supported Build][🚎6-s-wfi]][🚎6-s-wf]
12
- [![CI Legacy Build][🚎4-lg-wfi]][🚎4-lg-wf]
13
- [![CI Unsupported Build][🚎7-us-wfi]][🚎7-us-wf]
14
- [![CI Heads Build][🚎3-hd-wfi]][🚎3-hd-wf]
15
- [![CI Ancient Build][🚎1-an-wfi]][🚎1-an-wf]
16
- [![CI Coverage Build][🚎2-cov-wfi]][🚎2-cov-wf]
17
- [![CI Style Build][🚎5-st-wfi]][🚎5-st-wf]
18
-
19
- <!--- ( 👽️ INFO LINKS ) -->
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
- [![Polar Shield][🖇polar-img]][🖇polar]
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
- [⛳liberapay-img]: https://img.shields.io/liberapay/patrons/pboling.svg?logo=liberapay
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
- | Primary Namespace | `OmniAuth::Identity` |
82
- |-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
83
- | documentation | [on Github.com][homepage], [Latest release on RubyDoc.info][documentation], [HEAD on RubyDoc.info][documentation-head] |
84
- | expert support | [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/peterboling?utm_source=github&utm_medium=button&utm_term=peterboling&utm_campaign=github) |
85
- | `...` 💖 | [![Follow Me on LinkedIn][🖇linkedin-img]][🖇linkedin] [![Find Me on WellFound:][✌️wellfound-img]][✌️wellfound] [![Find Me on CrunchBase][💲crunchbase-img]][💲crunchbase] [![My LinkTree][🌳linktree-img]][🌳linktree] [![Follow Me on Ruby.Social][🐘ruby-mast-img]][🐘ruby-mast] [![Tweet @ Peter][🐦tweet-img]][🐦tweet] [💻][coderme] [🌏][aboutme] |
86
-
87
- <!--- 7️⃣ spread 💖 -->
88
- [🐦tweet-img]: https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow%20%40galtzo
89
- [🐦tweet]: http://twitter.com/galtzo
90
- [🚎blog]: http://www.railsbling.com/tags/omniauth-identity/
91
- [🚎blog-img]: https://img.shields.io/badge/blog-railsbling-brightgreen.svg?style=flat
92
- [🖇linkedin]: http://www.linkedin.com/in/peterboling
93
- [🖇linkedin-img]: https://img.shields.io/badge/PeterBoling-blue?style=plastic&logo=linkedin
94
- [✌️wellfound]: https://angel.co/u/peter-boling
95
- [✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=plastic&logo=wellfound
96
- [💲crunchbase]: https://www.crunchbase.com/person/peter-boling
97
- [💲crunchbase-img]: https://img.shields.io/badge/peter--boling-purple?style=plastic&logo=crunchbase
98
- [🐘ruby-mast]: https://ruby.social/@galtzo
99
- [🐘ruby-mast-img]: https://img.shields.io/mastodon/follow/109447111526622197?domain=https%3A%2F%2Fruby.social&style=plastic&logo=mastodon&label=Ruby%20%40galtzo
100
- [🌳linktree]: https://linktr.ee/galtzo
101
- [🌳linktree-img]: https://img.shields.io/badge/galtzo-purple?style=plastic&logo=linktree
102
-
103
- <!--- Maintainer Contact Links -->
104
- [aboutme]: https://about.me/peter.boling
105
- [coderme]: https://coderwall.com/Peter%20Boling
106
-
107
- ## Installation
108
-
109
- To acquire the latest release from RubyGems, and add this gem to your `Gemfile`, run:
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
- bundle add omniauth-identity
69
+ gem cert --add <(curl -Ls https://raw.github.com/omniauth/omniauth-identity/main/certs/pboling.pem)
113
70
  ```
114
71
 
115
- If the git repository has new commits not yet in an official release, simply specify the repo instead:
72
+ You only need to do that once. Then proceed to install with:
116
73
 
117
- ```ruby
118
- gem "omniauth-identity", git: "https://github.com/omniauth/omniauth-identity.git"
74
+ ```shell
75
+ gem install omniauth-identity -P MediumSecurity
119
76
  ```
120
77
 
121
- ## Compatibility
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
- This gem is compatible with a wide range of Ruby versions and Ruby ORMs, as of Nov 2024, version 3.1.
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 Ruby 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, ruby-head, truffleruby-head
127
- * Probably also compatible with Ruby 2.4 and jruby-head
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, SQLite3 | [ActiveRecord](https://guides.rubyonrails.org/active_record_basics.html) |
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, Mysql2, ODBC, Oracle, PostgreSQL, SQLAnywhere, SQLite3, and TinyTDS | [Sequel](http://sequel.jeremyevans.net) |
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 a email/password authentication would look something like this:
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, #mandatory: tells OA that the Identity strategy is being used
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 of the fields you are using.
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
- ## Customizing Registration Failure
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
- ## Customizing Locate Conditions
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
- ## Customizing Other Things
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
- Also, see [CONTRIBUTING.md][🤝contributing].
353
+ We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
374
354
 
375
- [🤝issues]: https://github.com/omniauth/omniauth-identity/issues
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
- [🔑codecov-g]: https://codecov.io/gh/omniauth/omniauth-identity/graphs/tree.svg?token=cc6UdZCpAL
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
- [🖐contrib-rocks]: https://contrib.rocks
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, you can (and should) specify a dependency on these libraries using
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
- * Copyright (c) 2021, 2024 [Peter H. Boling][peterboling], and OmniAuth-Identity Maintainers
459
- * Copyright (c) 2020 [Peter H. Boling][peterboling], Andrew Roberts, and Jellybooks Ltd.
460
- * Copyright (c) 2010-2015 Michael Bleigh, and Intridea, Inc.
461
-
462
- [railsbling]: http://www.railsbling.com
463
- [peterboling]: http://www.peterboling.com
464
- [bundle-group-pattern]: https://gist.github.com/pboling/4564780
465
- [documentation]: http://rubydoc.info/gems/omniauth-identity
466
- [documentation-head]: https://rubydoc.info/github/omniauth/omniauth-identity/main
467
- [homepage]: https://github.com/omniauth/omniauth-identity
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 CHANGED
@@ -10,11 +10,13 @@
10
10
  | 1.x | ❌ |
11
11
  | 0.x | ❌ |
12
12
 
13
- ## Reporting a Vulnerability
13
+ ## Security contact information
14
14
 
15
- Peter Boling is the primary maintainer of this gem. Please find a way
16
- to [contact him directly](https://railsbling.com/contact) to report the issue. Include as much relevant information as
17
- possible.
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
18
20
 
19
21
  If you are interested in support for versions older than the latest release,
20
22
  please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
@@ -3,7 +3,7 @@
3
3
  module OmniAuth
4
4
  module Identity
5
5
  module Version
6
- VERSION = "3.1.1"
6
+ VERSION = "3.1.2"
7
7
  end
8
8
  end
9
9
  end
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.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
- A2NvbTAeFw0yNDA5MjAwODU4NDJaFw0yNTA5MjAwODU4NDJaMEMxFTATBgNVBAMM
16
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
18
17
  DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
19
- LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAjrxsKObI
20
- rFQjBpzvVfqnT6JlF8/pkpgEEjFh7ex3zIerfuHzZvSrx+sRDGxQ8koWWG0Wjx8s
21
- wkBZ5dIqvl0g3sWP5asa28u/09opxkQTC1Ao77iYxcBcwoCe/Dpf1m4Q/m6oH0kL
22
- 2AZVNJQL3UkqAcLS0tsj/s/jAKnVlsaZZE5gQiIIi8HtkvSsajtx+Cq2AxDvcWvV
23
- /CliD+pmzYkTjvjwGm8yeyFGGGgrisJMryiZdZlkTwrQSjCzudIKbLeuG8Se4JTD
24
- TAcT+rPubr27v1jwmtIjtiot3rf4nof7LHLb122a/0VR7cC7xPLnXw0Cq1BShvoq
25
- /GKRdSwMNinTOGkFTK1gKnjN+3iD4zyXU3XO3CXoTr+Ju8fXPN1x4tpOMgbv8dme
26
- WbcQMOH9ZjmA5w0bSVRL1c3NhRRpUzrKTNXBEvqOyWjUnintxWKj+cRXx+z+dUgI
27
- dL3kj68fcsiTgl75In3C485pnCMmq1eLuVoiy3jkLNOn2lHeLt9ZK63LAgMBAAGj
28
- fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRhfc+2UaVYd74p
29
- yJ1JclGiUYN8+jAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
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
- ggGBAA4fLU2+mQ++jBhVM2IeyvQdw1nm+0thkH4Ldv8ZOBm5ZxCPGIMoYliDDzg4
32
- 4JDFxZR1wR4sdrz/K5tWtEkN23SKzopwbNb1NIQRSLQ7nOoc+4bkuz9xwKinmIvF
33
- D+5qsl2S27WLKFreMDtGoh0CREIMBUxU4rGTh0gtzmweGR+fnOShg4Jo0kxrjU5h
34
- uYk/uVE+bn/jOEGs43GvKXZLyshpBrZjQ+ArbvxDht5t35zbSxerbUxUPZUbXUCW
35
- tTyh38a9UYjAAHvnh6Y4Fi9wd4/pGNsektrzB3z/zlVj4YF2TMLX9XfNJWEGRGpO
36
- sSkLYdtEX1WQAmuZtActVW2cL3HdQaRbiv7VbfpA0eSk0ZdZHvBCl516ZZu10uX6
37
- 82W1mg6fuezdpeBOiXwrEbZSt/oGiF4V511F6nd55p0okwHc/6nS10F/3aKJ4gwC
38
- I5o+DRfXQHqKucx1ldFHvI2rE/kSCWqGTHN2eyu1sqCPeOoIMxrltJhaejKPkxqj
39
- zaF9Og==
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: 2024-11-18 00:00:00.000000000 Z
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.4
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.4
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,25 +198,31 @@ dependencies:
199
198
  - !ruby/object:Gem::Version
200
199
  version: 1.0.6
201
200
  - !ruby/object:Gem::Dependency
202
- name: sqlite3
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:
217
216
  - peter.boling@gmail.com
218
217
  executables: []
219
218
  extensions: []
220
- 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
221
226
  files:
222
227
  - CHANGELOG.md
223
228
  - CODE_OF_CONDUCT.md
@@ -241,15 +246,23 @@ licenses:
241
246
  - MIT
242
247
  metadata:
243
248
  homepage_uri: https://railsbling.com/tags/omniauth-identity/
244
- source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.1.1
245
- changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.1.1/CHANGELOG.md
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
246
251
  bug_tracker_uri: https://github.com/omniauth/omniauth-identity/issues
247
- documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.1
252
+ documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.2
248
253
  wiki_uri: https://github.com/omniauth/omniauth-identity/wiki
249
254
  funding_uri: https://liberapay.com/pboling
255
+ news_uri: https://www.railsbling.com/tags/omniauth-identity
250
256
  rubygems_mfa_required: 'true'
251
- post_install_message:
252
- rdoc_options: []
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"
253
266
  require_paths:
254
267
  - lib
255
268
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -263,8 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
263
276
  - !ruby/object:Gem::Version
264
277
  version: '0'
265
278
  requirements: []
266
- rubygems_version: 3.5.23
267
- signing_key:
279
+ rubygems_version: 3.6.2
268
280
  specification_version: 4
269
- summary: ''
281
+ summary: Traditional username/password based authentication system for OmniAuth
270
282
  test_files: []
metadata.gz.sig CHANGED
Binary file