ar_lazy_preload icon indicating copy to clipboard operation
ar_lazy_preload copied to clipboard

Lazy loading associations for the ActiveRecord models

Results 5 ar_lazy_preload issues
Sort by recently updated
recently updated
newest added

Follow up on #51. Haven't looked through much of the code yet so this might be a super naïve change. Basically looking to see if tests pass before I start...

Is a full Rails dependency actually necessary for this gem to function? Would love to use it but I'm in the simpler Rack-app land.

Hi @DmitryTsepelev, Could you please help with this case? ```ruby require 'bundler/inline' gemfile(true) do source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem 'activerecord', '= 7.0.6' require "active_record" gem 'ar_lazy_preload' gem...