# File lib/wrongdoc.rb, line 26
  def self.config(path = ".wrongdoc.yml")
    File.exist?(path) or abort "#{path} not found in current directory"
    opts = YAML.load(File.read(path))
    opts.keys.each { |k| opts[k.to_sym] = opts.delete(k) } # symbolize keys
    opts
  end