Module: Mongoid::Extensions::Symbol::ClassMethods

Defined in:
lib/mongoid/extensions/symbol.rb

Instance Method Summary collapse

Instance Method Details

#demongoize(object) ⇒ Symbol

Convert the object from its mongo friendly ruby type to this type.

Examples:

Demongoize the object.

Symbol.demongoize(object)

Parameters:

  • object (Object)

    The object to demongoize.

Returns:



27
28
29
# File 'lib/mongoid/extensions/symbol.rb', line 27

def demongoize(object)
  object.try(:to_sym)
end

#mongoize(object) ⇒ Symbol

Turn the object from the ruby type we deal with to a Mongo friendly type.

Examples:

Mongoize the object.

Symbol.mongoize("123.11")

Parameters:

  • object (Object)

    The object to mongoize.

Returns:

  • (Symbol)

    The object mongoized.



40
41
42
# File 'lib/mongoid/extensions/symbol.rb', line 40

def mongoize(object)
  demongoize(object)
end