Sha256: ca2268c61441cadc9259b8bd215ac6b1d1fbfb52554a5bb04d8dbcf5ec2ca5a0

Contents?: true

Size: 465 Bytes

Versions: 11

Compression:

Stored size: 465 Bytes

Contents

module CassandraObject
  module Types
    class TimeWithZoneType
      def encode(time)
        raise ArgumentError.new("#{self} requires a Time") unless time.kind_of?(Time)
        time.utc.xmlschema(6)
      end

      def decode(str)
        return nil if str.empty?
        raise ArgumentError.new("Cannot convert #{str} into a Time") unless str.kind_of?(String) && str.match(TimeType::REGEX)
        Time.xmlschema(str).in_time_zone
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
gotime-cassandra_object-2.5.0 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.4.2 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.4.1 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.4.0 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.6 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.5 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.4 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.3 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.2 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.1 lib/cassandra_object/types/time_with_zone_type.rb
gotime-cassandra_object-2.3.0 lib/cassandra_object/types/time_with_zone_type.rb