libsaml 2.18.0 → 2.18.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/saml.rb +1 -0
- data/lib/saml/elements/session_index.rb +13 -0
- data/lib/saml/logout_request.rb +1 -0
- data/lib/saml/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a7d5e9cb4851e47323b178b9b7b86eab512657c
|
4
|
+
data.tar.gz: 9f10c4a7b73c0d83acdca24bf1782945793da11a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 966b8d7146c8d6c1b5b26565be447e2d3ca9bdd5e7890323b9e0705f45c608a5214bf34279dda826643e631e6f3d9a365a9a64e1530dbb13bfae2398a9267aa0
|
7
|
+
data.tar.gz: 43a3170322fb2bd5e5ff4e210f352f688a8a38dfa59ec26daa25cceebaaedec2c4ffe48dfc4ac9535cd6e058e30fa23379d336266fdf1a35698544dd8b123c96
|
data/lib/saml.rb
CHANGED
@@ -125,6 +125,7 @@ module Saml
|
|
125
125
|
require 'saml/elements/encrypted_attribute'
|
126
126
|
require 'saml/elements/name_id'
|
127
127
|
require 'saml/elements/name_id_format'
|
128
|
+
require 'saml/elements/session_index'
|
128
129
|
require 'saml/elements/encrypted_id'
|
129
130
|
require 'saml/elements/attribute_value'
|
130
131
|
require 'saml/elements/attribute'
|
data/lib/saml/logout_request.rb
CHANGED
@@ -9,6 +9,7 @@ module Saml
|
|
9
9
|
attribute :not_on_or_after, Time, :tag => "NotOnOrAfter", :on_save => lambda { |val| val.utc.xmlschema if val.present? }
|
10
10
|
|
11
11
|
element :name_id, String, :tag => "NameID", :namespace => 'saml'
|
12
|
+
element :session_index, String, :tag => "SessionIndex", :namespace => 'samlp'
|
12
13
|
|
13
14
|
validates :name_id, :presence => true
|
14
15
|
end
|
data/lib/saml/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libsaml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.18.
|
4
|
+
version: 2.18.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benoist Claassen
|
@@ -187,6 +187,7 @@ files:
|
|
187
187
|
- lib/saml/elements/samlp_extensions.rb
|
188
188
|
- lib/saml/elements/service_description.rb
|
189
189
|
- lib/saml/elements/service_name.rb
|
190
|
+
- lib/saml/elements/session_index.rb
|
190
191
|
- lib/saml/elements/signature.rb
|
191
192
|
- lib/saml/elements/signature/canonicalization_method.rb
|
192
193
|
- lib/saml/elements/signature/digest_method.rb
|