load_credentials just returns nil on errors

This commit is contained in:
Volker Zöpfel 2013-11-28 10:24:47 +01:00
parent 31fac0a6f5
commit 4666fedaed
1 changed files with 3 additions and 4 deletions

View File

@ -37,10 +37,9 @@ module Google
##
# Attempt to read in credentials from the specified file.
def load_credentials
if File.exists?(path) && File.readable?(path) && File.writable?(path)
credentials = File.open(path, 'r') { |f| JSON.parse(f.read) }
end
credentials
File.open(path, 'r') { |f| JSON.parse(f.read) }
rescue
nil
end
##