omniauth-whoplusyou 0.1.0 → 0.1.1
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/CHANGELOG.md +3 -3
- data/Gemfile +2 -2
- data/Gemfile.lock +27 -20
- data/README.md +1 -0
- data/lib/omniauth/whoplusyou/version.rb +1 -1
- data/omniauth-whoplusyou-0.1.0.gem +0 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d94beb5a53ced233cf528d42e690e6e482cc5538bc4ec88e584ab9b1d74c58df
|
4
|
+
data.tar.gz: 5dd17b5131f5bb5dcaede90bcfc74e8e804af2d50451c1b42f2b81075c89063e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ec72004c7e239e66f61eca6960394199b898476033728025c416009101865d8fa0ac68fcac0be9a6ad652f5121cb54eb6deee11414981775cddcc13d71f97fd
|
7
|
+
data.tar.gz: de206bc3f1a1cd4f5da1f978744d9542a574f199214081a39fbd4867f93e56fa2fcb757a6ae57dfa8ae6253513c3a2f90aa58b82e26f07015b19e73826918c79
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
-
gem "omniauth", "~> 2.1.
|
5
|
+
gem "omniauth", "~> 2.1.2"
|
6
6
|
gem "omniauth-oauth2", "~> 1.8.0"
|
7
7
|
|
8
8
|
group :development, :test do
|
9
9
|
gem "rake", "~> 13.0.6"
|
10
10
|
gem "rspec", "~> 3.12.0"
|
11
11
|
gem "rspec_junit_formatter", "~> 0.6.0"
|
12
|
-
gem "rubocop", "~> 1.
|
12
|
+
gem "rubocop", "~> 1.69.2"
|
13
13
|
gem "rubocop-rspec", "~> 2.22.0"
|
14
14
|
end
|
data/Gemfile.lock
CHANGED
@@ -2,14 +2,17 @@ GEM
|
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
4
|
ast (2.4.2)
|
5
|
+
base64 (0.2.0)
|
5
6
|
diff-lcs (1.5.0)
|
6
7
|
faraday (2.7.6)
|
7
8
|
faraday-net_http (>= 2.0, < 3.1)
|
8
9
|
ruby2_keywords (>= 0.0.4)
|
9
10
|
faraday-net_http (3.0.2)
|
10
11
|
hashie (5.0.0)
|
11
|
-
json (2.
|
12
|
+
json (2.9.1)
|
12
13
|
jwt (2.7.1)
|
14
|
+
language_server-protocol (3.17.0.3)
|
15
|
+
logger (1.6.4)
|
13
16
|
multi_xml (0.6.0)
|
14
17
|
oauth2 (2.0.9)
|
15
18
|
faraday (>= 0.17.3, < 3.0)
|
@@ -18,25 +21,26 @@ GEM
|
|
18
21
|
rack (>= 1.2, < 4)
|
19
22
|
snaky_hash (~> 2.0)
|
20
23
|
version_gem (~> 1.1)
|
21
|
-
omniauth (2.1.
|
24
|
+
omniauth (2.1.2)
|
22
25
|
hashie (>= 3.4.6)
|
23
26
|
rack (>= 2.2.3)
|
24
27
|
rack-protection
|
25
28
|
omniauth-oauth2 (1.8.0)
|
26
29
|
oauth2 (>= 1.4, < 3)
|
27
30
|
omniauth (~> 2.0)
|
28
|
-
parallel (1.
|
29
|
-
parser (3.
|
31
|
+
parallel (1.26.3)
|
32
|
+
parser (3.3.6.0)
|
30
33
|
ast (~> 2.4.1)
|
31
34
|
racc
|
32
|
-
racc (1.
|
35
|
+
racc (1.8.1)
|
33
36
|
rack (3.0.8)
|
34
|
-
rack-protection (
|
35
|
-
|
37
|
+
rack-protection (4.1.1)
|
38
|
+
base64 (>= 0.1.0)
|
39
|
+
logger (>= 1.6.0)
|
40
|
+
rack (>= 3.0.0, < 4)
|
36
41
|
rainbow (3.1.1)
|
37
42
|
rake (13.0.6)
|
38
|
-
regexp_parser (2.
|
39
|
-
rexml (3.2.5)
|
43
|
+
regexp_parser (2.10.0)
|
40
44
|
rspec (3.12.0)
|
41
45
|
rspec-core (~> 3.12.0)
|
42
46
|
rspec-expectations (~> 3.12.0)
|
@@ -52,18 +56,18 @@ GEM
|
|
52
56
|
rspec-support (3.12.0)
|
53
57
|
rspec_junit_formatter (0.6.0)
|
54
58
|
rspec-core (>= 2, < 4, != 2.12.0)
|
55
|
-
rubocop (1.
|
59
|
+
rubocop (1.69.2)
|
56
60
|
json (~> 2.3)
|
61
|
+
language_server-protocol (>= 3.17.0)
|
57
62
|
parallel (~> 1.10)
|
58
|
-
parser (>= 3.
|
63
|
+
parser (>= 3.3.0.2)
|
59
64
|
rainbow (>= 2.2.2, < 4.0)
|
60
|
-
regexp_parser (>=
|
61
|
-
|
62
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
65
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
66
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
63
67
|
ruby-progressbar (~> 1.7)
|
64
|
-
unicode-display_width (>= 2.4.0, <
|
65
|
-
rubocop-ast (1.
|
66
|
-
parser (>= 3.
|
68
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
69
|
+
rubocop-ast (1.37.0)
|
70
|
+
parser (>= 3.3.1.0)
|
67
71
|
rubocop-capybara (2.18.0)
|
68
72
|
rubocop (~> 1.41)
|
69
73
|
rubocop-factory_bot (2.23.1)
|
@@ -77,20 +81,23 @@ GEM
|
|
77
81
|
snaky_hash (2.0.1)
|
78
82
|
hashie
|
79
83
|
version_gem (~> 1.1, >= 1.1.1)
|
80
|
-
unicode-display_width (
|
84
|
+
unicode-display_width (3.1.3)
|
85
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
86
|
+
unicode-emoji (4.0.4)
|
81
87
|
version_gem (1.1.3)
|
82
88
|
|
83
89
|
PLATFORMS
|
90
|
+
arm64-darwin-24
|
84
91
|
x86_64-darwin-22
|
85
92
|
x86_64-linux
|
86
93
|
|
87
94
|
DEPENDENCIES
|
88
|
-
omniauth (~> 2.1.
|
95
|
+
omniauth (~> 2.1.2)
|
89
96
|
omniauth-oauth2 (~> 1.8.0)
|
90
97
|
rake (~> 13.0.6)
|
91
98
|
rspec (~> 3.12.0)
|
92
99
|
rspec_junit_formatter (~> 0.6.0)
|
93
|
-
rubocop (~> 1.
|
100
|
+
rubocop (~> 1.69.2)
|
94
101
|
rubocop-rspec (~> 2.22.0)
|
95
102
|
|
96
103
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
[](https://badge.fury.io/rb/omniauth-whoplusyou)
|
1
2
|
[](https://dl.circleci.com/status-badge/redirect/gh/riipen/omniauth-whoplusyou/tree/main)
|
2
3
|
|
3
4
|
# OmniAuth WhoPlusYou
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-whoplusyou
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jordan Ell
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth
|
@@ -38,8 +38,8 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.8'
|
41
|
-
description: OmniAuth Oauth2 strategy for WhoPlusYou allowing you to
|
42
|
-
specific WhoPlusYou instance
|
41
|
+
description: "OmniAuth Oauth2 strategy for WhoPlusYou allowing you to \nconnect to
|
42
|
+
a specific WhoPlusYou instance.\n"
|
43
43
|
email:
|
44
44
|
- me@jordanell.com
|
45
45
|
executables: []
|
@@ -61,12 +61,12 @@ files:
|
|
61
61
|
- lib/omniauth/strategies/whoplusyou.rb
|
62
62
|
- lib/omniauth/whoplusyou.rb
|
63
63
|
- lib/omniauth/whoplusyou/version.rb
|
64
|
+
- omniauth-whoplusyou-0.1.0.gem
|
64
65
|
homepage: https://github.com/riipen/omniauth-whoplusyou
|
65
66
|
licenses:
|
66
67
|
- MIT
|
67
68
|
metadata:
|
68
69
|
homepage_uri: https://github.com/riipen/omniauth-whoplusyou
|
69
|
-
source_code_uri: https://github.com/riipen/omniauth-whoplusyou
|
70
70
|
changelog_uri: https://github.com/riipen/omniauth-whoplusyou/blob/master/CHANGELOG.md
|
71
71
|
rubygems_mfa_required: 'true'
|
72
72
|
post_install_message:
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.
|
87
|
+
rubygems_version: 3.5.11
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: OmniAuth Oauth2 strategy for WhoPlusYou.
|