Class: DewBaseCommand

Inherits:
Clamp::Command
  • Object
show all
Defined in:
lib/dew/base_command.rb

Instance Method Summary collapse

Instance Method Details

#configureObject



2
3
4
5
6
7
# File 'lib/dew/base_command.rb', line 2

def configure
  $debug = debug?
  Inform.level = quiet? ? :warning : (verbose? ? :debug : :info)
  Cloud.region = region
  Cloud. = 
end

#executeObject



9
10
11
12
# File 'lib/dew/base_command.rb', line 9

def execute
  configure
  super
end