Skip to content

Commit

Permalink
Upgraded to ruby-saml 0.9.1 to fix digest bug (SAML-Toolkits/ruby-sam…
Browse files Browse the repository at this point in the history
  • Loading branch information
k1w1 committed Apr 28, 2015
1 parent 45426cb commit 0e598f6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
PATH
remote: .
specs:
omniauth-saml (1.3.0)
omniauth-saml (1.3.1)
omniauth (~> 1.1)
ruby-saml (~> 0.8.1)
ruby-saml (~> 0.9.1)

GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.4)
hashie (3.3.2)
hashie (3.4.1)
macaddr (1.7.1)
systemu (~> 2.6.2)
mini_portile (0.6.2)
multi_json (1.3.7)
nokogiri (1.6.5)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
omniauth (1.2.2)
hashie (>= 1.2, < 4)
Expand All @@ -30,14 +30,14 @@ GEM
rspec-expectations (2.14.4)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.4)
ruby-saml (0.8.1)
nokogiri (>= 1.5.0)
ruby-saml (0.9.1)
nokogiri (~> 1.6.0)
uuid (~> 2.3)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
systemu (2.6.4)
systemu (2.6.5)
uuid (2.3.7)
macaddr (~> 1.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/omniauth-saml/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module OmniAuth
module SAML
VERSION = '1.3.1'
VERSION = '1.3.2'
end
end
2 changes: 1 addition & 1 deletion lib/omniauth/strategies/saml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def callback_phase
raise OmniAuth::Strategies::SAML::ValidationError.new("SAML response missing")
end

Rails.logger.debug("SAML response: #{request.params['SAMLResponse']}")
Rails.logger.debug("SAML response: #{request.params['SAMLResponse']}") if defined? Rails

# Call a fingerprint validation method if there's one
if options.idp_cert_fingerprint_validator
Expand Down
2 changes: 1 addition & 1 deletion omniauth-saml.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://github.com/PracticallyGreen/omniauth-saml'

gem.add_runtime_dependency 'omniauth', '~> 1.1'
gem.add_runtime_dependency 'ruby-saml', '~> 0.8.1'
gem.add_runtime_dependency 'ruby-saml', '~> 0.9.1'

gem.add_development_dependency 'rspec', '~> 2.8'
gem.add_development_dependency 'simplecov', '~> 0.6'
Expand Down

0 comments on commit 0e598f6

Please sign in to comment.