Fixes styles issues before releasing

- also update .travis.yml to use new infrastructure
This commit is contained in:
Tim Emiola 2015-08-05 16:45:49 -07:00
parent 1463e5f5f9
commit 19b32b47d8
5 changed files with 24 additions and 18 deletions

View File

@ -13,13 +13,3 @@ Metrics/AbcSize:
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 13
# Offense count: 1
# Cop supports --auto-correct.
Performance/ParallelAssignment:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
Style/TrailingUnderscoreVariable:
Enabled: false

View File

@ -1,3 +1,4 @@
sudo: false
language: ruby
rvm:
- 2.2
@ -7,10 +8,24 @@ rvm:
- rbx-2
- jruby
script: "bundle exec rake"
addons:
apt:
packages:
- idn
- build-essential # this and below attempt allow rubinius to be setup ok
- bison
- ruby-dev
- rake zlib1g-dev
- libyaml-dev
- libssl-dev
- libreadline-dev
- libncurses5-dev
- llvm
- llvm-dev
- libeditline-dev
- libedit-dev
before_install:
- gem update bundler
- sudo apt-get update
- sudo apt-get install idn
notifications:
email:
recipients:

View File

@ -91,7 +91,8 @@ module Google
#
# @param scope [string|array|nil] the scope(s) to access
def from_well_known_path(scope = nil)
home_var, base = windows? ? 'APPDATA' : 'HOME', WELL_KNOWN_PATH
home_var = windows? ? 'APPDATA' : 'HOME'
base = WELL_KNOWN_PATH
root = ENV[home_var].nil? ? '' : ENV[home_var]
base = File.join('.config', base) unless windows?
path = File.join(root, base)

View File

@ -71,10 +71,10 @@ describe '#get_application_default' do
{ 'Metadata-Flavor' => 'Google' },
'']
end
end # GCE not detected
end # GCE not detected
Dir.mktmpdir do |dir|
ENV.delete(@var_name) unless ENV[@var_name].nil? # no env var
ENV['HOME'] = dir # no config present in this tmp dir
ENV['HOME'] = dir # no config present in this tmp dir
c = Faraday.new do |b|
b.adapter(:test, stubs)
end
@ -127,10 +127,10 @@ describe '#get_application_default' do
{ 'Metadata-Flavor' => 'Google' },
'']
end
end # GCE detected
end # GCE detected
Dir.mktmpdir do |dir|
ENV.delete(@var_name) unless ENV[@var_name].nil? # no env var
ENV['HOME'] = dir # no config present in this tmp dir
ENV['HOME'] = dir # no config present in this tmp dir
c = Faraday.new do |b|
b.adapter(:test, stubs)
end

View File

@ -54,7 +54,7 @@ shared_examples 'jwt header auth' do
expect(hdr).to_not be_nil
expect(hdr.start_with?(auth_prefix)).to be true
authorization = hdr[auth_prefix.length..-1]
payload, _ = JWT.decode(authorization, @key.public_key)
payload, = JWT.decode(authorization, @key.public_key)
expect(payload['aud']).to eq(test_uri)
expect(payload['iss']).to eq(client_email)
end