Sha256: 318bdcacfc0ed2b61af6236cd2e211c14041b38602ee3243477fcbf441a268e1

Contents?: true

Size: 908 Bytes

Versions: 2

Compression:

Stored size: 908 Bytes

Contents

require 'trollop'

module SimplePerf
  module CLI
    class Destroy
      include Shared

      def execute
        opts = Trollop::options do
          version SimplePerf::VERSION
          banner <<-EOS

Destroys CloudFormation stack.

Usage:
      simple_perf destroy -e ENVIRONMENT -p PROJECT_NAME
EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :project, "Project name to manage", :type => :string
        end
        Trollop::die :environment, "is required but not specified" unless opts[:environment]
        Trollop::die :project, "is required but not specified" unless opts[:project]

        command = 'simple_deploy destroy' +
                        ' -e ' + opts[:environment] +
                        ' -n ' + 'simple-perf-' + opts[:project]

        Shared::pretty_print `#{command}`
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_perf-0.0.7 lib/simple_perf/cli/destroy.rb
simple_perf-0.0.6 lib/simple_perf/cli/destroy.rb