Sha256: 5cf25f06f9dd1d52b10aa7d095a122b916020945a345f0836c5d876d138cdad2

Contents?: true

Size: 1.5 KB

Versions: 8

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

module Mongoid
  class Criteria
    module Queryable
      module Extensions

        # This module contains additional time with zone behavior.
        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.
          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.
          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.
            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

8 entries across 8 versions & 1 rubygems

Version Path
mongoid-7.5.4 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.5.3 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.5.2 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.5.1 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.4.3 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.5.0 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.4.1 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb
mongoid-7.4.0 lib/mongoid/criteria/queryable/extensions/time_with_zone.rb