Module: Mongoid::Extensions::Time

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

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:



13
14
15
# File 'build/mongoid-8.1/lib/mongoid/extensions/time.rb', line 13

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.



24
25
26
# File 'build/mongoid-8.1/lib/mongoid/extensions/time.rb', line 24

def mongoize
  ::Time.mongoize(self)
end