Skip to content

Commit

Permalink
Merge pull request #20 from tbetbetbe/grpc-auth-update-dependencies
Browse files Browse the repository at this point in the history
updates gem dependencies to the latest version
  • Loading branch information
tbetbetbe committed Mar 24, 2015
2 parents 3a51630 + 48da187 commit 5124dc2
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
# Google Auth Library for Ruby
# Google Auth Library for Ruby

<dl>
<dt>Homepage</dt><dd><a href="http://www.github.com/google/google-auth-library-ruby">http://www.github.com/google/google-auth-library-ruby</a></dd>
Expand All @@ -7,6 +7,7 @@
<dt>License</dt><dd>Apache 2.0</dd>
</dl>

[![Gem Version](https://badge.fury.io/rb/googleauth.svg)](http://badge.fury.io/rb/googleauth)
[![Build Status](https://secure.travis-ci.org/google/google-auth-library-ruby.png)](http://travis-ci.org/google/google-auth-library-ruby)
[![Coverage Status](https://coveralls.io/repos/google/google-auth-library-ruby/badge.png)](https://coveralls.io/r/google/google-auth-library-ruby)
[![Dependency Status](https://gemnasium.com/google/google-auth-library-ruby.png)](https://gemnasium.com/google/google-auth-library-ruby)
Expand Down
4 changes: 2 additions & 2 deletions googleauth.gemspec
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |s|

s.add_dependency 'faraday', '~> 0.9'
s.add_dependency 'logging', '~> 1.8'
s.add_dependency 'jwt', '~> 1.3.0'
s.add_dependency 'jwt', '~> 1.4.1'
s.add_dependency 'memoist', '~> 0.11.0'
s.add_dependency 'multi_json', '1.11.0'
s.add_dependency 'signet', '~> 0.6.0'
Expand All @@ -36,6 +36,6 @@ Gem::Specification.new do |s|
s.add_development_dependency 'simplecov', '~> 0.9.2'
s.add_development_dependency 'coveralls', '~> 0.7.11'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rubocop', '~> 0.28.0'
s.add_development_dependency 'rubocop', '~> 0.29.1'
s.add_development_dependency 'rspec', '~> 3.0'
end
6 changes: 3 additions & 3 deletions spec/googleauth/compute_engine_spec.rb
Expand Up @@ -51,9 +51,9 @@ def make_auth_stubs(opts = {})
headers = env[:request_headers]
expect(headers['Metadata-Flavor']).to eq('Google')
build_json_response(
'access_token' => access_token,
'token_type' => 'Bearer',
'expires_in' => 3600)
'access_token' => access_token,
'token_type' => 'Bearer',
'expires_in' => 3600)
end
end
end
Expand Down
4 changes: 2 additions & 2 deletions spec/googleauth/service_account_spec.rb
Expand Up @@ -47,8 +47,8 @@
before(:example) do
@key = OpenSSL::PKey::RSA.new(2048)
@client = ServiceAccountCredentials.new(
StringIO.new(cred_json_text),
'https://www.googleapis.com/auth/userinfo.profile')
StringIO.new(cred_json_text),
'https://www.googleapis.com/auth/userinfo.profile')
end

def make_auth_stubs(opts = {})
Expand Down
10 changes: 5 additions & 5 deletions spec/googleauth/signet_spec.rb
Expand Up @@ -41,11 +41,11 @@
before(:example) do
@key = OpenSSL::PKey::RSA.new(2048)
@client = Signet::OAuth2::Client.new(
token_credential_uri: 'https://accounts.google.com/o/oauth2/token',
scope: 'https://www.googleapis.com/auth/userinfo.profile',
issuer: 'app@example.com',
audience: 'https://accounts.google.com/o/oauth2/token',
signing_key: @key
token_credential_uri: 'https://accounts.google.com/o/oauth2/token',
scope: 'https://www.googleapis.com/auth/userinfo.profile',
issuer: 'app@example.com',
audience: 'https://accounts.google.com/o/oauth2/token',
signing_key: @key
)
end

Expand Down
4 changes: 2 additions & 2 deletions spec/googleauth/user_refresh_spec.rb
Expand Up @@ -47,8 +47,8 @@
before(:example) do
@key = OpenSSL::PKey::RSA.new(2048)
@client = UserRefreshCredentials.new(
StringIO.new(cred_json_text),
'https://www.googleapis.com/auth/userinfo.profile')
StringIO.new(cred_json_text),
'https://www.googleapis.com/auth/userinfo.profile')
end

def make_auth_stubs(opts = {})
Expand Down

0 comments on commit 5124dc2

Please sign in to comment.