rack-openid2 2.0.1 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02d676ac90d3409abe2dc71e6f7e4d3349a2efcfb74e37e4678751f2b14d101b
4
- data.tar.gz: ef608189c2bd772ecf20d4d05d6f42f17c9e4896d00615e461c208e4d6dd5278
3
+ metadata.gz: 1e6decdc17dae33eda992806aedf37a0ea1b8993d78544bbec877f9602a7e7f1
4
+ data.tar.gz: 44b9a60ba3685204637c69e9f739e53e695491345130d6ac3b03ce5036cd54e8
5
5
  SHA512:
6
- metadata.gz: 19d52facb3c448d8ab278fa3017ebb11ac5e36701f379396e194404a49cc4029b7ef871dc21f73f2bba5facff7e968be8ca6936d581102a3f50d6401fab7f448
7
- data.tar.gz: 6d46b48c9a32e2b5fc658ee5c9def85200e95a2b080887f5b137b97cac9714f60415c572c948ac3c92aa20df36a34cc40039a221492ca30498864c27f2a68907
6
+ metadata.gz: 595d411224497eb9cb767d7534b731fc68a38f91f19efa0f7f9421569968e9dc99ffc6b58f02439160f2258eee5d1a7d1506e53d9bc82ab2144c676522d5f2a2
7
+ data.tar.gz: c9897d6330bb6edf0974712cb3ee3ec6f6706eedba95aacddfa73dee0fc87773b8be46d920d7006afbbd50f5388d7d5262eaad034ec5bbaf6c0217265fe72fea
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -10,6 +10,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Fixed
11
11
  ### Removed
12
12
 
13
+ ## 2.0.3 - 2024-09-25
14
+ - COVERAGE: 97.72% -- 214/219 lines in 4 files
15
+ - BRANCH COVERAGE: 86.00% -- 43/50 branches in 4 files
16
+ - 39.13% documented
17
+ ### Added
18
+ - Improved Documentation
19
+ ### Fixed
20
+ - Documentation typos
21
+ - Documentation in Yard (on RubyDoc.info)
22
+
23
+ ## 2.0.2 - 2024-09-25
24
+ - COVERAGE: 97.72% -- 214/219 lines in 4 files
25
+ - BRANCH COVERAGE: 86.00% -- 43/50 branches in 4 files
26
+ - 39.13% documented
27
+ ### Added
28
+ - Improved integration with direnv for development
29
+ - Better test coverage
30
+ - More tests
31
+ - rots v1.0.0 for tests
32
+ ### Changed
33
+ - Upgraded to ruby-openid2 v3.1.0
34
+ - Moved to oauth-xx organization
35
+
13
36
  ## 2.0.1 - 2024-09-05
14
37
  ### Added
15
38
  - CHANGELOG.md
data/CONTRIBUTING.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Contributing
2
2
 
3
- Bug reports and pull requests are welcome on GitHub at [https://github.com/VitalConnectInc/rack-openid2][🚎src-main]
3
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/oauth-xx/rack-openid2][🚎src-main]
4
4
  . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
5
5
  the [code of conduct][🤝conduct].
6
6
 
@@ -33,7 +33,7 @@ See: [RubyGems Security Guide][🔒️rubygems-security-guide]
33
33
  - Note that you'll need the `zsh/datetime` module, if running `zsh`.
34
34
  - In `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
35
35
  10. Run `bundle exec rake build`
36
- 11. Run [`bin/checksums`][🔒️rubygems-checksums-pr] to create SHA-256 and SHA-512 checksums
36
+ 11. Run `bin/checksums` (more [context][🔒️rubygems-checksums-pr]) to create SHA-256 and SHA-512 checksums
37
37
  - Checksums will be committed automatically by the script, but not pushed
38
38
  12. Run `bundle exec rake release` which will create a git tag for the version,
39
39
  push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
@@ -44,12 +44,12 @@ See: [RubyGems Security Guide][🔒️rubygems-security-guide]
44
44
 
45
45
  Made with [contributors-img][🖐contrib-rocks].
46
46
 
47
- [🧪build]: https://github.com/VitalConnectInc/rack-openid2/actions
48
- [🤝conduct]: https://github.com/VitalConnectInc/rack-openid2/blob/main/CODE_OF_CONDUCT.md
47
+ [🧪build]: https://github.com/oauth-xx/rack-openid2/actions
48
+ [🤝conduct]: https://github.com/oauth-xx/rack-openid2/blob/main/CODE_OF_CONDUCT.md
49
49
  [🖐contrib-rocks]: https://contrib.rocks
50
- [🖐contributors]: https://github.com/VitalConnectInc/rack-openid2/graphs/contributors
51
- [🖐contributors-img]: https://contrib.rocks/image?repo=VitalConnectInc/rack-openid2
50
+ [🖐contributors]: https://github.com/oauth-xx/rack-openid2/graphs/contributors
51
+ [🖐contributors-img]: https://contrib.rocks/image?repo=oauth-xx/rack-openid2
52
52
  [💎rubygems]: https://rubygems.org
53
53
  [🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
54
54
  [🔒️rubygems-checksums-pr]: https://github.com/rubygems/guides/pull/325
55
- [🚎src-main]: https://github.com/VitalConnectInc/rack-openid2
55
+ [🚎src-main]: https://github.com/oauth-xx/rack-openid2
data/README.md CHANGED
@@ -1,28 +1,57 @@
1
1
  # Rack::OpenID
2
2
 
3
- <div id="badges">
4
-
3
+ [![Version](https://img.shields.io/gem/v/rack-openid2.svg)](https://rubygems.org/gems/rack-openid2)
4
+ [![Downloads Today](https://img.shields.io/gem/rd/rack-openid2.svg)](https://github.com/oauth-xx/rack-openid2)
5
5
  [![CI Supported Build][🚎s-wfi]][🚎s-wf]
6
6
  [![CI Unsupported Build][🚎us-wfi]][🚎us-wf]
7
7
  [![CI Style Build][🚎st-wfi]][🚎st-wf]
8
8
  [![CI Coverage Build][🚎cov-wfi]][🚎cov-wf]
9
9
  [![CI Heads Build][🚎hd-wfi]][🚎hd-wf]
10
10
 
11
- [🚎s-wf]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/supported.yml
12
- [🚎s-wfi]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/supported.yml/badge.svg
13
- [🚎us-wf]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/unsupported.yml
14
- [🚎us-wfi]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/unsupported.yml/badge.svg
15
- [🚎st-wf]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/style.yml
16
- [🚎st-wfi]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/style.yml/badge.svg
17
- [🚎cov-wf]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/coverage.yml
18
- [🚎cov-wfi]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/coverage.yml/badge.svg
19
- [🚎hd-wf]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/heads.yml
20
- [🚎hd-wfi]: https://github.com/VitalConnectInc/rack-openid2/actions/workflows/heads.yml/badge.svg
21
-
22
- </div>
11
+ -----
12
+
13
+ [![Liberapay Patrons][⛳liberapay-img]][⛳liberapay]
14
+ [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor]
15
+ [![Polar Shield][🖇polar-img]][🖇polar]
16
+ [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
17
+ [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
18
+
19
+ [🚎s-wf]: https://github.com/oauth-xx/rack-openid2/actions/workflows/supported.yml
20
+ [🚎s-wfi]: https://github.com/oauth-xx/rack-openid2/actions/workflows/supported.yml/badge.svg
21
+ [🚎us-wf]: https://github.com/oauth-xx/rack-openid2/actions/workflows/unsupported.yml
22
+ [🚎us-wfi]: https://github.com/oauth-xx/rack-openid2/actions/workflows/unsupported.yml/badge.svg
23
+ [🚎st-wf]: https://github.com/oauth-xx/rack-openid2/actions/workflows/style.yml
24
+ [🚎st-wfi]: https://github.com/oauth-xx/rack-openid2/actions/workflows/style.yml/badge.svg
25
+ [🚎cov-wf]: https://github.com/oauth-xx/rack-openid2/actions/workflows/coverage.yml
26
+ [🚎cov-wfi]: https://github.com/oauth-xx/rack-openid2/actions/workflows/coverage.yml/badge.svg
27
+ [🚎hd-wf]: https://github.com/oauth-xx/rack-openid2/actions/workflows/heads.yml
28
+ [🚎hd-wfi]: https://github.com/oauth-xx/rack-openid2/actions/workflows/heads.yml/badge.svg
29
+
30
+ [⛳liberapay-img]: https://img.shields.io/liberapay/patrons/pboling.svg?logo=liberapay
31
+ [⛳liberapay]: https://liberapay.com/pboling/donate
32
+ [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
33
+ [🖇sponsor]: https://github.com/sponsors/pboling
34
+ [🖇polar-img]: https://polar.sh/embed/seeks-funding-shield.svg?org=pboling
35
+ [🖇polar]: https://polar.sh/pboling
36
+ [🖇kofi-img]: https://img.shields.io/badge/buy%20me%20coffee-donate-yellow.svg
37
+ [🖇kofi]: https://ko-fi.com/O5O86SNP4
38
+ [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
39
+ [🖇patreon]: https://patreon.com/galtzo
40
+ [🖇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
41
+ [🖇buyme]: https://www.buymeacoffee.com/pboling
23
42
 
24
43
  Provides a more HTTPish API around the ruby-openid library.
25
44
 
45
+ ## Installation
46
+
47
+ Install the gem and add to the application's Gemfile by executing:
48
+
49
+ $ bundle add rack-openid2
50
+
51
+ If bundler is not being used to manage dependencies, install the gem by executing:
52
+
53
+ $ gem install rack-openid2
54
+
26
55
  ## Usage
27
56
 
28
57
  You trigger an OpenID request similar to HTTP authentication. From your app, return a "401 Unauthorized" and a "WWW-Authenticate" header with the identifier you would like to validate.
@@ -94,6 +123,38 @@ __END__
94
123
  </form>
95
124
  ```
96
125
 
126
+ ## General Info
127
+
128
+ | Primary Namespace | `Rack::OpenID` |
129
+ |-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
130
+ | gem name | [ruby-openid2](https://rubygems.org/gems/rack-openid2) |
131
+ | code triage | [![Open Source Helpers](https://www.codetriage.com/oauth-xx/rack-openid2/badges/users.svg)](https://www.codetriage.com/oauth-xx/rack-openid2) |
132
+ | documentation | [on Github.com][homepage], [on rubydoc.info][documentation] |
133
+ | 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) |
134
+ | `...` 💖 | [![Liberapay Patrons][⛳liberapay-img]][⛳liberapay] [![Sponsor Me][🖇sponsor-img]][🖇sponsor] [![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] |
135
+
136
+ <!-- 7️⃣ spread 💖 -->
137
+ [🐦tweet-img]: https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow%20%40galtzo
138
+ [🐦tweet]: http://twitter.com/galtzo
139
+ [🚎blog]: http://www.railsbling.com/tags/rack-openid2/
140
+ [🚎blog-img]: https://img.shields.io/badge/blog-railsbling-brightgreen.svg?style=flat
141
+ [🖇linkedin]: http://www.linkedin.com/in/peterboling
142
+ [🖇linkedin-img]: https://img.shields.io/badge/PeterBoling-blue?style=plastic&logo=linkedin
143
+ [✌️wellfound]: https://angel.co/u/peter-boling
144
+ [✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=plastic&logo=wellfound
145
+ [💲crunchbase]: https://www.crunchbase.com/person/peter-boling
146
+ [💲crunchbase-img]: https://img.shields.io/badge/peter--boling-purple?style=plastic&logo=crunchbase
147
+ [🐘ruby-mast]: https://ruby.social/@galtzo
148
+ [🐘ruby-mast-img]: https://img.shields.io/mastodon/follow/109447111526622197?domain=https%3A%2F%2Fruby.social&style=plastic&logo=mastodon&label=Ruby%20%40galtzo
149
+ [🌳linktree]: https://linktr.ee/galtzo
150
+ [🌳linktree-img]: https://img.shields.io/badge/galtzo-purple?style=plastic&logo=linktree
151
+ [documentation]: https://rubydoc.info/github/oauth-xx/rack-openid2
152
+ [homepage]: https://github.com/oauth-xx/rack-openid2
153
+
154
+ <!-- Maintainer Contact Links -->
155
+ [aboutme]: https://about.me/peter.boling
156
+ [coderme]: https://coderwall.com/Peter%20Boling
157
+
97
158
  ## TODO
98
159
 
99
160
  - 1 failing test (skipped)
@@ -119,8 +180,46 @@ and contributors to original `rack-openid`:
119
180
  Made with [contributors-img][🖐contrib-rocks].
120
181
 
121
182
  [🖐contrib-rocks]: https://contrib.rocks
122
- [🖐contributors]: https://github.com/VitalConnectInc/rack-openid2/graphs/contributors
123
- [🖐contributors-img]: https://contrib.rocks/image?repo=VitalConnectInc/rack-openid2
183
+ [🖐contributors]: https://github.com/oauth-xx/rack-openid2/graphs/contributors
184
+ [🖐contributors-img]: https://contrib.rocks/image?repo=oauth-xx/rack-openid2
185
+
186
+ ## 🪇 Code of Conduct
187
+
188
+ Everyone interacting in this project's codebases, issue trackers,
189
+ chat rooms and mailing lists is expected to follow the [code of conduct][🪇conduct].
190
+
191
+ [🪇conduct]: CODE_OF_CONDUCT.md
192
+
193
+ ## 📌 Versioning
194
+
195
+ This Library adheres to [Semantic Versioning 2.0.0][📌semver].
196
+ Violations of this scheme should be reported as bugs.
197
+ Specifically, if a minor or patch version is released that breaks backward compatibility,
198
+ a new version should be immediately released that restores compatibility.
199
+ Breaking changes to the public API will only be introduced with new major versions.
200
+
201
+ To get a better understanding of how SemVer is intended to work over a project's lifetime,
202
+ read this article from the creator of SemVer:
203
+
204
+ - ["Major Version Numbers are Not Sacred"][📌major-versions-not-sacred]
205
+
206
+ As a result of this policy, you can (and should) specify a dependency on these libraries using
207
+ the [Pessimistic Version Constraint][📌pvc] with two digits of precision.
208
+
209
+ For example:
210
+
211
+ ```ruby
212
+ spec.add_dependency("rack-openid2", "~> 2.0")
213
+ ```
214
+
215
+ See [CHANGELOG.md][📌changelog] for list of releases.
216
+
217
+ [comment]: <> ( 📌 VERSIONING LINKS )
218
+
219
+ [📌pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
220
+ [📌semver]: http://semver.org/
221
+ [📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
222
+ [📌changelog]: CHANGELOG.md
124
223
 
125
224
  ## 📄 License
126
225
 
@@ -135,3 +234,7 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright
135
234
  [📄license]: LICENSE.txt
136
235
  [📄license-ref]: https://opensource.org/licenses/MIT
137
236
  [📄license-img]: https://img.shields.io/badge/License-MIT-green.svg
237
+
238
+ You made it to the bottom of the page!
239
+
240
+ [![Buy me a latte][🖇buyme-img]][🖇buyme]
@@ -54,7 +54,7 @@ module Rack
54
54
  end
55
55
 
56
56
  def successful_response?(env)
57
- if (resp = env[OpenID::RESPONSE])
57
+ if (resp = env[Rack::OpenID::RESPONSE])
58
58
  resp.status == :success && resp.display_identifier == identifier
59
59
  end
60
60
  end
@@ -1,7 +1,7 @@
1
1
  module Rack
2
2
  class OpenID
3
3
  module Version
4
- VERSION = "2.0.1"
4
+ VERSION = "2.0.3"
5
5
  end
6
6
  end
7
7
  end
@@ -0,0 +1,2 @@
1
+ # For loading by bundler
2
+ require_relative "rack/openid"
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-openid2
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -14,31 +14,31 @@ cert_chain:
14
14
  -----BEGIN CERTIFICATE-----
15
15
  MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
16
16
  ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
17
- A2NvbTAeFw0yMzA5MjAxNzMwMjhaFw0yNDA5MTkxNzMwMjhaMEMxFTATBgNVBAMM
17
+ A2NvbTAeFw0yNDA5MjAwODU4NDJaFw0yNTA5MjAwODU4NDJaMEMxFTATBgNVBAMM
18
18
  DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
19
- LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA+a9UvHo3
20
- 84k96WgU5Kk5HB+cLZs/modjorsTfqY67MJF5nNvAoqcKTUBW4uG+Zpfnm3jaDO5
21
- GxhJEIZWfndYzycHT2KMVQ1uTP82ba8ZaKrPlPIafkbui3mdds47qsmqHiblKERg
22
- U532lkwfqHDlJwE7OBZQ59EwWWLynlT/yAUHpOBbqIuHKUxdpmBI+sIjrZcD1e05
23
- WmjkO6fwIdC5oM757aoPxIgXD587VOViH11Vkm2doskj4T8yONtwVHlcrrhJ9Bzd
24
- /zdp6vEn7GZQrABvpOlqwWxQ72ZnFhJe/RJZf6CXOPOh69Ai0QKYl2a1sYuCJKS3
25
- nsBnxXJINEEznjR7rZjNUmYD+CZqfjzgPqedRxTlASe7iA4w7xZOqMDzcuhNwcUQ
26
- tMEH6BTktxKP3jXZPXRfHCf6s+HRVb6vezAonTBVyydf5Xp5VwWkd6cwm+2BzHl5
27
- 7kc/3lLxKMcsyEUprAsk8LdHohwZdC267l+RS++AP6Cz6x+nB3oGob19AgMBAAGj
28
- fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQCSSas60GqqMjt
29
- xR7LoY1gucEvtzAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
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
30
30
  A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
31
- ggGBAMl9ifcw5p+PdvB7dCPoNKoVdp/2LbC9ztETHuYL2gUMJB6UoS3o9c/piSuR
32
- V3ZMQaijmNu6ms1bWAtJ66LjmYrVflJtf9yp31Kierr9LpisMSUx2qbMOHGa8d2Z
33
- vCUWPF8E9Cg0mP3GAyZ6qql8jDh/anUKeksPXqJvNxNPDu2DVYsa/IWdl96whzS4
34
- Bl7SwB1E7agps40UcshCSKaVDOU0M+XN6SrnJMElnBic+KSAkBkVFbzS0BE4ODZM
35
- BgE6nYzQ05qhuvbE+oGdACTlemNtDDWCh0uw+7x0q2PocGIDU5zsPn/WNTkCXPmB
36
- CHGvqDNWq4M7ncTKAaS2XExgyb7uPdq9fKiOW8nmH+zCiGzJXzBWwZlKf7L4Ht9E
37
- a3f0e5C+zvee9Z5Ng9ciyfav9/fcXgYt5MjoBv27THr5XfBhgOCIHSYW2tqJmWKi
38
- KuxrfYrN+9HvMdm+nZ6TypmKftHY3Gj+/uu+g8Icm/zrvTWAEE0mcJOkfrIoNPJb
39
- pF8dMA==
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==
40
40
  -----END CERTIFICATE-----
41
- date: 2024-09-05 00:00:00.000000000 Z
41
+ date: 2024-09-25 00:00:00.000000000 Z
42
42
  dependencies:
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: rack
@@ -58,16 +58,22 @@ dependencies:
58
58
  name: ruby-openid2
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '3.1'
61
64
  - - ">="
62
65
  - !ruby/object:Gem::Version
63
- version: '3.0'
66
+ version: 3.1.0
64
67
  type: :runtime
65
68
  prerelease: false
66
69
  version_requirements: !ruby/object:Gem::Requirement
67
70
  requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '3.1'
68
74
  - - ">="
69
75
  - !ruby/object:Gem::Version
70
- version: '3.0'
76
+ version: 3.1.0
71
77
  - !ruby/object:Gem::Dependency
72
78
  name: version_gem
73
79
  requirement: !ruby/object:Gem::Requirement
@@ -95,6 +101,9 @@ dependencies:
95
101
  - - ">="
96
102
  - !ruby/object:Gem::Version
97
103
  version: '5'
104
+ - - "<"
105
+ - !ruby/object:Gem::Version
106
+ version: '6'
98
107
  type: :development
99
108
  prerelease: false
100
109
  version_requirements: !ruby/object:Gem::Requirement
@@ -102,6 +111,23 @@ dependencies:
102
111
  - - ">="
103
112
  - !ruby/object:Gem::Version
104
113
  version: '5'
114
+ - - "<"
115
+ - !ruby/object:Gem::Version
116
+ version: '6'
117
+ - !ruby/object:Gem::Dependency
118
+ name: minitest-focus
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '1.4'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '1.4'
105
131
  - !ruby/object:Gem::Dependency
106
132
  name: minitest-rg
107
133
  requirement: !ruby/object:Gem::Requirement
@@ -144,6 +170,40 @@ dependencies:
144
170
  - - ">="
145
171
  - !ruby/object:Gem::Version
146
172
  version: '13'
173
+ - !ruby/object:Gem::Dependency
174
+ name: rots
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: '1.0'
180
+ type: :development
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - "~>"
185
+ - !ruby/object:Gem::Version
186
+ version: '1.0'
187
+ - !ruby/object:Gem::Dependency
188
+ name: logger
189
+ requirement: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - "~>"
192
+ - !ruby/object:Gem::Version
193
+ version: '1.6'
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ version: 1.6.1
197
+ type: :development
198
+ prerelease: false
199
+ version_requirements: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - "~>"
202
+ - !ruby/object:Gem::Version
203
+ version: '1.6'
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: 1.6.1
147
207
  - !ruby/object:Gem::Dependency
148
208
  name: kettle-soup-cover
149
209
  requirement: !ruby/object:Gem::Requirement
@@ -164,6 +224,26 @@ dependencies:
164
224
  - - ">="
165
225
  - !ruby/object:Gem::Version
166
226
  version: 1.0.2
227
+ - !ruby/object:Gem::Dependency
228
+ name: require_bench
229
+ requirement: !ruby/object:Gem::Requirement
230
+ requirements:
231
+ - - "~>"
232
+ - !ruby/object:Gem::Version
233
+ version: '1.0'
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: 1.0.4
237
+ type: :development
238
+ prerelease: false
239
+ version_requirements: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: '1.0'
244
+ - - ">="
245
+ - !ruby/object:Gem::Version
246
+ version: 1.0.4
167
247
  - !ruby/object:Gem::Dependency
168
248
  name: rubocop-lts
169
249
  requirement: !ruby/object:Gem::Requirement
@@ -278,19 +358,20 @@ files:
278
358
  - LICENSE.txt
279
359
  - README.md
280
360
  - SECURITY.md
361
+ - lib/rack-openid2.rb
281
362
  - lib/rack/openid.rb
282
363
  - lib/rack/openid/simple_auth.rb
283
364
  - lib/rack/openid/version.rb
284
- homepage: https://github.com/VitalConnectInc/rack-openid2
365
+ homepage: https://github.com/oauth-xx/rack-openid2
285
366
  licenses:
286
367
  - MIT
287
368
  metadata:
288
- homepage_uri: https://github.com/VitalConnectInc/rack-openid2
289
- source_code_uri: https://github.com/VitalConnectInc/rack-openid2/tree/v2.0.1
290
- changelog_uri: https://github.com/VitalConnectInc/rack-openid2/blob/v2.0.1/CHANGELOG.md
291
- bug_tracker_uri: https://github.com/VitalConnectInc/rack-openid2/issues
292
- documentation_uri: https://www.rubydoc.info/gems/rack-openid2/2.0.1
293
- wiki_uri: https://github.com/VitalConnectInc/rack-openid2/wiki
369
+ homepage_uri: https://github.com/oauth-xx/rack-openid2
370
+ source_code_uri: https://github.com/oauth-xx/rack-openid2/tree/v2.0.3
371
+ changelog_uri: https://github.com/oauth-xx/rack-openid2/blob/v2.0.3/CHANGELOG.md
372
+ bug_tracker_uri: https://github.com/oauth-xx/rack-openid2/issues
373
+ documentation_uri: https://www.rubydoc.info/gems/rack-openid2/2.0.3
374
+ wiki_uri: https://github.com/oauth-xx/rack-openid2/wiki
294
375
  rubygems_mfa_required: 'true'
295
376
  post_install_message:
296
377
  rdoc_options: []
@@ -307,7 +388,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
307
388
  - !ruby/object:Gem::Version
308
389
  version: '0'
309
390
  requirements: []
310
- rubygems_version: 3.4.22
391
+ rubygems_version: 3.5.18
311
392
  signing_key:
312
393
  specification_version: 4
313
394
  summary: Provides a more HTTPish API around the ruby-openid2 library
metadata.gz.sig CHANGED
Binary file