# File lib/heroku/commands/sharing.rb, line 9
    def add
      email = args.shift.downcase rescue ''
      raise(CommandFailed, "Specify an email address to share the app with.") if email == ''
      display heroku.add_collaborator(app, email)
    end