Sha256: fcef93f1050c89189c4f2c2ec333939edceadd094d705636e8c5c2396afb4c21

Contents?: true

Size: 875 Bytes

Versions: 5

Compression:

Stored size: 875 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 -n STACK_NAME
EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :name, "Stack name to manage", :type => :string
        end
        Trollop::die :environment, "is required but not specified" unless opts[:environment]
        Trollop::die :name, "is required but not specified" unless opts[:name]

        command = 'simple_deploy destroy' +
                        ' -e ' + opts[:environment] +
                        ' -n ' + opts[:name]

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
simple_perf-0.0.5 lib/simple_perf/cli/destroy.rb
simple_perf-0.0.4 lib/simple_perf/cli/destroy.rb
simple_perf-0.0.3 lib/simple_perf/cli/destroy.rb
simple_perf-0.0.2 lib/simple_perf/cli/destroy.rb
simple_perf-0.0.1 lib/simple_perf/cli/destroy.rb