Method: Mongoid::Extensions::Time#mongoize

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

#mongoizeTime

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

Examples:

Mongoize the object.

time.mongoize

Returns:

  • (Time)

    The object mongoized.

Since:

  • 3.0.0


18
19
20
# File 'lib/mongoid/extensions/time.rb', line 18

def mongoize
  ::Time.mongoize(self)
end