Sha256: 0b417447f8e9b4b3a7c4cd283e10d90337e1d717c07bed95fca688f214b81142
Contents?: true
Size: 489 Bytes
Versions: 14
Compression:
Stored size: 489 Bytes
Contents
# encoding: utf-8 module Axiom module Types # Represents a date time type class Time < Object extend ValueComparable # The minimum and maximum seconds for Time on 32-bit systems MINIMUM_SECONDS = -2**31 MAXIMUM_SECONDS = 2**31 - 1 primitive ::Time coercion_method :to_time minimum primitive.at(MINIMUM_SECONDS).utc maximum primitive.at(MAXIMUM_SECONDS).utc end # class Time end # module Types end # module Axiom
Version data entries
14 entries across 12 versions & 4 rubygems