# frozen_string_literal: true module ArchivesSpace module Template def self.list Dir.glob File.join(templates_path, "*.erb") end def self.process(template, data) t = ERB.new(read(template)) r = t.result(binding).squeeze("\n") JSON.parse(r).to_json end def self.read(file) File.read("#{templates_path}/#{file}.json.erb") end def self.templates_path ENV.fetch( "ARCHIVESSPACE_CLIENT_TEMPLATES_PATH", File.join(File.dirname(File.expand_path(__FILE__)), "templates") ) end end end