Module: Deis

Defined in:
lib/deis.rb,
lib/deis/runner.rb,
lib/deis/helpers.rb,
lib/deis/version.rb,
lib/deis/commands.rb,
lib/deis/commands/info.rb,
lib/deis/commands/deploy.rb,
lib/deis/commands/enable.rb,
lib/deis/commands/exists.rb,
lib/deis/commands/disable.rb,
lib/deis/commands/version.rb,
lib/deis/commands/copy_config.rb

Defined Under Namespace

Modules: Commands, Helpers Classes: Runner

Constant Summary collapse

TRUTHY_STRINGS =
%w(t true y yes 1).flat_map do |str|
  [str.downcase, str.upcase, str.capitalize]
end.uniq
FALSEY_STRINGS =
%w(f false n no 0).flat_map do |str|
  [str.downcase, str.upcase, str.capitalize]
end.uniq
NonZeroExitError =
Class.new(StandardError)
VERSION =
"1.0.10"

Class Method Summary collapse

Class Method Details

.retry_counterObject



6
7
8
# File 'lib/deis/helpers.rb', line 6

def self.retry_counter
  @retry_counter ||= 0
end

.retry_counter=(int) ⇒ Object



10
11
12
# File 'lib/deis/helpers.rb', line 10

def self.retry_counter=(int)
  @retry_counter = int
end