Last active
September 10, 2018 23:39
-
-
Save keith/046c420953c00c83202f95b170fa0f8c to your computer and use it in GitHub Desktop.
Revisions
-
keith revised this gist
Sep 10, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Spaceship::Portal.select_team Spaceship::Portal.app.all.collect do |app| print "Delete #{ app.bundle_id }? [y/N]: " delete = gets.strip.downcase == "y" if delete puts "Deleting #{ app.bundle_id }" -
keith created this gist
Sep 10, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ require 'spaceship' Spaceship::Portal.login Spaceship::Portal.select_team Spaceship::Portal.app.all.collect do |app| print "Delete #{ app.bundle_id }? [y/N]: " delete = gets.strip.downcase == "y" if delete puts "Deleting #{ app.bundle_id }" app.delete! end end