# File lib/heroku/command/sharing.rb, line 43 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