Module: Mongoid::Criteria::Queryable::Extensions::Date
- Defined in:
- build/mongoid-7.3/lib/mongoid/criteria/queryable/extensions/date.rb
Overview
This module contains additional date behavior.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__evolve_date__ ⇒ Time
Evolve the date into a mongo friendly time, UTC midnight.
-
#__evolve_time__ ⇒ Time
Evolve the date into a time, which is always in the local timezone.
Instance Method Details
#__evolve_date__ ⇒ Time
Evolve the date into a mongo friendly time, UTC midnight.
20 21 22 |
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/extensions/date.rb', line 20 def __evolve_date__ ::Time.utc(year, month, day, 0, 0, 0, 0) end |
#__evolve_time__ ⇒ Time
Evolve the date into a time, which is always in the local timezone.
32 33 34 |
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/extensions/date.rb', line 32 def __evolve_time__ ::Time.local(year, month, day) end |