# File lib/rhc/commands/app.rb, line 194 def delete(app) rest_app = rest_client.find_application(options.namespace, app) confirm_action "#{color("This is a non-reversible action! Your application code and data will be permanently deleted if you continue!", :yellow)}\n\nAre you sure you want to delete the application '#{app}'?" say "Deleting application '#{rest_app.name}' ... " rest_app.destroy success "deleted" 0 end