# File lib/heroku/command/sharing.rb, line 32
    def remove
      email = args.shift.downcase rescue ''
      raise(CommandFailed, "Specify an email address to remove from the app.") if email == ''
      heroku.remove_collaborator(app, email)
      display "Collaborator removed."
    end