Sha256: 094397739530cce12399ceb15c6b95f40c6de5b8aab1d99f5a5437955193b398
Contents?: true
Size: 1.56 KB
Versions: 4
Compression:
Stored size: 1.56 KB
Contents
module Bullet module Mongoid def self.enable require 'mongoid' ::Mongoid::Contexts::Mongo.class_eval do alias_method :origin_first, :first alias_method :origin_last, :last alias_method :origin_iterate, :iterate alias_method :origin_eager_load, :eager_load def first result = origin_first Bullet::Detector::Association.add_impossible_object(result) result end def last result = origin_last Bullet::Detector::Association.add_impossible_object(result) result end def iterate(&block) records = execute.to_a if records.size > 1 Bullet::Detector::Association.add_possible_objects(records) elsif records.size == 1 Bullet::Detector::Association.add_impossible_object(records.first) end origin_iterate(&block) end def eager_load(docs) associations = criteria.inclusions.map(&:name) docs.each do |doc| Bullet::Detector::Association.add_object_associations(doc, associations) end Bullet::Detector::Association.add_eager_loadings(docs, associations) origin_eager_load(docs) end end ::Mongoid::Relations::Accessors.class_eval do alias_method :origin_set_relation, :set_relation def set_relation(name, relation) Bullet::Detector::NPlusOneQuery.call_association(self, name) origin_set_relation(name, relation) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
bullet-4.1.3 | lib/bullet/mongoid24.rb |
bullet-4.1.2 | lib/bullet/mongoid24.rb |
bullet-4.1.1 | lib/bullet/mongoid24.rb |
bullet-4.1.0 | lib/bullet/mongoid24.rb |