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.
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Onelogin
2
2
  module Saml
3
- VERSION = '0.7.22'
3
+ VERSION = '0.7.23'
4
4
  end
5
5
  end
@@ -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'
@@ -29,7 +29,7 @@ require "openssl"
29
29
  require 'nokogiri'
30
30
  require "digest/sha1"
31
31
  require "digest/sha2"
32
- require "onelogin/ruby-saml/validation_error"
32
+ require "onelogin/ruby-saml-nechotech/validation_error"
33
33
 
34
34
  module XMLSecurity
35
35
 
@@ -1,5 +1,5 @@
1
1
  $LOAD_PATH.push File.expand_path('../lib', __FILE__)
2
- require 'onelogin/ruby-saml/version'
2
+ require 'onelogin/ruby-saml-nechotech/version'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'ruby-saml-nechotech'
@@ -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.22
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
@@ -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'