Class: Deis::Runner

Inherits:
Struct
  • Object
show all
Includes:
Helpers
Defined in:
lib/deis/runner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helpers

#app_exists?, #capture_output, #capture_syscall, #debug?, #deis_command, #deis_local_command, #deis_login!, #deploy, #get_runner, #get_units!, #git_clone, #increment_retry!, #info, #reset_retry!, #run_util, #scale, seconds_to_human, #shell, #should_retry?, #status, #units

Instance Attribute Details

#argsObject

Returns the value of attribute args

Returns:

  • (Object)

    the current value of args



2
3
4
# File 'lib/deis/runner.rb', line 2

def args
  @args
end

Instance Method Details

#runObject



5
6
7
8
9
# File 'lib/deis/runner.rb', line 5

def run
  command = args.shift
  status  = run_util(command, *args)
  exit status === false ? 1 : 0
end