omniauth-pacreception 0.3.0 → 0.3.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/.github/workflows/ci.yml +23 -0
- data/.tool-versions +1 -0
- data/Gemfile.lock +50 -24
- data/lib/omniauth/pacreception/version.rb +1 -1
- data/omniauth-pacreception.gemspec +2 -2
- metadata +7 -23
- data/.travis.yml +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a596fae00fe6dae2c0e0e4b72cca383dc984b1b8d097d0ca693da14e5e2c4f9e
|
|
4
|
+
data.tar.gz: 3a0751fc4ebbaf286a6fe7c2a4414dc0bdf6663287f048fec3dc18aa385cc9fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee3eb120acd77ad670279becf8db814df50b4cecf71114fc289584f482893f813cdbc55d15a7b09f7385bebd937668e4097c609d67626b5191dacbeb06591057
|
|
7
|
+
data.tar.gz: bdaacb4a50da825b7694a90179c769c871a45185a66d05df41246aeb6c817ef028f0c04d59cc7bf61aa5c6c736370aca87b6b26f8d06f6c685d23fee46d9b858
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [master]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
ruby: ["3.2", "3.3", "3.4", "4.0"]
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
18
|
+
uses: ruby/setup-ruby@v1
|
|
19
|
+
with:
|
|
20
|
+
ruby-version: ${{ matrix.ruby }}
|
|
21
|
+
bundler-cache: true
|
|
22
|
+
- name: Run tests
|
|
23
|
+
run: bundle exec rake test
|
data/.tool-versions
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby 4.0
|
data/Gemfile.lock
CHANGED
|
@@ -1,46 +1,72 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
omniauth-pacreception (0.3.
|
|
4
|
+
omniauth-pacreception (0.3.1)
|
|
5
5
|
omniauth-oauth2 (~> 1.8)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
anonymous_loader (0.1.2)
|
|
11
|
+
version_gem (~> 1.1, >= 1.1.13)
|
|
12
|
+
auth-sanitizer (0.2.2)
|
|
13
|
+
version_gem (~> 1.1, >= 1.1.10)
|
|
14
|
+
base64 (0.3.0)
|
|
15
|
+
bigdecimal (4.1.2)
|
|
16
|
+
faraday (2.14.3)
|
|
17
|
+
faraday-net_http (>= 2.0, < 3.5)
|
|
18
|
+
json
|
|
19
|
+
logger
|
|
20
|
+
faraday-net_http (3.4.4)
|
|
21
|
+
net-http (~> 0.5)
|
|
22
|
+
hashie (5.1.0)
|
|
23
|
+
logger
|
|
24
|
+
json (2.20.0)
|
|
25
|
+
jwt (3.2.0)
|
|
26
|
+
base64
|
|
27
|
+
logger (1.7.0)
|
|
28
|
+
minitest (5.27.0)
|
|
29
|
+
multi_xml (0.9.1)
|
|
30
|
+
bigdecimal (>= 3.1, < 5)
|
|
31
|
+
net-http (0.9.1)
|
|
32
|
+
uri (>= 0.11.1)
|
|
33
|
+
oauth2 (2.0.24)
|
|
34
|
+
anonymous_loader (~> 0.1, >= 0.1.1)
|
|
35
|
+
auth-sanitizer (~> 0.2, >= 0.2.2)
|
|
36
|
+
faraday (>= 0.17.3, < 4.0)
|
|
37
|
+
jwt (>= 1.0, < 4.0)
|
|
38
|
+
logger (~> 1.2)
|
|
22
39
|
multi_xml (~> 0.5)
|
|
23
|
-
rack (>= 1.2, <
|
|
24
|
-
|
|
40
|
+
rack (>= 1.2, < 4)
|
|
41
|
+
snaky_hash (~> 2.0, >= 2.0.6)
|
|
42
|
+
version_gem (~> 1.1, >= 1.1.12)
|
|
43
|
+
omniauth (2.1.4)
|
|
25
44
|
hashie (>= 3.4.6)
|
|
26
|
-
|
|
45
|
+
logger
|
|
46
|
+
rack (>= 2.2.3)
|
|
27
47
|
rack-protection
|
|
28
|
-
omniauth-oauth2 (1.
|
|
29
|
-
oauth2 (>=
|
|
48
|
+
omniauth-oauth2 (1.9.0)
|
|
49
|
+
oauth2 (>= 2.0.2, < 3)
|
|
30
50
|
omniauth (~> 2.0)
|
|
31
|
-
rack (2.
|
|
32
|
-
rack-protection (
|
|
33
|
-
|
|
34
|
-
|
|
51
|
+
rack (3.2.6)
|
|
52
|
+
rack-protection (4.2.1)
|
|
53
|
+
base64 (>= 0.1.0)
|
|
54
|
+
logger (>= 1.6.0)
|
|
55
|
+
rack (>= 3.0.0, < 4)
|
|
56
|
+
rake (13.4.2)
|
|
57
|
+
snaky_hash (2.0.6)
|
|
58
|
+
hashie (>= 0.1.0, < 6)
|
|
59
|
+
version_gem (>= 1.1.8, < 3)
|
|
60
|
+
uri (1.1.1)
|
|
61
|
+
version_gem (1.1.13)
|
|
35
62
|
|
|
36
63
|
PLATFORMS
|
|
37
64
|
ruby
|
|
38
65
|
|
|
39
66
|
DEPENDENCIES
|
|
40
|
-
bundler (~> 2.4.19)
|
|
41
67
|
minitest (~> 5.25)
|
|
42
68
|
omniauth-pacreception!
|
|
43
69
|
rake (~> 13.0)
|
|
44
70
|
|
|
45
71
|
BUNDLED WITH
|
|
46
|
-
|
|
72
|
+
4.0.10
|
|
@@ -10,8 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["shireesh@elitmus.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{PAC Reception OAuth2 Strategy for OmniAuth}
|
|
13
|
-
spec.description = %q{
|
|
13
|
+
spec.description = %q{An OmniAuth OAuth2 strategy for authenticating users against pacreception.com.}
|
|
14
14
|
spec.homepage = "https://github.com/elitmus/omniauth-pacreception"
|
|
15
|
+
spec.required_ruby_version = ">= 3.1"
|
|
15
16
|
spec.license = "MIT"
|
|
16
17
|
|
|
17
18
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
@@ -37,7 +38,6 @@ Gem::Specification.new do |spec|
|
|
|
37
38
|
|
|
38
39
|
spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.8'
|
|
39
40
|
|
|
40
|
-
spec.add_development_dependency "bundler", "~> 2.4.19"
|
|
41
41
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
42
42
|
spec.add_development_dependency "minitest", "~> 5.25"
|
|
43
43
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-pacreception
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shireesh Jayashetty
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: omniauth-oauth2
|
|
@@ -24,20 +23,6 @@ dependencies:
|
|
|
24
23
|
- - "~>"
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
25
|
version: '1.8'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: bundler
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.4.19
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.4.19
|
|
41
26
|
- !ruby/object:Gem::Dependency
|
|
42
27
|
name: rake
|
|
43
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,15 +51,16 @@ dependencies:
|
|
|
66
51
|
- - "~>"
|
|
67
52
|
- !ruby/object:Gem::Version
|
|
68
53
|
version: '5.25'
|
|
69
|
-
description:
|
|
54
|
+
description: An OmniAuth OAuth2 strategy for authenticating users against pacreception.com.
|
|
70
55
|
email:
|
|
71
56
|
- shireesh@elitmus.com
|
|
72
57
|
executables: []
|
|
73
58
|
extensions: []
|
|
74
59
|
extra_rdoc_files: []
|
|
75
60
|
files:
|
|
61
|
+
- ".github/workflows/ci.yml"
|
|
76
62
|
- ".gitignore"
|
|
77
|
-
- ".
|
|
63
|
+
- ".tool-versions"
|
|
78
64
|
- CODE_OF_CONDUCT.md
|
|
79
65
|
- Gemfile
|
|
80
66
|
- Gemfile.lock
|
|
@@ -96,7 +82,6 @@ metadata:
|
|
|
96
82
|
homepage_uri: https://github.com/elitmus/omniauth-pacreception
|
|
97
83
|
source_code_uri: https://github.com/elitmus/omniauth-pacreception
|
|
98
84
|
changelog_uri: https://github.com/elitmus/omniauth-pacreception
|
|
99
|
-
post_install_message:
|
|
100
85
|
rdoc_options: []
|
|
101
86
|
require_paths:
|
|
102
87
|
- lib
|
|
@@ -104,15 +89,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
104
89
|
requirements:
|
|
105
90
|
- - ">="
|
|
106
91
|
- !ruby/object:Gem::Version
|
|
107
|
-
version: '
|
|
92
|
+
version: '3.1'
|
|
108
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
94
|
requirements:
|
|
110
95
|
- - ">="
|
|
111
96
|
- !ruby/object:Gem::Version
|
|
112
97
|
version: '0'
|
|
113
98
|
requirements: []
|
|
114
|
-
rubygems_version:
|
|
115
|
-
signing_key:
|
|
99
|
+
rubygems_version: 4.0.10
|
|
116
100
|
specification_version: 4
|
|
117
101
|
summary: PAC Reception OAuth2 Strategy for OmniAuth
|
|
118
102
|
test_files: []
|