gitextract_b233zkyp/ ├── .github/ │ ├── FUNDING.yml │ ├── copilot-instructions.md │ └── workflows/ │ ├── copilot-setup-steps.yml │ ├── release.yml │ ├── rubocop.yml │ └── tests.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── activerecord-gemfiles/ │ ├── ar_5_latest.gemfile │ ├── ar_6_latest.gemfile │ ├── ar_7_latest.gemfile │ └── ar_8_latest.gemfile ├── ar_lazy_preload-gemfiles/ │ ├── ar_lazy_preload_0.6.1.gemfile │ └── ar_lazy_preload_master.gemfile ├── bin/ │ ├── console │ └── setup ├── examples/ │ ├── active_record_integration.rb │ ├── ar_lazy_integration.rb │ ├── ar_lazy_integration_with_isolated_loader.rb │ ├── arguments_support.rb │ ├── context/ │ │ ├── service.rb │ │ ├── setup_ar_lazy.rb │ │ └── setup_database.rb │ ├── core.rb │ ├── goldiloader_integration.rb │ ├── goldiloader_integration_with_isolated_loader.rb │ ├── graphql.rb │ ├── isolated_loader.rb │ ├── lazy_loading.rb │ ├── n1_bind_to.rb │ ├── reloading.rb │ ├── shared_loader.rb │ └── single_case.rb ├── goldiloader-gemfiles/ │ └── goldiloader.gemfile ├── guides/ │ └── enhanced-activerecord.md ├── lib/ │ ├── n1_loader/ │ │ ├── active_record/ │ │ │ ├── associations_preloader.rb │ │ │ ├── associations_preloader_v5.rb │ │ │ ├── associations_preloader_v6.rb │ │ │ ├── base.rb │ │ │ ├── loader.rb │ │ │ └── loader_collection.rb │ │ ├── active_record.rb │ │ ├── ar_lazy_preload/ │ │ │ ├── associated_context_builder.rb │ │ │ ├── context.rb │ │ │ ├── context_adapter.rb │ │ │ ├── loadable.rb │ │ │ ├── loader.rb │ │ │ ├── loader_collection_patch.rb │ │ │ ├── loader_patch.rb │ │ │ └── preloader_patch.rb │ │ ├── ar_lazy_preload.rb │ │ ├── core/ │ │ │ ├── loadable.rb │ │ │ ├── loader.rb │ │ │ ├── loader_builder.rb │ │ │ ├── loader_collection.rb │ │ │ └── preloader.rb │ │ ├── goldiloader/ │ │ │ ├── context.rb │ │ │ ├── context_adapter.rb │ │ │ ├── loadable.rb │ │ │ ├── loader.rb │ │ │ ├── loader_collection_patch.rb │ │ │ ├── loader_patch.rb │ │ │ └── preloader_patch.rb │ │ ├── goldiloader.rb │ │ └── version.rb │ └── n1_loader.rb ├── n1_loader.gemspec └── spec/ ├── activerecord_spec.rb ├── ar_lazy_preload_spec.rb ├── goldiloader_spec.rb ├── n1_loader_spec.rb └── spec_helper.rb