class Google::Auth::Credentials

def symbolize_hash_keys hash

returns a new Hash with symbol keys instead of string keys.
def symbolize_hash_keys hash
  hash.to_h.transform_keys(&:to_sym)
end