Module: Mongoid::Extensions::DateTime::ClassMethods

Defined in:
build/mongoid-8.1/lib/mongoid/extensions/date_time.rb

Instance Method Summary collapse

Instance Method Details

#demongoize(object) ⇒ DateTime | nil

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

Examples:

Demongoize the object.

DateTime.demongoize(object)

Parameters:

  • object (Time)

    The time from Mongo.

Returns:

  • (DateTime | nil)

    The object as a datetime or nil.



43
44
45
# File 'build/mongoid-8.1/lib/mongoid/extensions/date_time.rb', line 43

def demongoize(object)
  ::Time.demongoize(object).try(:to_datetime)
end

#mongoize(object) ⇒ Time

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

Examples:

Mongoize the object.

DateTime.mongoize("2012-1-1")

Parameters:

  • object (Object)

    The object to convert.

Returns:

  • (Time)

    The object mongoized.



56
57
58
# File 'build/mongoid-8.1/lib/mongoid/extensions/date_time.rb', line 56

def mongoize(object)
  ::Time.mongoize(object)
end