ciam-es 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ciam-es.gemspec +1 -1
- data/lib/ciam/ruby-saml/logout_response.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb9b46bf824cdacb850c58b9738b9d721c867f581b408c31bb73c8825ffd12e6
|
4
|
+
data.tar.gz: 4ce376174e42c4591a92b69492dc74d99a4bbac0bcf2f4e52ef8ba5dcc5f795e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c97441c42eaeee5054c18d60d453dd9c484f33497974ff7bf8570efcfe638a3a1084529b486c837cbbef703f2f2ea6ffb9fbdd2c1225d6c2b98584b6be5eb57
|
7
|
+
data.tar.gz: 2172dedd7b152474215633d2cdae4e7bf3f15bed9c8ac52ec4175bce16490104140a23c6d65560b96dbbcb563a2730b7d99ad5e9535eae64dad4981e957af9d1
|
data/ciam-es.gemspec
CHANGED
@@ -2,7 +2,7 @@ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'ciam-es'
|
5
|
-
s.version = '0.0.
|
5
|
+
s.version = '0.0.8'
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Fabiano Pavan"]
|
@@ -6,7 +6,7 @@ module Ciam
|
|
6
6
|
module Saml
|
7
7
|
class LogoutResponse
|
8
8
|
include Coding
|
9
|
-
include
|
9
|
+
include Request
|
10
10
|
ASSERTION = "urn:oasis:names:tc:SAML:2.0:assertion"
|
11
11
|
PROTOCOL = "urn:oasis:names:tc:SAML:2.0:protocol"
|
12
12
|
DSIG = "http://www.w3.org/2000/09/xmldsig#"
|
@@ -84,7 +84,7 @@ module Ciam
|
|
84
84
|
|
85
85
|
Logging.debug "Created LogoutResponse:\n #{response_doc}"
|
86
86
|
|
87
|
-
return
|
87
|
+
return response_doc.to_s
|
88
88
|
|
89
89
|
end
|
90
90
|
|