From 017eb16bd815d37370cefbb35ff7f620fc0be2bf Mon Sep 17 00:00:00 2001 From: Tim Emiola Date: Tue, 24 Feb 2015 22:56:16 -0800 Subject: [PATCH 1/2] Fixes the command travis uses to build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f2607c5..d882c85 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ rvm: - 1.9.3 - rbx-2 - jruby -script: "bundle exec rake spec:all" +script: "bundle exec rake" before_install: - sudo apt-get update - sudo apt-get install idn From 632ebad0af1eada0ae39e389278f267497e9c5bb Mon Sep 17 00:00:00 2001 From: Tim Emiola Date: Tue, 24 Feb 2015 22:56:40 -0800 Subject: [PATCH 2/2] Fixes a lint error in the gemspec --- googleauth.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googleauth.gemspec b/googleauth.gemspec index 305950f..3efc7c8 100755 --- a/googleauth.gemspec +++ b/googleauth.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |s| s.email = 'temiola@google.com' s.homepage = 'https://github.com/google/google-auth-library-ruby' s.summary = 'Google Auth Library for Ruby' - s.license = "Apache-2.0" + s.license = 'Apache-2.0' s.description = <<-eos Allows simple authorization for accessing Google APIs. Provide support for Application Default Credentials, as described at