# File lib/rhc/commands/app.rb, line 274
    def delete(app)
      rest_app = find_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"

      paragraph{ rest_app.messages.each{ |s| success s } }

      0
    end