# File lib/backup/config.rb, line 30 def load_config! unless File.exist?(@config_file) raise Errors::Config::NotFoundError, "Could not find configuration file: '#{@config_file}'." end module_eval(File.read(@config_file), @config_file) end