# File lib/heroku/commands/sharing.rb, line 22
    def transfer
      email = args.shift.downcase rescue ''
      raise(CommandFailed, "Specify the email address of the new owner") if email == ''
      heroku.update(app, :transfer_owner => email)
      display "App ownership transfered. New owner is #{email}"
    end