ruby-saml-bm 0.6.1 → 0.6.2
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.
data/.gitignore
ADDED
|
@@ -32,7 +32,7 @@ module Onelogin
|
|
|
32
32
|
|
|
33
33
|
def create_authentication_xml_doc(settings)
|
|
34
34
|
uuid = "_" + UUID.new.generate
|
|
35
|
-
time = Time.now.utc.strftime("%Y-%m-%dT%H:%M:%
|
|
35
|
+
time = Time.now.utc.strftime("%Y-%m-%dT%H:%M:%SZ")
|
|
36
36
|
# Create AuthnRequest root element using REXML
|
|
37
37
|
request_doc = REXML::Document.new
|
|
38
38
|
|
data/lib/schemas/xenc_schema.xsd
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
|
|
2
|
+
<!--
|
|
3
|
+
<XXX!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSchema 200102//EN"
|
|
3
4
|
"http://www.w3.org/2001/XMLSchema.dtd"
|
|
4
5
|
[
|
|
5
6
|
<!ATTLIST schema
|
|
@@ -9,7 +10,7 @@
|
|
|
9
10
|
<!ENTITY % p ''>
|
|
10
11
|
<!ENTITY % s ''>
|
|
11
12
|
]>
|
|
12
|
-
|
|
13
|
+
-->
|
|
13
14
|
<schema xmlns='http://www.w3.org/2001/XMLSchema' version='1.0'
|
|
14
15
|
xmlns:xenc='http://www.w3.org/2001/04/xmlenc#'
|
|
15
16
|
xmlns:ds='http://www.w3.org/2000/09/xmldsig#'
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
|
|
2
|
+
<!--
|
|
3
|
+
<XXXX!DOCTYPE schema
|
|
3
4
|
PUBLIC "-//W3C//DTD XMLSchema 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd"
|
|
4
5
|
[
|
|
5
|
-
|
|
6
|
+
<XX!ATTLIST schema
|
|
6
7
|
xmlns:ds CDATA #FIXED "http://www.w3.org/2000/09/xmldsig#">
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
<XX!ENTITY dsig 'http://www.w3.org/2000/09/xmldsig#'>
|
|
9
|
+
<XXX!ENTITY % p ''>
|
|
10
|
+
<X!ENTITY % s ''>
|
|
10
11
|
]>
|
|
11
|
-
|
|
12
|
+
-->
|
|
12
13
|
<!-- Schema for XML Signatures
|
|
13
14
|
http://www.w3.org/2000/09/xmldsig#
|
|
14
15
|
$Revision: 1.1 $ on $Date: 2002/02/08 20:32:26 $ by $Author: reagle $
|
|
Binary file
|
data/ruby-saml-bm.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.version = Onelogin::Saml::VERSION
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
|
-
s.authors = ["
|
|
9
|
+
s.authors = ["Extreme Development"]
|
|
10
10
|
s.date = Time.now.strftime("%Y-%m-%d")
|
|
11
11
|
s.description = %q{SAML toolkit for Ruby on Rails adapted to work with ADFS server}
|
|
12
12
|
s.email = %q{support@onelogin.com}
|
metadata
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
name: ruby-saml-bm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.6.
|
|
5
|
+
version: 0.6.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
|
-
-
|
|
8
|
+
- Extreme Development
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
@@ -69,6 +69,7 @@ extra_rdoc_files:
|
|
|
69
69
|
- LICENSE
|
|
70
70
|
- README.md
|
|
71
71
|
files:
|
|
72
|
+
- .gitignore
|
|
72
73
|
- Gemfile
|
|
73
74
|
- Gemfile.lock
|
|
74
75
|
- LICENSE
|