Sha256: e13e2e379c6a218631dd79b4d8a735bcc5e815b03d99a747afb4ac6f3245c2e8
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 KB
Contents
require 'yaml' module Semi class Config attr_reader :defaults attr_reader :files attr_reader :validators attr_reader :commands def initialize(path=nil) @defaults = {} @validators = {} @files = [] @commands = {} if path self.load(path) end end def load(path) begin data = YAML.load_file(path) rescue Errno::ENOENT $stderr.puts "Unable to read #{path}" exit(1) end if data.key? 'defaults' @defaults = data['defaults'] end if data.key? 'validate' @validators = data['validate'] end if data.key? 'files' @files = data['files'] end if data.key? 'commands' @commands = data['commands'] end return data end def process_file(filename, dictionary) if Dir.exist? filename Dir.glob("#{filename}/*").each do |file| process_file(file, dictionary) end elsif File.exist? filename # Read the file and apply @dictionary values contents = File.open(filename, 'r') do |fp| renderer = ERB.new(fp.readlines.join, nil, '%<>-') begin renderer.result(dictionary.instance_eval {binding}) rescue SyntaxError => e $stderr.puts "Error processing ERB expressions in #{filename}" $stderr.puts "ERB reported #{e}" exit 1 end end # Reopen the file and write the rendered contents File.open(filename, 'w') do |fp| fp.write(contents) end else raise RuntimeError, "Unable to find file or directory named #{filename}" end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
semi-0.8.6 | lib/semi/config.rb |
semi-0.8.5 | lib/semi/config.rb |
semi-0.8.4 | lib/semi/config.rb |