Sha256: 1483589b46609f3c3edab64998fd65f1861efbe734a0a95ce00766f895cf2be8
Contents?: true
Size: 1.3 KB
Versions: 59
Compression:
Stored size: 1.3 KB
Contents
# encoding: utf-8 module Mongoid module Extensions module Set # Turn the object from the ruby type we deal with to a Mongo friendly # type. # # @example Mongoize the object. # set.mongoize # # @return [ Array ] The object mongoized. # # @since 3.0.0 def mongoize ::Set.mongoize(self) end module ClassMethods # Convert the object from its mongo friendly ruby type to this type. # # @example Demongoize the object. # Set.demongoize([1, 2, 3]) # # @param [ Array ] object The object to demongoize. # # @return [ Set ] The set. # # @since 3.0.0 def demongoize(object) ::Set.new(object) end # Turn the object from the ruby type we deal with to a Mongo friendly # type. # # @example Mongoize the object. # Set.mongoize(Set.new([1,2,3])) # # @param [ Set ] object The object to mongoize. # # @return [ Array ] The object mongoized. # # @since 3.0.0 def mongoize(object) object.to_a end end end end end ::Set.__send__(:include, Mongoid::Extensions::Set) ::Set.extend(Mongoid::Extensions::Set::ClassMethods)
Version data entries
59 entries across 55 versions & 3 rubygems