# File lib/bullet/active_record52.rb, line 76 def find_with_associations return super { |r| yield r } if block_given? records = super if Bullet.start? associations = (eager_load_values + includes_values).uniq records.each do |record| Bullet::Detector::Association.add_object_associations(record, associations) end Bullet::Detector::UnusedEagerLoading.add_eager_loadings(records, associations) end records end