Sha256: 07a06a94b07c0019e47cdb55d5673f408a3867d94467a9a762056f4631013867
Contents?: true
Size: 1.12 KB
Versions: 6
Compression:
Stored size: 1.12 KB
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 opt :read_from_env, "Read credentials and region from environment variables" end valid_options? :provided => @opts, :required => [:environment, :name, :read_from_env] config_arg = @opts[:read_from_env] ? :read_from_env : @opts[:environment] SimpleDeploy.create_config config_arg 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
6 entries across 6 versions & 1 rubygems