module Mongoid::Extensions::Set::ClassMethods

Public Instance Methods

demongoize(object) click to toggle source

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.

# File lib/mongoid/extensions/set.rb, line 39
def demongoize(object)
  case object
  when ::Set then object
  when ::Array then ::Set.new(object)
  end
end
mongoize(object) click to toggle source

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 | nil ] The object mongoized or nil.

# File lib/mongoid/extensions/set.rb, line 55
def mongoize(object)
  return if object.nil?
  case object
  when ::Set then ::Array.mongoize(object.to_a).uniq
  when ::Array then ::Array.mongoize(object).uniq
  end
end