Module: Mongoid::Extensions::String::ClassMethods

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

Instance Method Summary collapse

Instance Method Details

#mongoize(object) ⇒ String Also known as: demongoize

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

Examples:

Mongoize the object.

String.mongoize("123.11")

Parameters:

  • object (Object)

    The object to mongoize.

Returns:

  • (String)

    The object mongoized.



164
165
166
# File 'lib/mongoid/extensions/string.rb', line 164

def mongoize(object)
  object.try(:to_s)
end