Class: Foodtaster::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/foodtaster/config.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



8
9
10
11
12
13
14
15
# File 'lib/foodtaster/config.rb', line 8

def initialize
  @log_level = :info
  @drb_port = 35672
  @vagrant_binary = 'vagrant'
  @shutdown_vms = false
  @skip_rollback = false
  @start_server = true
end

Class Method Details

.defaultObject



17
18
19
# File 'lib/foodtaster/config.rb', line 17

def self.default
  self.new
end