module Olddoc

Copyright (C) 2015, all contributors <olddoc-public@80x24.org> License: GPLv3 or later (www.gnu.org/licenses/gpl-3.0.txt)

Constants

VERSION

Public Class Methods

config(path = ".olddoc.yml") click to toggle source
# File lib/olddoc.rb, line 14
def self.config(path = ".olddoc.yml")
  File.readable?(path) and return YAML.load(File.read(path))
  warn "#{path} not found in current directory"
  {}
end