omniauth-gitlab 4.0.0 → 4.1.0
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/README.md +1 -1
- data/lib/omniauth/strategies/gitlab.rb +1 -3
- data/lib/omniauth-gitlab/version.rb +1 -1
- data/omniauth-gitlab.gemspec +1 -1
- data/spec/omniauth/strategies/gitlab_spec.rb +23 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c36f216de3933b8e782706e7fe0951a9df1d796df257ddc712398162245c9117
|
|
4
|
+
data.tar.gz: 45b8a3bfbb477ec3ec98f428bc582db73259528875e08ad38792b78ff23981e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66021915a9373712a724e8348bd6948bc0d3c31cd98afbbcdf6bd4b4f20a67a6c4344939e82475c6de8faca1abc1ea99e052f5bb9b85f342544f488d3418e632
|
|
7
|
+
data.tar.gz: c6d4db7f49f3eb046eb34d17509ee5beabf6ea7e6eb2096e41a5bccdaa3df58a8da37c6f5997a19b835eb08bc38d4d56bcbf280dc0aae7fcbf86975aee19b272
|
data/README.md
CHANGED
|
@@ -27,10 +27,8 @@ module OmniAuth
|
|
|
27
27
|
@raw_info ||= access_token.get('api/v4/user').parsed
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
private
|
|
31
|
-
|
|
32
30
|
def callback_url
|
|
33
|
-
options.redirect_url || (full_host +
|
|
31
|
+
options.redirect_url || (full_host + callback_path)
|
|
34
32
|
end
|
|
35
33
|
end
|
|
36
34
|
end
|
data/omniauth-gitlab.gemspec
CHANGED
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
|
|
|
18
18
|
gem.require_paths = ['lib']
|
|
19
19
|
|
|
20
20
|
gem.add_dependency 'omniauth', '~> 2.0'
|
|
21
|
-
gem.add_dependency 'omniauth-oauth2', '~> 1.
|
|
21
|
+
gem.add_dependency 'omniauth-oauth2', '~> 1.8.0'
|
|
22
22
|
gem.add_development_dependency 'rspec', '~> 3.1'
|
|
23
23
|
gem.add_development_dependency 'rspec-its', '~> 1.0'
|
|
24
24
|
gem.add_development_dependency 'simplecov'
|
|
@@ -5,7 +5,7 @@ describe OmniAuth::Strategies::GitLab do
|
|
|
5
5
|
let(:parsed_response) { double('ParsedResponse') }
|
|
6
6
|
let(:response) { double('Response', parsed: parsed_response) }
|
|
7
7
|
|
|
8
|
-
let(:enterprise_site) { 'https://some.other.site.com
|
|
8
|
+
let(:enterprise_site) { 'https://some.other.site.com' }
|
|
9
9
|
|
|
10
10
|
let(:gitlab_service) { OmniAuth::Strategies::GitLab.new({}) }
|
|
11
11
|
let(:enterprise) do
|
|
@@ -55,4 +55,26 @@ describe OmniAuth::Strategies::GitLab do
|
|
|
55
55
|
expect(subject.raw_info).to eq(parsed_response)
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
|
+
|
|
59
|
+
describe '#callback_url' do
|
|
60
|
+
let(:base_url) { 'https://example.com' }
|
|
61
|
+
|
|
62
|
+
context 'no script name present' do
|
|
63
|
+
it 'has the correct default callback path' do
|
|
64
|
+
allow(subject).to receive(:full_host) { base_url }
|
|
65
|
+
allow(subject).to receive(:script_name) { '' }
|
|
66
|
+
allow(subject).to receive(:query_string) { '' }
|
|
67
|
+
expect(subject.callback_url).to eq(base_url + '/auth/gitlab/callback')
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
context 'script name' do
|
|
72
|
+
it 'should set the callback path with script_name' do
|
|
73
|
+
allow(subject).to receive(:full_host) { base_url }
|
|
74
|
+
allow(subject).to receive(:script_name) { '/v1' }
|
|
75
|
+
allow(subject).to receive(:query_string) { '' }
|
|
76
|
+
expect(subject.callback_url).to eq(base_url + '/v1/auth/gitlab/callback')
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
end
|
|
58
80
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-gitlab
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sergey Sein
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omniauth
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.
|
|
33
|
+
version: 1.8.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1.
|
|
40
|
+
version: 1.8.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rspec
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|