Class: Roasted::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/roasted/cli.rb

Instance Method Summary collapse

Instance Method Details

#bootstrapObject



10
11
12
13
14
15
16
# File 'lib/roasted/cli.rb', line 10

def bootstrap()
  say "Starting bootstrapping..."
  raise "Cannot find roastedrc" unless File.exists?(options[:config])
  
  # Load config file
  Roaster.new(options)
end