class Google::Cloud::Credentials

def stringify_hash_keys hash

returns a new Hash with string keys instead of symbol keys.
#
def stringify_hash_keys hash
  hash.transform_keys(&:to_s)
end