omniauth-oauth2 1.7.2 → 1.7.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 +4 -4
- data/.github/workflows/main.yml +1 -1
- data/lib/omniauth-oauth2/version.rb +1 -1
- data/omniauth-oauth2.gemspec +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1cfccae8e5d95ff37c5a88596fc3464bfdc10471b94d25be1276b47588307e63
|
|
4
|
+
data.tar.gz: 260bb7870be94104e5c40508efccbc0553f6bd10a73f9181638f4879e8e7c4be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16a414cb96f9b74322df084c76ee88ed97c54d881dc202df9b7d1ff63810bbe55c5b00add89d4a3230b50ecf8130f3c25c7c38ca446a6b954fcacd219c6f0c89
|
|
7
|
+
data.tar.gz: cc57ebdec3e22f48f9e8b780960152c115976ff4cc76e289b0dc37f0ced30105fb9512048e27123466c44202c8788a6786839d4f07fc71856fd87c461b5a7680
|
data/.github/workflows/main.yml
CHANGED
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
fail-fast: false
|
|
14
14
|
matrix:
|
|
15
15
|
os: [ubuntu, macos]
|
|
16
|
-
ruby: [2.5, 2.6, 2.7, head, debug, truffleruby, truffleruby-head]
|
|
16
|
+
ruby: [2.5, 2.6, 2.7, '3.0', 3.1, head, debug, truffleruby, truffleruby-head]
|
|
17
17
|
steps:
|
|
18
18
|
- uses: actions/checkout@v2
|
|
19
19
|
- name: Set up Ruby
|
data/omniauth-oauth2.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
require "omniauth-oauth2/version"
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
|
-
gem.add_dependency "oauth2", "
|
|
6
|
+
gem.add_dependency "oauth2", [">= 1.4", "< 3"]
|
|
7
7
|
gem.add_dependency "omniauth", [">= 1.9", "< 3"]
|
|
8
8
|
|
|
9
9
|
gem.add_development_dependency "bundler", "~> 2.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-oauth2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Bleigh
|
|
@@ -10,22 +10,28 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2022-06-19 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: oauth2
|
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
|
18
18
|
requirements:
|
|
19
|
-
- - "
|
|
19
|
+
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: '1.4'
|
|
22
|
+
- - "<"
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: '3'
|
|
22
25
|
type: :runtime
|
|
23
26
|
prerelease: false
|
|
24
27
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
28
|
requirements:
|
|
26
|
-
- - "
|
|
29
|
+
- - ">="
|
|
27
30
|
- !ruby/object:Gem::Version
|
|
28
31
|
version: '1.4'
|
|
32
|
+
- - "<"
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '3'
|
|
29
35
|
- !ruby/object:Gem::Dependency
|
|
30
36
|
name: omniauth
|
|
31
37
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -104,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
110
|
- !ruby/object:Gem::Version
|
|
105
111
|
version: '0'
|
|
106
112
|
requirements: []
|
|
107
|
-
rubygems_version: 3.2.
|
|
113
|
+
rubygems_version: 3.2.32
|
|
108
114
|
signing_key:
|
|
109
115
|
specification_version: 4
|
|
110
116
|
summary: An abstract OAuth2 strategy for OmniAuth.
|