Class: SimpleDeploy::CLI::Status

Inherits:
Object
  • Object
show all
Includes:
Shared
Defined in:
lib/simple_deploy/cli/status.rb

Instance Method Summary collapse

Methods included from Shared

#command_name, #parse_attributes, #rescue_stackster_exceptions_and_exit, #valid_options?

Instance Method Details

#command_summaryObject



43
44
45
# File 'lib/simple_deploy/cli/status.rb', line 43

def command_summary
  'Show status of a stack'
end

#loggerObject



39
40
41
# File 'lib/simple_deploy/cli/status.rb', line 39

def logger
  @logger ||= SimpleDeployLogger.new :log_level => @opts[:log_level]
end

#showObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/simple_deploy/cli/status.rb', line 9

def show
  @opts = Trollop::options do
    version SimpleDeploy::VERSION
    banner "\nShow status of a stack.\n\nsimple_deploy status -n STACK_NAME -e ENVIRONMENT\n\n"
    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]

  config = Config.new.environment @opts[:environment]

  stack = Stack.new :environment => @opts[:environment],
                    :name        => @opts[:name],
                    :config      => config,
                    :logger      => logger

  rescue_stackster_exceptions_and_exit do
    puts stack.status
  end
end