saml2 3.0.2 → 3.0.4
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/lib/saml2/identity_provider.rb +1 -1
- data/lib/saml2/service_provider.rb +2 -2
- data/lib/saml2/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdf0197d8ea96bc25fe48c07f75d1b34f47a0251c6b21bad883060b3dd051e33
|
|
4
|
+
data.tar.gz: 2cca62a78597440577ce2af02742e73df9e4948467e61062887d67e9c0a70da1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 854c494344767d066e9a9827091d03c25a4256f33f3719570a54a1741303506830d94202bb5ce69b29e60b73df04f35bc955131502623f5117a96a09e8883228
|
|
7
|
+
data.tar.gz: b7c903740ec0e9e37d48140143b73e33dff7fffbe32e840e32dcfa69f2eb5842245a3c6180d13b28c73c3547001855b7b613e1b02483c89301aa59315ff7eadb
|
|
@@ -54,7 +54,7 @@ module SAML2
|
|
|
54
54
|
builder['md'].IDPSSODescriptor do |idp_sso_descriptor|
|
|
55
55
|
super(idp_sso_descriptor)
|
|
56
56
|
|
|
57
|
-
idp_sso_descriptor['WantAuthnRequestsSigned'] = want_authn_requests_signed? unless want_authn_requests_signed?.nil?
|
|
57
|
+
idp_sso_descriptor.parent['WantAuthnRequestsSigned'] = want_authn_requests_signed? unless want_authn_requests_signed?.nil?
|
|
58
58
|
|
|
59
59
|
single_sign_on_services.each do |sso|
|
|
60
60
|
sso.build(idp_sso_descriptor, 'SingleSignOnService')
|
|
@@ -61,8 +61,8 @@ module SAML2
|
|
|
61
61
|
builder['md'].SPSSODescriptor do |sp_sso_descriptor|
|
|
62
62
|
super(sp_sso_descriptor)
|
|
63
63
|
|
|
64
|
-
sp_sso_descriptor['AuthnRequestsSigned'] = authn_requests_signed? unless authn_requests_signed?.nil?
|
|
65
|
-
sp_sso_descriptor['WantAssertionsSigned'] = want_assertions_signed? unless authn_requests_signed?.nil?
|
|
64
|
+
sp_sso_descriptor.parent['AuthnRequestsSigned'] = authn_requests_signed? unless authn_requests_signed?.nil?
|
|
65
|
+
sp_sso_descriptor.parent['WantAssertionsSigned'] = want_assertions_signed? unless authn_requests_signed?.nil?
|
|
66
66
|
|
|
67
67
|
assertion_consumer_services.each do |acs|
|
|
68
68
|
acs.build(sp_sso_descriptor, 'AssertionConsumerService')
|
data/lib/saml2/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: saml2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cody Cutrer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: 1.5.8
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '1.
|
|
22
|
+
version: '1.10'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: 1.5.8
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '1.
|
|
32
|
+
version: '1.10'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: nokogiri-xmlsec-instructure
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -238,8 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
238
238
|
- !ruby/object:Gem::Version
|
|
239
239
|
version: '0'
|
|
240
240
|
requirements: []
|
|
241
|
-
|
|
242
|
-
rubygems_version: 2.7.6
|
|
241
|
+
rubygems_version: 3.0.0
|
|
243
242
|
signing_key:
|
|
244
243
|
specification_version: 4
|
|
245
244
|
summary: SAML 2.0 Library
|