Sha256: 7ea0b8da5a9dbdad16ddfd293eadacb861ac2e8e09b280c10d694a0cc1536871
Contents?: true
Size: 974 Bytes
Versions: 18
Compression:
Stored size: 974 Bytes
Contents
require 'trollop' module SimpleDeploy module CLI class Status include Shared def show @opts = Trollop::options do version SimpleDeploy::VERSION banner <<-EOS Show status of a stack. simple_deploy status -n STACK_NAME -e ENVIRONMENT EOS opt :help, "Display Help" opt :environment, "Set the target environment", :type => :string opt :name, "Stack name to manage", :type => :string end valid_options? :provided => @opts, :required => [:environment, :name] SimpleDeploy.create_config @opts[:environment] SimpleDeploy.logger @opts[:log_level] stack = Stack.new :name => @opts[:name], :environment => @opts[:environment] rescue_exceptions_and_exit do puts stack.status end end def command_summary 'Show status of a stack' end end end end
Version data entries
18 entries across 18 versions & 1 rubygems