# File lib/travis/cli/report.rb, line 65
      def endpoints
        config['endpoints'].each do |endpoint, info|
          info = [
            info['access_token']         ? 'access token' : nil,
            info['insecure']             ? 'insecure'     : nil,
            default_endpoint == endpoint ? 'default'      : nil,
            endpoint == api_endpoint     ? 'current'      : nil
          ].compact
          yield endpoint_name(endpoint), endpoint, info.join(', ')
        end
      end