require "digest/md5" module RailsSettings class Default < ::Hash class MissingKey < StandardError; end class << self def enabled? source_path && File.exist?(source_path) end def source(value = nil) @source ||= value end def source_path @source || Rails.root.join("config/app.yml") end def [](key) # foo.bar.dar Nested fetch value return instance[key] if instance.key?(key) keys = key.to_s.split(".") instance.dig(*keys) end def instance return @instance if defined? @instance @instance = new end end def initialize content = open(self.class.source_path).read hash = content.empty? ? {} : YAML.load(ERB.new(content).result).to_hash hash = hash[Rails.env] || {} replace hash end end end