ruby-saml 0.5.3 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ruby-saml might be problematic. Click here for more details.
- data/.gitignore +5 -0
- data/.travis.yml +5 -0
- data/Gemfile +10 -6
- data/{README.rdoc → README.md} +31 -26
- data/lib/onelogin/ruby-saml/authrequest.rb +23 -18
- data/lib/onelogin/ruby-saml/logging.rb +4 -0
- data/lib/onelogin/ruby-saml/logoutrequest.rb +80 -0
- data/lib/onelogin/ruby-saml/response.rb +38 -4
- data/lib/onelogin/ruby-saml/settings.rb +10 -1
- data/lib/onelogin/ruby-saml/version.rb +1 -1
- data/lib/ruby-saml.rb +1 -0
- data/lib/schemas/saml20assertion_schema.xsd +283 -0
- data/lib/schemas/saml20protocol_schema.xsd +302 -0
- data/lib/schemas/xenc_schema.xsd +146 -0
- data/lib/schemas/xmldsig_schema.xsd +318 -0
- data/lib/xml_security.rb +52 -36
- data/ruby-saml.gemspec +4 -26
- data/test/logoutrequest_test.rb +98 -0
- data/test/response_test.rb +40 -2
- data/test/responses/adfs_response_sha1.xml +46 -0
- data/test/responses/{adfs_response.xml → adfs_response_sha256.xml} +0 -0
- data/test/responses/adfs_response_sha384.xml +46 -0
- data/test/responses/adfs_response_sha512.xml +46 -0
- data/test/responses/no_signature_ns.xml +48 -0
- data/test/settings_test.rb +22 -2
- data/test/test_helper.rb +2 -0
- data/test/xml_security_test.rb +103 -4
- metadata +79 -105
- data/Gemfile.lock +0 -38
data/Gemfile.lock
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
columnize (0.3.6)
|
5
|
-
linecache (0.46)
|
6
|
-
rbx-require-relative (> 0.0.4)
|
7
|
-
macaddr (1.5.0)
|
8
|
-
systemu (>= 2.4.0)
|
9
|
-
metaclass (0.0.1)
|
10
|
-
mocha (0.10.5)
|
11
|
-
metaclass (~> 0.0.1)
|
12
|
-
rake (0.8.7)
|
13
|
-
rbx-require-relative (0.0.9)
|
14
|
-
ruby-debug (0.10.4)
|
15
|
-
columnize (>= 0.1)
|
16
|
-
ruby-debug-base (~> 0.10.4.0)
|
17
|
-
ruby-debug-base (0.10.4)
|
18
|
-
linecache (>= 0.3)
|
19
|
-
shoulda (3.0.1)
|
20
|
-
shoulda-context (~> 1.0.0)
|
21
|
-
shoulda-matchers (~> 1.0.0)
|
22
|
-
shoulda-context (1.0.0)
|
23
|
-
shoulda-matchers (1.0.0)
|
24
|
-
systemu (2.5.0)
|
25
|
-
uuid (2.3.5)
|
26
|
-
macaddr (~> 1.0)
|
27
|
-
xmlcanonicalizer (0.1.1)
|
28
|
-
|
29
|
-
PLATFORMS
|
30
|
-
ruby
|
31
|
-
|
32
|
-
DEPENDENCIES
|
33
|
-
mocha (~> 0.10.5)
|
34
|
-
rake
|
35
|
-
ruby-debug (~> 0.10.4)
|
36
|
-
shoulda (~> 3.0.1)
|
37
|
-
uuid (~> 2.3.5)
|
38
|
-
xmlcanonicalizer (~> 0.1.1)
|