class Travis::Tools::Github

def oauth_file_tokens

def oauth_file_tokens
  oauth_paths.each do |path|
    file(path) do |content|
      token = content.strip
      yield token unless token.empty?
    end
  end
end