# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Utils # ResourceLoader can attempt to read a file from a predefined resource directory module ResourceLoader RESOURCES = 'resources' # __FILE__/../../../resources RESOURCE_ROOT = File.join( File.dirname(__FILE__), Contrast::Utils::ObjectShare::PARENT_PATH, Contrast::Utils::ObjectShare::PARENT_PATH, Contrast::Utils::ObjectShare::PARENT_PATH, RESOURCES).cs__freeze def self.load resource File.read(File.join(RESOURCE_ROOT, resource)) end end end end