Skip to content

Commit

Permalink
Merge 033831f into 2f8dba1
Browse files Browse the repository at this point in the history
  • Loading branch information
wader committed Aug 13, 2015
2 parents 2f8dba1 + 033831f commit c4ad0bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/omniauth/strategies/openid_connect.rb
Expand Up @@ -127,7 +127,7 @@ def authorize_uri

def public_key
if options.discovery
config.public_keys.first
config.jwks
else
key_or_secret
end
Expand Down
2 changes: 1 addition & 1 deletion omniauth-openid-connect.gemspec
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_dependency 'omniauth', '~> 1.1'
spec.add_dependency 'openid_connect', '= 0.7.3'
spec.add_dependency 'openid_connect', '= 0.9.0'
spec.add_dependency 'addressable', '~> 2.3'
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "minitest"
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Expand Up @@ -30,7 +30,7 @@ def client
end

def user_info
@user_info ||= OpenIDConnect::ResponseObject::UserInfo::OpenID.new(
@user_info ||= OpenIDConnect::ResponseObject::UserInfo.new(
sub: SecureRandom.hex(16),
name: Faker::Name.name,
email: Faker::Internet.email,
Expand Down

0 comments on commit c4ad0bf

Please sign in to comment.