# File lib/rhc/commands/deployment.rb, line 54
    def show(id)
      rest_app = find_app
      item = rest_app.deployment_activations.reverse_each.detect{|item| item[:deployment].id == id}

      raise RHC::DeploymentNotFoundException, "Deployment ID '#{id}' not found for application #{rest_app.name}." if !item.present?

      display_deployment(item)
      paragraph { say "Use 'rhc show-app #{rest_app.name} --configuration' to check your deployment configurations." }
      0
    end