Module: Mongoid::Extensions::Time

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

Overview

Adds type-casting behavior to Time class.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#__mongoize_time__Time

Mongoizes a Time into a time.

Time always mongoize into Time instances (which are themselves).

Returns:



16
17
18
# File 'lib/mongoid/extensions/time.rb', line 16

def __mongoize_time__
  self
end

#mongoizeTime | nil

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

Examples:

Mongoize the object.

time.mongoize

Returns:

  • (Time | nil)

    The object mongoized or nil.



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

def mongoize
  ::Time.mongoize(self)
end