Module: Mongoid::Criteria::Queryable::Extensions::DateTime

Defined in:
build/mongoid-7.0/lib/mongoid/criteria/queryable/extensions/date_time.rb

Overview

This module contains additional datetime behaviour.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#__evolve_time__Time

Evolve the date time into a mongo friendly UTC time.

Examples:

Evolve the date time.

date_time.__evolve_time__

Returns:

  • (Time)

    The converted time in UTC.

Since:

  • 1.0.0



18
19
20
21
22
23
24
25
# File 'build/mongoid-7.0/lib/mongoid/criteria/queryable/extensions/date_time.rb', line 18

def __evolve_time__
  usec = strftime("%6N").to_f
  if utc?
    ::Time.utc(year, month, day, hour, min, sec, usec)
  else
    ::Time.local(year, month, day, hour, min, sec, usec).utc
  end
end