openid_connect 1.1.2 → 1.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db75e487f02e311c6b10d45f6d94fb167799d8a3
|
|
4
|
+
data.tar.gz: 3d3b94d8ebde1a2148ada3f1a85bb9d82c511e8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4dfe4ed94fe1a22a3cddf045e462865c1deebf84a5fe9b2892ea0f0a26053c71a431e95c8ff6a79acb8e03a51e2be199cca219e02b28a306bafd2e8f8b67ad6
|
|
7
|
+
data.tar.gz: 6875f5710d295b1d357ddae698b829459c323e792e969b7ea3c9126ed298c63f6b2f6a6a553397fcafc71cbc385415b44ec6f4b5a8753292d8d8cabd7cfc9b01
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.3
|
|
@@ -20,6 +20,7 @@ module OpenIDConnect
|
|
|
20
20
|
:registration_endpoint,
|
|
21
21
|
:end_session_endpoint,
|
|
22
22
|
:service_documentation,
|
|
23
|
+
:check_session_iframe,
|
|
23
24
|
:op_policy_uri,
|
|
24
25
|
:op_tos_uri
|
|
25
26
|
]
|
|
@@ -101,4 +102,4 @@ module OpenIDConnect
|
|
|
101
102
|
end
|
|
102
103
|
end
|
|
103
104
|
end
|
|
104
|
-
end
|
|
105
|
+
end
|
|
@@ -46,6 +46,17 @@ describe OpenIDConnect::Discovery::Provider::Config::Response do
|
|
|
46
46
|
its(:end_session_endpoint) { should == end_session_endpoint }
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
+
context 'when check_session_iframe given' do
|
|
50
|
+
let(:check_session_iframe) { 'https://server.example.com/check_session_iframe.html' }
|
|
51
|
+
let :attributes do
|
|
52
|
+
minimum_attributes.merge(
|
|
53
|
+
check_session_iframe: check_session_iframe
|
|
54
|
+
)
|
|
55
|
+
end
|
|
56
|
+
it { should be_valid }
|
|
57
|
+
its(:check_session_iframe) { should == check_session_iframe }
|
|
58
|
+
end
|
|
59
|
+
|
|
49
60
|
describe '#as_json' do
|
|
50
61
|
subject { instance.as_json }
|
|
51
62
|
it { should == minimum_attributes }
|
|
@@ -92,4 +103,4 @@ describe OpenIDConnect::Discovery::Provider::Config::Response do
|
|
|
92
103
|
public_keys.first.should be_instance_of OpenSSL::PKey::RSA
|
|
93
104
|
end
|
|
94
105
|
end
|
|
95
|
-
end
|
|
106
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openid_connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nov matake
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -333,7 +333,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
333
333
|
version: '0'
|
|
334
334
|
requirements: []
|
|
335
335
|
rubyforge_project:
|
|
336
|
-
rubygems_version: 2.6.
|
|
336
|
+
rubygems_version: 2.6.11
|
|
337
337
|
signing_key:
|
|
338
338
|
specification_version: 4
|
|
339
339
|
summary: OpenID Connect Server & Client Library
|