Sha256: c51018d48770ecc04c8f5d9eff8ec858c974d114f23786f697da636ff1cc265d
Contents?: true
Size: 1.6 KB
Versions: 4
Compression:
Stored size: 1.6 KB
Contents
# encoding: utf-8 module Mongoid class Criteria module Queryable module Extensions # This module contains additional time with zone behaviour. module TimeWithZone # Evolve the time as a date, UTC midnight. # # @example Evolve the time to a date query format. # time.__evolve_date__ # # @return [ Time ] The date at midnight UTC. # # @since 1.0.0 def __evolve_date__ ::Time.utc(year, month, day, 0, 0, 0, 0) end # Evolve the time into a utc time. # # @example Evolve the time. # time.__evolve_time__ # # @return [ Time ] The time in UTC. # # @since 1.0.0 def __evolve_time__ utc end module ClassMethods # Evolve the object to an date. # # @example Evolve dates. # # @example Evolve string dates. # # @example Evolve date ranges. # # @param [ Object ] object The object to evolve. # # @return [ Time ] The evolved date time. # # @since 1.0.0 def evolve(object) object.__evolve_time__ end end end end end end end ::ActiveSupport::TimeWithZone.__send__( :include, Mongoid::Criteria::Queryable::Extensions::TimeWithZone ) ::ActiveSupport::TimeWithZone.__send__( :extend, Mongoid::Criteria::Queryable::Extensions::TimeWithZone::ClassMethods )
Version data entries
4 entries across 4 versions & 1 rubygems