Sha256: 4a2abd6803c5d17318842119b6f2fa86865c21e97393842c5cab8840d8abf545
Contents?: true
Size: 653 Bytes
Versions: 15
Compression:
Stored size: 653 Bytes
Contents
require 'yaml' require 'erb' module Config module Sources class YAMLSource attr_accessor :path def initialize(path) @path = path end # returns a config hash from the YML file def load if @path and File.exist?(@path.to_s) result = YAML.load(ERB.new(IO.read(@path.to_s)).result) end result || {} rescue Psych::SyntaxError => e raise "YAML syntax error occurred while parsing #{@path}. " \ "Please note that YAML must be consistently indented using spaces. Tabs are not allowed. " \ "Error: #{e.message}" end end end end
Version data entries
15 entries across 15 versions & 1 rubygems