authentication (login, logout)
auth:login
log in with your heroku credentials
# File lib/heroku/command/auth.rb, line 11 def login Heroku::Auth.login display "Authentication successful." end
auth:logout
clear local authentication credentials
# File lib/heroku/command/auth.rb, line 22 def logout Heroku::Auth.logout display "Local credentials cleared." end
auth:token
display your api token
# File lib/heroku/command/auth.rb, line 33 def token display Heroku::Auth.api_key end