# File lib/puppet/module/tool/repository.rb, line 49
    def authenticate(request)
      header "Authenticating for #{@uri}"
      email = prompt('Email Address')
      password = prompt('Password', true)
      request.basic_auth(email, password)
    end