Sha256: e597e808f2a733b713bbd4aec2f24e8f1fb95a987a67ea30f4f7fb5e512e86ea
Contents?: true
Size: 973 Bytes
Versions: 10
Compression:
Stored size: 973 Bytes
Contents
# encoding: utf-8 module Mongoid #:nodoc: module Collections #:nodoc: module Operations #:nodoc: # Constant definining all the read operations available for a # Mongo:Collection. This is used in delegation. READ = [ :[], :db, :count, :distinct, :find, :find_one, :group, :index_information, :map_reduce, :mapreduce, :stats, :options ] # Constant definining all the write operations available for a # Mongo:Collection. This is used in delegation. WRITE = [ :<<, :create_index, :drop, :drop_index, :drop_indexes, :insert, :remove, :rename, :save, :update ] # Convenience constant for getting back all collection operations. ALL = (READ + WRITE) PROXIED = ALL - [ :find, :find_one, :map_reduce, :mapreduce ] end end end
Version data entries
10 entries across 10 versions & 2 rubygems