oauth2 2.0.23 → 2.0.25
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 +50 -2
- data/CONTRIBUTING.md +6 -3
- data/FUNDING.md +1 -5
- data/MIT.md +21 -0
- data/README.md +35 -19
- data/lib/oauth2/access_token.rb +6 -6
- data/lib/oauth2/auth_sanitizer.rb +8 -24
- data/lib/oauth2/client.rb +2 -2
- data/lib/oauth2/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +141 -25
- 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: 12dd3e2f3cb149c49f71730a5804b2048f566e30b0e3aabc99f8fec7a24169d0
|
|
4
|
+
data.tar.gz: f7adbcd67c2803bd456ced1dc96c6a26d8773dde70a387f44f176ce35567e810
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dc679e94e58e1fb5b4926889cb39d5308c6a4de6845a3562f030b8174f0a06e43d88d6ce7043b98d3046c59de8a49a1b6763684a0357e620b1c830ea6b7ae43
|
|
7
|
+
data.tar.gz: 677e9e28a831e1e7e20d2f2404a3769c82022098c683210f3f072c349bd7bde1e8357ebddd11b0c58327611e6380aa214b8983eb1634a6b35f42d8ac34e734f8
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,48 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.0.25] - 2026-07-14
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.25][2.0.25t]
|
|
36
|
+
- COVERAGE: 100.00% -- 558/558 lines in 15 files
|
|
37
|
+
- BRANCH COVERAGE: 97.89% -- 186/190 branches in 15 files
|
|
38
|
+
- 88.35% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Added support for JRuby 10.1 and TruffleRuby 34.0.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Raised the `anonymous_loader` runtime dependency floor to `>= 0.1.3`.
|
|
47
|
+
- Raised the `auth-sanitizer` runtime dependency floor to `>= 0.2.3`.
|
|
48
|
+
- Retemplated generated project metadata, support documentation, CI workflows,
|
|
49
|
+
binstubs, and development dependency floors with `kettle-jem` v7.0.0.
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
|
|
53
|
+
- Package configured license files in gem release file lists.
|
|
54
|
+
|
|
55
|
+
## [2.0.24] - 2026-06-18
|
|
56
|
+
|
|
57
|
+
- TAG: [v2.0.24][2.0.24t]
|
|
58
|
+
- COVERAGE: 100.00% -- 558/558 lines in 15 files
|
|
59
|
+
- BRANCH COVERAGE: 97.89% -- 186/190 branches in 15 files
|
|
60
|
+
- 88.35% documented
|
|
61
|
+
|
|
62
|
+
### Changed
|
|
63
|
+
|
|
64
|
+
- Raised the `anonymous_loader` runtime dependency floor to `>= 0.1.1`.
|
|
65
|
+
- Raised the `auth-sanitizer` runtime dependency floor to `>= 0.2.2` and
|
|
66
|
+
switched isolated sanitizer loading to the released `anonymous_loader` gem,
|
|
67
|
+
including local workspace wiring for the new runtime dependency.
|
|
68
|
+
|
|
69
|
+
### Fixed
|
|
70
|
+
|
|
71
|
+
- Fixed isolated `auth-sanitizer` loading when Bundler standalone setup makes
|
|
72
|
+
`auth_sanitizer/loader.rb` available on `$LOAD_PATH` without adding
|
|
73
|
+
`auth-sanitizer` to `Gem.loaded_specs` or `GEM_PATH`.
|
|
74
|
+
|
|
33
75
|
## [2.0.23] - 2026-06-13
|
|
34
76
|
|
|
35
77
|
- TAG: [v2.0.23][2.0.23t]
|
|
@@ -90,7 +132,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
90
132
|
### Changed
|
|
91
133
|
|
|
92
134
|
- Raised generated `version_gem` dependency floor to `version_gem` >= 1.1.10 - by @pboling
|
|
93
|
-
- Raised the runtime dependency floor for `auth-sanitizer` to `>= 0.2.1`
|
|
135
|
+
- Raised the runtime dependency floor for `auth-sanitizer` to `>= 0.2.1` so
|
|
136
|
+
OAuth2 consumers get hash and nested-attribute inspect redaction fixes plus
|
|
137
|
+
downstream RBS duplicate-declaration fixes - by @pboling
|
|
94
138
|
- Refreshed generated package metadata, support documentation, CI workflows,
|
|
95
139
|
and development dependency floors from the current kettle-jem template - by @pboling
|
|
96
140
|
- Documented the current per-version Ruby, JRuby, and TruffleRuby CI matrix in
|
|
@@ -886,7 +930,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
886
930
|
|
|
887
931
|
[gemfiles/readme]: gemfiles/README.md
|
|
888
932
|
|
|
889
|
-
[Unreleased]: https://github.com/ruby-oauth/oauth2/compare/v2.0.
|
|
933
|
+
[Unreleased]: https://github.com/ruby-oauth/oauth2/compare/v2.0.25...HEAD
|
|
934
|
+
[2.0.25]: https://github.com/ruby-oauth/oauth2/compare/v2.0.24...v2.0.25
|
|
935
|
+
[2.0.25t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.25
|
|
936
|
+
[2.0.24]: https://github.com/ruby-oauth/oauth2/compare/v2.0.23...v2.0.24
|
|
937
|
+
[2.0.24t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.24
|
|
890
938
|
[2.0.23]: https://github.com/ruby-oauth/oauth2/compare/v2.0.22...v2.0.23
|
|
891
939
|
[2.0.23t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.23
|
|
892
940
|
[2.0.22]: https://github.com/ruby-oauth/oauth2/compare/v2.0.21...v2.0.22
|
data/CONTRIBUTING.md
CHANGED
|
@@ -109,14 +109,14 @@ Git diff driver setup
|
|
|
109
109
|
- Git hosting forges generally ignore external diff drivers, so pull request views may still show raw textual diffs even when local `git diff` uses semantic drivers.
|
|
110
110
|
|
|
111
111
|
```console
|
|
112
|
-
K_JEM_TEMPLATING=true
|
|
112
|
+
K_JEM_TEMPLATING=true kettle-jem install
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
Troubleshooting Git diffs
|
|
116
116
|
- Use `git diff --no-ext-diff` to compare against Git's built-in diff output.
|
|
117
117
|
- Use `git diff --no-textconv` when a textconv projection obscures the raw file bytes you need to inspect.
|
|
118
118
|
- If Git reports a missing `smorg-*` executable, rerun `bundle install` and the setup command above, then check `git config --local --get-regexp '^diff\.smorg-'`.
|
|
119
|
-
- To remove managed local entries, run `K_JEM_TEMPLATING=true
|
|
119
|
+
- To remove managed local entries, run `K_JEM_TEMPLATING=true kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
|
|
120
120
|
|
|
121
121
|
For a quick starting point, this repository’s `mise.toml` defines the shared defaults, and `.env.local` can override them locally. Copy `.env.local.example` to `.env.local`, use `KEY=value` lines, and either activate `mise` in your shell or run commands through `mise exec -C /path/to/project -- ...`.
|
|
122
122
|
|
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data/FUNDING.md
CHANGED
|
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
6
6
|
|
|
7
7
|
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
|
8
8
|
|
|
9
|
-
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
9
|
+
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
10
10
|
|
|
11
11
|
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
12
12
|
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
|
|
|
16
16
|
[🖇osc-sponsors-i]: https://opencollective.com/ruby-oauth/sponsors/badge.svg?style=flat
|
|
17
17
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
18
18
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
19
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
20
|
-
[🖇polar]: https://polar.sh/pboling
|
|
21
19
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
22
20
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
23
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
24
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
25
21
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
26
22
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
27
23
|
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
data/MIT.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
See [LICENSE.md](LICENSE.md) for the copyright notice.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
`if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
|
|
12
12
|
|
|
13
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
13
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
14
14
|
|
|
15
|
-
<details>
|
|
15
|
+
<details markdown="1">
|
|
16
16
|
<summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
|
|
17
17
|
|
|
18
18
|
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
|
|
@@ -150,9 +150,9 @@ See also the [OAuth 2.0 Spec][oauth2-spec], the [OpenID Connect Spec][oidc-spec]
|
|
|
150
150
|
|
|
151
151
|
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
|
152
152
|
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
153
|
-
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
154
|
-
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
|
|
155
|
-
| Works with MRI Ruby 4 | [![Ruby
|
|
153
|
+
| Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
|
|
154
|
+
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
|
|
155
|
+
| Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
|
|
156
156
|
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎ruby-3.0-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
|
|
157
157
|
| Works with MRI Ruby 2 | ![Ruby 2.2 Compat][💎ruby-2.2i] ![Ruby 2.3 Compat][💎ruby-2.3i] <br/> [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
|
|
158
158
|
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
@@ -171,9 +171,25 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
|
|
|
171
171
|
may be higher than the gem's runtime compatibility floor when legacy Rubies are
|
|
172
172
|
not practical for the current toolchain.
|
|
173
173
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
<a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
|
|
175
|
+
|
|
176
|
+
The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
177
|
+
|
|
178
|
+
<details markdown="1">
|
|
179
|
+
<summary>How kettle-dev manages complexity in tests</summary>
|
|
180
|
+
|
|
181
|
+
| Gem | Source | Role | Daily download rank |
|
|
182
|
+
|-----|--------|------|---------------------|
|
|
183
|
+
| [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [](https://bestgems.org/gems/appraisal2) |
|
|
184
|
+
| [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [](https://bestgems.org/gems/appraisal2-rubocop) |
|
|
185
|
+
| [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [](https://bestgems.org/gems/kettle-dev) |
|
|
186
|
+
| [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [](https://bestgems.org/gems/kettle-jem) |
|
|
187
|
+
| [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [](https://bestgems.org/gems/kettle-soup-cover) |
|
|
188
|
+
| [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [](https://bestgems.org/gems/kettle-test) |
|
|
189
|
+
| [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [](https://bestgems.org/gems/rubocop-lts) |
|
|
190
|
+
| [turbo_tests2](https://bestgems.org/gems/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [](https://bestgems.org/gems/turbo_tests2) |
|
|
191
|
+
|
|
192
|
+
</details>
|
|
177
193
|
|
|
178
194
|
### Federated DVCS
|
|
179
195
|
|
|
@@ -662,7 +678,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
|
|
|
662
678
|
No sponsors yet. Be the first!
|
|
663
679
|
<!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
|
|
664
680
|
|
|
665
|
-
[kettle-readme-backers]: https://github.com/ruby-oauth/oauth2/blob/main/
|
|
681
|
+
[kettle-readme-backers]: https://github.com/ruby-oauth/oauth2/blob/main/bin/kettle-readme-backers
|
|
666
682
|
|
|
667
683
|
### Another way to support open-source
|
|
668
684
|
|
|
@@ -674,7 +690,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
|
|
|
674
690
|
|
|
675
691
|
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
676
692
|
|
|
677
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate
|
|
693
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
678
694
|
|
|
679
695
|
## 🔐 Security
|
|
680
696
|
|
|
@@ -720,7 +736,7 @@ Made with [contributors-img][🖐contrib-rocks].
|
|
|
720
736
|
|
|
721
737
|
Also see GitLab Contributors: [https://gitlab.com/ruby-oauth/oauth2/-/graphs/main][🚎contributors-gl]
|
|
722
738
|
|
|
723
|
-
<details>
|
|
739
|
+
<details markdown="1">
|
|
724
740
|
<summary>⭐️ Star History</summary>
|
|
725
741
|
|
|
726
742
|
<a href="https://star-history.com/ruby-oauth/oauth2&Date">
|
|
@@ -916,12 +932,8 @@ Thanks for RTFM. ☺️
|
|
|
916
932
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
917
933
|
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
918
934
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
919
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
920
|
-
[🖇polar]: https://polar.sh/pboling
|
|
921
935
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
922
936
|
[🖇kofi]: https://ko-fi.com/pboling
|
|
923
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
924
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
925
937
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
926
938
|
[🖇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
|
|
927
939
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
@@ -1011,11 +1023,13 @@ Thanks for RTFM. ☺️
|
|
|
1011
1023
|
[🚎jruby-9.2-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/jruby-9.2.yml
|
|
1012
1024
|
[🚎jruby-9.3-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/jruby-9.3.yml
|
|
1013
1025
|
[🚎jruby-9.4-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/jruby-9.4.yml
|
|
1026
|
+
[🚎jruby-10.0-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/jruby-10.0.yml
|
|
1014
1027
|
[🚎truby-22.3-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/truffleruby-22.3.yml
|
|
1015
1028
|
[🚎truby-23.0-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/truffleruby-23.0.yml
|
|
1016
1029
|
[🚎truby-23.1-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/truffleruby-23.1.yml
|
|
1017
1030
|
[🚎truby-24.2-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/truffleruby-24.2.yml
|
|
1018
1031
|
[🚎truby-25.0-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/truffleruby-25.0.yml
|
|
1032
|
+
[🚎truby-33.0-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/truffleruby-33.0.yml
|
|
1019
1033
|
[🚎2-cov-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/coverage.yml
|
|
1020
1034
|
[🚎2-cov-wfi]: https://github.com/ruby-oauth/oauth2/actions/workflows/coverage.yml/badge.svg
|
|
1021
1035
|
[🚎3-hd-wf]: https://github.com/ruby-oauth/oauth2/actions/workflows/heads.yml
|
|
@@ -1047,7 +1061,6 @@ Thanks for RTFM. ☺️
|
|
|
1047
1061
|
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
1048
1062
|
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
1049
1063
|
[💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
1050
|
-
[💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
1051
1064
|
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
|
1052
1065
|
[💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
|
|
1053
1066
|
[💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
@@ -1055,10 +1068,13 @@ Thanks for RTFM. ☺️
|
|
|
1055
1068
|
[💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
1056
1069
|
[💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
1057
1070
|
[💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
1071
|
+
[💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
|
|
1058
1072
|
[💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
|
|
1073
|
+
[💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
|
|
1059
1074
|
[💎jruby-9.2i]: https://img.shields.io/badge/JRuby-9.2-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
1060
1075
|
[💎jruby-9.3i]: https://img.shields.io/badge/JRuby-9.3-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
1061
1076
|
[💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
1077
|
+
[💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
|
1062
1078
|
[💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
|
|
1063
1079
|
[💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
|
|
1064
1080
|
[🤝gh-issues]: https://github.com/ruby-oauth/oauth2/issues
|
|
@@ -1087,7 +1103,7 @@ Thanks for RTFM. ☺️
|
|
|
1087
1103
|
[📌gitmoji]: https://gitmoji.dev
|
|
1088
1104
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
1089
1105
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
1090
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
1106
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.558-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
1091
1107
|
[🔐security]: https://github.com/ruby-oauth/oauth2/blob/main/SECURITY.md
|
|
1092
1108
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
1093
1109
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
@@ -1115,7 +1131,7 @@ Thanks for RTFM. ☺️
|
|
|
1115
1131
|
| Package | oauth2 |
|
|
1116
1132
|
| Description | 🔐 A Ruby wrapper for the OAuth 2.0 Authorization Framework, including the OAuth 2.1 draft spec, and OpenID Connect (OIDC) |
|
|
1117
1133
|
| Homepage | https://github.com/ruby-oauth/oauth2 |
|
|
1118
|
-
| Source | https://github.com/ruby-oauth/oauth2
|
|
1134
|
+
| Source | https://github.com/ruby-oauth/oauth2 |
|
|
1119
1135
|
| License | `MIT` |
|
|
1120
|
-
| Funding | https://github.com/sponsors/pboling, https://
|
|
1136
|
+
| Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/ruby-oauth, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/oauth2, https://www.buymeacoffee.com/pboling |
|
|
1121
1137
|
<!-- kettle-jem:metadata:end -->
|
data/lib/oauth2/access_token.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# :
|
|
3
|
+
# simplecov:disable
|
|
4
4
|
begin
|
|
5
5
|
# The first version of hashie that has a version file was 1.1.0
|
|
6
6
|
# The first version of hashie that required the version file at runtime was 3.2.0
|
|
@@ -13,7 +13,7 @@ begin
|
|
|
13
13
|
rescue LoadError
|
|
14
14
|
nil
|
|
15
15
|
end
|
|
16
|
-
# :
|
|
16
|
+
# simplecov:enable
|
|
17
17
|
|
|
18
18
|
module OAuth2
|
|
19
19
|
class AccessToken # rubocop:disable Metrics/ClassLength
|
|
@@ -66,10 +66,10 @@ module OAuth2
|
|
|
66
66
|
t_key = supported_keys[0]
|
|
67
67
|
extra_tokens_warning(supported_keys, t_key)
|
|
68
68
|
end
|
|
69
|
-
# :
|
|
69
|
+
# simplecov:disable
|
|
70
70
|
# TODO: Get rid of this branching logic when dropping Hashie < v3.2
|
|
71
71
|
token = extract_token_value(fresh, t_key)
|
|
72
|
-
# :
|
|
72
|
+
# simplecov:enable
|
|
73
73
|
new(client, token, fresh)
|
|
74
74
|
end
|
|
75
75
|
|
|
@@ -103,7 +103,7 @@ You may need to set `snaky: false`. See inline documentation for more info.
|
|
|
103
103
|
])
|
|
104
104
|
end
|
|
105
105
|
|
|
106
|
-
# :
|
|
106
|
+
# simplecov:disable
|
|
107
107
|
def extract_token_value(fresh, key)
|
|
108
108
|
token_value = fresh.delete(key)
|
|
109
109
|
return token_value || "" if defined?(Hashie::VERSION)
|
|
@@ -112,7 +112,7 @@ You may need to set `snaky: false`. See inline documentation for more info.
|
|
|
112
112
|
# There is a bug in Hashie v0, which this accounts for.
|
|
113
113
|
token_value || fresh[key] || ""
|
|
114
114
|
end
|
|
115
|
-
# :
|
|
115
|
+
# simplecov:enable
|
|
116
116
|
end
|
|
117
117
|
|
|
118
118
|
# Initialize an AccessToken
|
|
@@ -1,31 +1,15 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
require "anonymous_loader"
|
|
4
|
+
|
|
3
5
|
module OAuth2
|
|
4
6
|
AUTH_SANITIZER = begin
|
|
5
|
-
auth_sanitizer_requirement = Gem::Requirement.new("~> 0.2", ">= 0.2.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
auth_sanitizer_loader_path = File.join(
|
|
14
|
-
auth_sanitizer_spec.full_gem_path,
|
|
15
|
-
"lib/auth_sanitizer/loader.rb"
|
|
16
|
-
)
|
|
17
|
-
unless File.file?(auth_sanitizer_loader_path)
|
|
18
|
-
# :nocov:
|
|
19
|
-
raise LoadError, "oauth2 requires auth-sanitizer #{auth_sanitizer_requirement}; " \
|
|
20
|
-
"loader not found at #{auth_sanitizer_loader_path}"
|
|
21
|
-
# :nocov:
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
auth_sanitizer_loader_namespace = Module.new
|
|
25
|
-
auth_sanitizer_loader_namespace.module_eval(
|
|
26
|
-
File.read(auth_sanitizer_loader_path),
|
|
27
|
-
auth_sanitizer_loader_path,
|
|
28
|
-
1
|
|
7
|
+
auth_sanitizer_requirement = Gem::Requirement.new("~> 0.2", ">= 0.2.2")
|
|
8
|
+
auth_sanitizer_loader_namespace = AnonymousLoader.load_path(
|
|
9
|
+
gem_name: "auth-sanitizer",
|
|
10
|
+
require_path: "auth_sanitizer/loader.rb",
|
|
11
|
+
version_requirement: auth_sanitizer_requirement,
|
|
12
|
+
version_file: "auth/sanitizer/version.rb"
|
|
29
13
|
)
|
|
30
14
|
|
|
31
15
|
auth_sanitizer_loader_namespace.
|
data/lib/oauth2/client.rb
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
require "faraday"
|
|
4
4
|
require "logger"
|
|
5
5
|
|
|
6
|
-
# :
|
|
6
|
+
# simplecov:disable since coverage tracking only runs on the builds with Faraday v2
|
|
7
7
|
# We do run builds on Faraday v0 (and v1!), so this code is actually covered!
|
|
8
8
|
# This is the only nocov in the whole project!
|
|
9
9
|
if Faraday::Utils.respond_to?(:default_space_encoding)
|
|
10
10
|
# This setting doesn't exist in faraday 0.x
|
|
11
11
|
Faraday::Utils.default_space_encoding = "%20"
|
|
12
12
|
end
|
|
13
|
-
# :
|
|
13
|
+
# simplecov:enable
|
|
14
14
|
|
|
15
15
|
module OAuth2
|
|
16
16
|
ConnectionError = Class.new(Faraday::ConnectionFailed)
|
data/lib/oauth2/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,10 +1,105 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oauth2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.25
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
+
- Erik Michaels-Ober
|
|
8
|
+
- Jeremy Kemper
|
|
9
|
+
- Michael Bleigh
|
|
10
|
+
- Paul Walker
|
|
11
|
+
- rick
|
|
12
|
+
- Tim Habermaas
|
|
13
|
+
- Wynn Netherland
|
|
14
|
+
- Alexander Lang
|
|
15
|
+
- Greg Spurrier
|
|
16
|
+
- Jay Adkisson
|
|
17
|
+
- Luke Saunders
|
|
18
|
+
- Simon Gate
|
|
19
|
+
- Bas Vodde
|
|
20
|
+
- Damian Janowski
|
|
21
|
+
- Daniël van de Burgt
|
|
22
|
+
- Dorren Chen
|
|
23
|
+
- Igor Sales
|
|
24
|
+
- Leigh Caplan
|
|
25
|
+
- Michael Andrews
|
|
26
|
+
- Omer Rauchwerger
|
|
27
|
+
- Saverio Trioni
|
|
28
|
+
- Trent Ogren
|
|
29
|
+
- Vsevolod Romashov
|
|
30
|
+
- Antonio Tapiador del Dujo
|
|
31
|
+
- Eduardo Gurgel
|
|
32
|
+
- Geostellar Developer
|
|
33
|
+
- Niels Ganser
|
|
34
|
+
- Rainux Luo
|
|
35
|
+
- Taylor Hedberg
|
|
36
|
+
- Tim Clem
|
|
37
|
+
- Dave Stevens
|
|
38
|
+
- Ellis Berner
|
|
39
|
+
- Frank Macreery
|
|
40
|
+
- Olivier Lacan
|
|
41
|
+
- Peter Souter
|
|
42
|
+
- Ryan Williams
|
|
43
|
+
- Andrew Cantino and Jeff Moore
|
|
44
|
+
- Thomas Walpole
|
|
45
|
+
- Bo Jeanes
|
|
46
|
+
- Cody Cutrer
|
|
47
|
+
- Edward Rudd
|
|
48
|
+
- Lawrence Oluyede
|
|
49
|
+
- Linus Pettersson
|
|
50
|
+
- Motoshi Nishihira
|
|
51
|
+
- Adrian Setyadi
|
|
52
|
+
- Benjamin Quorning
|
|
53
|
+
- Christoph Petschnig
|
|
54
|
+
- Nathaniel Bibler
|
|
55
|
+
- Oleg
|
|
56
|
+
- Samuel Cochran
|
|
57
|
+
- tetsuya
|
|
58
|
+
- Yury Velikanau
|
|
59
|
+
- Alex Kowalczuk
|
|
60
|
+
- asm__
|
|
61
|
+
- David Christensen
|
|
62
|
+
- fossabot
|
|
63
|
+
- Jeff Moore
|
|
64
|
+
- Jonathan del Strother
|
|
65
|
+
- Joseph Page
|
|
66
|
+
- Lomey
|
|
67
|
+
- Markus Bengts
|
|
68
|
+
- Mathias Klippinge
|
|
69
|
+
- nikz
|
|
7
70
|
- Peter H. Boling
|
|
71
|
+
- Daniel Fockler
|
|
72
|
+
- Elliot Crosby-McCullough
|
|
73
|
+
- João Paulo
|
|
74
|
+
- Orien Madgwick
|
|
75
|
+
- Ryan T. Hosford
|
|
76
|
+
- Tom Corley
|
|
77
|
+
- anvox
|
|
78
|
+
- Jesse Cotton
|
|
79
|
+
- Olle Jonsson
|
|
80
|
+
- Stephen Reid
|
|
81
|
+
- Anders Carling
|
|
82
|
+
- dobon
|
|
83
|
+
- Jan Zaydowicz
|
|
84
|
+
- Nicholas Palaniuk
|
|
85
|
+
- Stan Hu
|
|
86
|
+
- Bouke van der Bijl
|
|
87
|
+
- nov
|
|
88
|
+
- Rick Selby
|
|
89
|
+
- Ryo Takahashi
|
|
90
|
+
- Jessie Young
|
|
91
|
+
- Карим Гимадеев
|
|
92
|
+
- Aboling0
|
|
93
|
+
- Elise Wood
|
|
94
|
+
- Manuel van Rijn
|
|
95
|
+
- Annibelle Boling
|
|
96
|
+
- Mark James
|
|
97
|
+
- Mridang Agarwalla
|
|
98
|
+
- Sasa Rosic
|
|
99
|
+
- Jonathan Grinstead
|
|
100
|
+
- kain
|
|
101
|
+
- Rob Zolkos
|
|
102
|
+
- StepSecurity Bot
|
|
8
103
|
bindir: exe
|
|
9
104
|
cert_chain:
|
|
10
105
|
- |
|
|
@@ -37,6 +132,26 @@ cert_chain:
|
|
|
37
132
|
-----END CERTIFICATE-----
|
|
38
133
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
39
134
|
dependencies:
|
|
135
|
+
- !ruby/object:Gem::Dependency
|
|
136
|
+
name: anonymous_loader
|
|
137
|
+
requirement: !ruby/object:Gem::Requirement
|
|
138
|
+
requirements:
|
|
139
|
+
- - "~>"
|
|
140
|
+
- !ruby/object:Gem::Version
|
|
141
|
+
version: '0.1'
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: 0.1.3
|
|
145
|
+
type: :runtime
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0.1'
|
|
152
|
+
- - ">="
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: 0.1.3
|
|
40
155
|
- !ruby/object:Gem::Dependency
|
|
41
156
|
name: auth-sanitizer
|
|
42
157
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -46,7 +161,7 @@ dependencies:
|
|
|
46
161
|
version: '0.2'
|
|
47
162
|
- - ">="
|
|
48
163
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 0.2.
|
|
164
|
+
version: 0.2.3
|
|
50
165
|
type: :runtime
|
|
51
166
|
prerelease: false
|
|
52
167
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -56,7 +171,7 @@ dependencies:
|
|
|
56
171
|
version: '0.2'
|
|
57
172
|
- - ">="
|
|
58
173
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: 0.2.
|
|
174
|
+
version: 0.2.3
|
|
60
175
|
- !ruby/object:Gem::Dependency
|
|
61
176
|
name: faraday
|
|
62
177
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -154,7 +269,7 @@ dependencies:
|
|
|
154
269
|
version: '2.0'
|
|
155
270
|
- - ">="
|
|
156
271
|
- !ruby/object:Gem::Version
|
|
157
|
-
version: 2.0.
|
|
272
|
+
version: 2.0.7
|
|
158
273
|
type: :runtime
|
|
159
274
|
prerelease: false
|
|
160
275
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -164,7 +279,7 @@ dependencies:
|
|
|
164
279
|
version: '2.0'
|
|
165
280
|
- - ">="
|
|
166
281
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: 2.0.
|
|
282
|
+
version: 2.0.7
|
|
168
283
|
- !ruby/object:Gem::Dependency
|
|
169
284
|
name: version_gem
|
|
170
285
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -174,7 +289,7 @@ dependencies:
|
|
|
174
289
|
version: '1.1'
|
|
175
290
|
- - ">="
|
|
176
291
|
- !ruby/object:Gem::Version
|
|
177
|
-
version: 1.1.
|
|
292
|
+
version: 1.1.14
|
|
178
293
|
type: :runtime
|
|
179
294
|
prerelease: false
|
|
180
295
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -184,27 +299,27 @@ dependencies:
|
|
|
184
299
|
version: '1.1'
|
|
185
300
|
- - ">="
|
|
186
301
|
- !ruby/object:Gem::Version
|
|
187
|
-
version: 1.1.
|
|
302
|
+
version: 1.1.14
|
|
188
303
|
- !ruby/object:Gem::Dependency
|
|
189
304
|
name: kettle-dev
|
|
190
305
|
requirement: !ruby/object:Gem::Requirement
|
|
191
306
|
requirements:
|
|
192
307
|
- - "~>"
|
|
193
308
|
- !ruby/object:Gem::Version
|
|
194
|
-
version: '2.
|
|
309
|
+
version: '2.3'
|
|
195
310
|
- - ">="
|
|
196
311
|
- !ruby/object:Gem::Version
|
|
197
|
-
version: 2.
|
|
312
|
+
version: 2.3.4
|
|
198
313
|
type: :development
|
|
199
314
|
prerelease: false
|
|
200
315
|
version_requirements: !ruby/object:Gem::Requirement
|
|
201
316
|
requirements:
|
|
202
317
|
- - "~>"
|
|
203
318
|
- !ruby/object:Gem::Version
|
|
204
|
-
version: '2.
|
|
319
|
+
version: '2.3'
|
|
205
320
|
- - ">="
|
|
206
321
|
- !ruby/object:Gem::Version
|
|
207
|
-
version: 2.
|
|
322
|
+
version: 2.3.4
|
|
208
323
|
- !ruby/object:Gem::Dependency
|
|
209
324
|
name: bundler-audit
|
|
210
325
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -262,7 +377,7 @@ dependencies:
|
|
|
262
377
|
version: '3.1'
|
|
263
378
|
- - ">="
|
|
264
379
|
- !ruby/object:Gem::Version
|
|
265
|
-
version: 3.1.
|
|
380
|
+
version: 3.1.4
|
|
266
381
|
type: :development
|
|
267
382
|
prerelease: false
|
|
268
383
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -272,7 +387,7 @@ dependencies:
|
|
|
272
387
|
version: '3.1'
|
|
273
388
|
- - ">="
|
|
274
389
|
- !ruby/object:Gem::Version
|
|
275
|
-
version: 3.1.
|
|
390
|
+
version: 3.1.4
|
|
276
391
|
- !ruby/object:Gem::Dependency
|
|
277
392
|
name: kettle-test
|
|
278
393
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -282,7 +397,7 @@ dependencies:
|
|
|
282
397
|
version: '2.0'
|
|
283
398
|
- - ">="
|
|
284
399
|
- !ruby/object:Gem::Version
|
|
285
|
-
version: 2.0.
|
|
400
|
+
version: 2.0.10
|
|
286
401
|
type: :development
|
|
287
402
|
prerelease: false
|
|
288
403
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -292,7 +407,7 @@ dependencies:
|
|
|
292
407
|
version: '2.0'
|
|
293
408
|
- - ">="
|
|
294
409
|
- !ruby/object:Gem::Version
|
|
295
|
-
version: 2.0.
|
|
410
|
+
version: 2.0.10
|
|
296
411
|
- !ruby/object:Gem::Dependency
|
|
297
412
|
name: turbo_tests2
|
|
298
413
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -302,7 +417,7 @@ dependencies:
|
|
|
302
417
|
version: '3.1'
|
|
303
418
|
- - ">="
|
|
304
419
|
- !ruby/object:Gem::Version
|
|
305
|
-
version: 3.1.
|
|
420
|
+
version: 3.1.8
|
|
306
421
|
type: :development
|
|
307
422
|
prerelease: false
|
|
308
423
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -312,7 +427,7 @@ dependencies:
|
|
|
312
427
|
version: '3.1'
|
|
313
428
|
- - ">="
|
|
314
429
|
- !ruby/object:Gem::Version
|
|
315
|
-
version: 3.1.
|
|
430
|
+
version: 3.1.8
|
|
316
431
|
- !ruby/object:Gem::Dependency
|
|
317
432
|
name: ruby-progressbar
|
|
318
433
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -336,7 +451,7 @@ dependencies:
|
|
|
336
451
|
version: '1.0'
|
|
337
452
|
- - ">="
|
|
338
453
|
- !ruby/object:Gem::Version
|
|
339
|
-
version: 1.0.
|
|
454
|
+
version: 1.0.6
|
|
340
455
|
type: :development
|
|
341
456
|
prerelease: false
|
|
342
457
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -346,7 +461,7 @@ dependencies:
|
|
|
346
461
|
version: '1.0'
|
|
347
462
|
- - ">="
|
|
348
463
|
- !ruby/object:Gem::Version
|
|
349
|
-
version: 1.0.
|
|
464
|
+
version: 1.0.6
|
|
350
465
|
- !ruby/object:Gem::Dependency
|
|
351
466
|
name: gitmoji-regex
|
|
352
467
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -356,7 +471,7 @@ dependencies:
|
|
|
356
471
|
version: '2.0'
|
|
357
472
|
- - ">="
|
|
358
473
|
- !ruby/object:Gem::Version
|
|
359
|
-
version: 2.0.
|
|
474
|
+
version: 2.0.4
|
|
360
475
|
type: :development
|
|
361
476
|
prerelease: false
|
|
362
477
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -366,7 +481,7 @@ dependencies:
|
|
|
366
481
|
version: '2.0'
|
|
367
482
|
- - ">="
|
|
368
483
|
- !ruby/object:Gem::Version
|
|
369
|
-
version: 2.0.
|
|
484
|
+
version: 2.0.4
|
|
370
485
|
- !ruby/object:Gem::Dependency
|
|
371
486
|
name: addressable
|
|
372
487
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -464,6 +579,7 @@ files:
|
|
|
464
579
|
- CONTRIBUTING.md
|
|
465
580
|
- FUNDING.md
|
|
466
581
|
- LICENSE.md
|
|
582
|
+
- MIT.md
|
|
467
583
|
- README.md
|
|
468
584
|
- RUBOCOP.md
|
|
469
585
|
- SECURITY.md
|
|
@@ -499,10 +615,10 @@ licenses:
|
|
|
499
615
|
- MIT
|
|
500
616
|
metadata:
|
|
501
617
|
homepage_uri: https://oauth2.galtzo.com
|
|
502
|
-
source_code_uri: https://github.com/ruby-oauth/oauth2/tree/v2.0.
|
|
503
|
-
changelog_uri: https://github.com/ruby-oauth/oauth2/blob/v2.0.
|
|
618
|
+
source_code_uri: https://github.com/ruby-oauth/oauth2/tree/v2.0.25
|
|
619
|
+
changelog_uri: https://github.com/ruby-oauth/oauth2/blob/v2.0.25/CHANGELOG.md
|
|
504
620
|
bug_tracker_uri: https://github.com/ruby-oauth/oauth2/issues
|
|
505
|
-
documentation_uri: https://www.rubydoc.info/gems/oauth2/2.0.
|
|
621
|
+
documentation_uri: https://www.rubydoc.info/gems/oauth2/2.0.25
|
|
506
622
|
funding_uri: https://github.com/sponsors/pboling
|
|
507
623
|
wiki_uri: https://github.com/ruby-oauth/oauth2/wiki
|
|
508
624
|
news_uri: https://www.railsbling.com/tags/oauth2
|
|
@@ -531,7 +647,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
531
647
|
- !ruby/object:Gem::Version
|
|
532
648
|
version: '0'
|
|
533
649
|
requirements: []
|
|
534
|
-
rubygems_version: 4.0.
|
|
650
|
+
rubygems_version: 4.0.16
|
|
535
651
|
specification_version: 4
|
|
536
652
|
summary: "\U0001F510 OAuth 2.0, 2.1 & OIDC Core Ruby implementation"
|
|
537
653
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|