merged/lib/merged.rb

21 lines
508 B
Ruby
Raw Normal View History

require "merged/version"
require "merged/engine"
module Merged
2022-12-08 15:34:20 +01:00
def self.load_data
["card_style" , "section_style" , "option"].each do |kind|
# loading egine definitions first, can be overriden
load_from kind , Engine.root.join("config/merged/#{kind}.yaml")
end
Page.load_pages
Image.load_images
end
def self.load_from( kind , path )
return unless File.exists?(path)
clazz = "Merged::#{kind.camelcase}".constantize
clazz.load(YAML.load_file( path ))
end
end