Sha256: 9e2dc6a242da74741f91eb3424039c8570a4a273113f303d948574d628daffa8

Contents?: true

Size: 751 Bytes

Versions: 2

Compression:

Stored size: 751 Bytes

Contents

# encoding: utf-8
require "mongoid/contexts/paging"
require "mongo_doc/contexts/ids"
require "mongo_doc/contexts/enumerable"
require "mongo_doc/contexts/mongo"

module Mongoid
  module Contexts
    # Determines the context to be used for this criteria. If the class is an
    # embedded document, then the context will be the array in the has_many
    # association it is in. If the class is a root, then the database itself
    # will be the context.
    #
    # Example:
    #
    # <tt>Contexts.context_for(criteria)</tt>
    def self.context_for(criteria)
      if criteria.klass.respond_to?(:collection)
        return MongoDoc::Contexts::Mongo.new(criteria)
      end
      return MongoDoc::Contexts::Enumerable.new(criteria)
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongo_doc-0.3.1 lib/mongo_doc/contexts.rb
mongo_doc-0.3.0 lib/mongo_doc/contexts.rb