Sha256: b38df20c762a8466ef26509bbd0d357a52dd849e02e50ee641f780586e5b6cc7
Contents?: true
Size: 705 Bytes
Versions: 79
Compression:
Stored size: 705 Bytes
Contents
module CipherStashPG module BinaryDecoder class TimestampUtc < Timestamp def initialize(params = {}) super(params.merge(:flags => (CipherStashPG::Coder::TIMESTAMP_DB_UTC | CipherStashPG::Coder::TIMESTAMP_APP_UTC))) end end class TimestampUtcToLocal < Timestamp def initialize(params = {}) super(params.merge(:flags => (CipherStashPG::Coder::TIMESTAMP_DB_UTC | CipherStashPG::Coder::TIMESTAMP_APP_LOCAL))) end end class TimestampLocal < Timestamp def initialize(params = {}) super(params.merge(:flags => (CipherStashPG::Coder::TIMESTAMP_DB_LOCAL | CipherStashPG::Coder::TIMESTAMP_APP_LOCAL))) end end end end
Version data entries
79 entries across 79 versions & 1 rubygems