ruby-saml-nechotech 0.7.22 → 0.7.23
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/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/authrequest.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/logging.rb +2 -2
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/logoutrequest.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/logoutresponse.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/metadata.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/response.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/settings.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/validation_error.rb +0 -0
 - data/lib/onelogin/{ruby-saml → ruby-saml-nechotech}/version.rb +1 -1
 - data/lib/ruby-saml-nechotech.rb +9 -0
 - data/lib/xml_security.rb +1 -1
 - data/ruby-saml-nechotech.gemspec +1 -1
 - data/test/test_helper.rb +2 -2
 - metadata +11 -11
 - data/lib/ruby-saml.rb +0 -9
 
| 
         
            File without changes
         
     | 
| 
         @@ -3,7 +3,7 @@ module Onelogin 
     | 
|
| 
       3 
3 
     | 
    
         
             
              module Saml
         
     | 
| 
       4 
4 
     | 
    
         
             
                class Logging
         
     | 
| 
       5 
5 
     | 
    
         
             
                  def self.debug(message)
         
     | 
| 
       6 
     | 
    
         
            -
                    return if !!ENV["ruby-saml/testing"]
         
     | 
| 
      
 6 
     | 
    
         
            +
                    return if !!ENV["ruby-saml-nechotech/testing"]
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
                    if defined? Rails
         
     | 
| 
       9 
9 
     | 
    
         
             
                      Rails.logger.debug message
         
     | 
| 
         @@ -13,7 +13,7 @@ module Onelogin 
     | 
|
| 
       13 
13 
     | 
    
         
             
                  end
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
                  def self.info(message)
         
     | 
| 
       16 
     | 
    
         
            -
                    return if !!ENV["ruby-saml/testing"]
         
     | 
| 
      
 16 
     | 
    
         
            +
                    return if !!ENV["ruby-saml-nechotech/testing"]
         
     | 
| 
       17 
17 
     | 
    
         | 
| 
       18 
18 
     | 
    
         
             
                    if defined? Rails
         
     | 
| 
       19 
19 
     | 
    
         
             
                      Rails.logger.info message
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         @@ -0,0 +1,9 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/logging'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/authrequest'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/logoutrequest'
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/logoutresponse'
         
     | 
| 
      
 5 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/response'
         
     | 
| 
      
 6 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/settings'
         
     | 
| 
      
 7 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/validation_error'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/metadata'
         
     | 
| 
      
 9 
     | 
    
         
            +
            require 'onelogin/ruby-saml-nechotech/version'
         
     | 
    
        data/lib/xml_security.rb
    CHANGED
    
    
    
        data/ruby-saml-nechotech.gemspec
    CHANGED
    
    
    
        data/test/test_helper.rb
    CHANGED
    
    | 
         @@ -7,9 +7,9 @@ require 'timecop' 
     | 
|
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
            $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
         
     | 
| 
       9 
9 
     | 
    
         
             
            $LOAD_PATH.unshift(File.dirname(__FILE__))
         
     | 
| 
       10 
     | 
    
         
            -
            require 'ruby-saml'
         
     | 
| 
      
 10 
     | 
    
         
            +
            require 'ruby-saml-nechotech'
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            ENV["ruby-saml/testing"] = "1"
         
     | 
| 
      
 12 
     | 
    
         
            +
            ENV["ruby-saml-nechotech/testing"] = "1"
         
     | 
| 
       13 
13 
     | 
    
         | 
| 
       14 
14 
     | 
    
         
             
            class Test::Unit::TestCase
         
     | 
| 
       15 
15 
     | 
    
         
             
              def fixture(document, base64 = true)
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: ruby-saml-nechotech
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.7. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.7.23
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: 
         
     | 
| 
       6 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       7 
7 
     | 
    
         
             
            authors:
         
     | 
| 
         @@ -74,16 +74,16 @@ files: 
     | 
|
| 
       74 
74 
     | 
    
         
             
            - LICENSE
         
     | 
| 
       75 
75 
     | 
    
         
             
            - README.md
         
     | 
| 
       76 
76 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       77 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/authrequest.rb
         
     | 
| 
       78 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/logging.rb
         
     | 
| 
       79 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/logoutrequest.rb
         
     | 
| 
       80 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/logoutresponse.rb
         
     | 
| 
       81 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/metadata.rb
         
     | 
| 
       82 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/response.rb
         
     | 
| 
       83 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/settings.rb
         
     | 
| 
       84 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/validation_error.rb
         
     | 
| 
       85 
     | 
    
         
            -
            - lib/onelogin/ruby-saml/version.rb
         
     | 
| 
       86 
     | 
    
         
            -
            - lib/ruby-saml.rb
         
     | 
| 
      
 77 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/authrequest.rb
         
     | 
| 
      
 78 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/logging.rb
         
     | 
| 
      
 79 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/logoutrequest.rb
         
     | 
| 
      
 80 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/logoutresponse.rb
         
     | 
| 
      
 81 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/metadata.rb
         
     | 
| 
      
 82 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/response.rb
         
     | 
| 
      
 83 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/settings.rb
         
     | 
| 
      
 84 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/validation_error.rb
         
     | 
| 
      
 85 
     | 
    
         
            +
            - lib/onelogin/ruby-saml-nechotech/version.rb
         
     | 
| 
      
 86 
     | 
    
         
            +
            - lib/ruby-saml-nechotech.rb
         
     | 
| 
       87 
87 
     | 
    
         
             
            - lib/schemas/saml20assertion_schema.xsd
         
     | 
| 
       88 
88 
     | 
    
         
             
            - lib/schemas/saml20protocol_schema.xsd
         
     | 
| 
       89 
89 
     | 
    
         
             
            - lib/schemas/xenc_schema.xsd
         
     | 
    
        data/lib/ruby-saml.rb
    DELETED
    
    | 
         @@ -1,9 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            require 'onelogin/ruby-saml/logging'
         
     | 
| 
       2 
     | 
    
         
            -
            require 'onelogin/ruby-saml/authrequest'
         
     | 
| 
       3 
     | 
    
         
            -
            require 'onelogin/ruby-saml/logoutrequest'
         
     | 
| 
       4 
     | 
    
         
            -
            require 'onelogin/ruby-saml/logoutresponse'
         
     | 
| 
       5 
     | 
    
         
            -
            require 'onelogin/ruby-saml/response'
         
     | 
| 
       6 
     | 
    
         
            -
            require 'onelogin/ruby-saml/settings'
         
     | 
| 
       7 
     | 
    
         
            -
            require 'onelogin/ruby-saml/validation_error'
         
     | 
| 
       8 
     | 
    
         
            -
            require 'onelogin/ruby-saml/metadata'
         
     | 
| 
       9 
     | 
    
         
            -
            require 'onelogin/ruby-saml/version'
         
     |