class Object

Public Instance Methods

load_defaults() click to toggle source
# File lib/devinstall/cli.rb, line 22
def load_defaults
  %w(./devinstall.yml ./.devinstall.yml ~/.devinstall).each do |f|
    Devinstall::Settings.instance.load! f and return true
  end
  puts "Couldn't find default config file and no --config option given at command line"
  exit!
end