require 'active_support' # Preload all the LHS::Records that are defined in app/models/* # in order to collect record endpoints and to be able to identify records from hrefs # and not only from model constant names (which is different to ActiveRecord) module AutoloadRecords extend ActiveSupport::Concern included do class Engine < Rails::Engine initializer 'Load all LHS::Records from app/models/**' do |app| Middleware.require_records next if app.config.cache_classes app.config.middleware.use Middleware end class Middleware def initialize(app) @app = app end def call(env) self.class.require_records @app.call(env) end def self.require_records Dir.glob(Rails.root.join('app', 'models', '**', '*.rb')).each do |file| require_dependency file if File.read(file).match('LHS::Record') end end end end end end