Sha256: 45c395935a0af7b0e5c8b34e8226bac7a06005a7ce7c610972b755f59b3f638c

Contents?: true

Size: 351 Bytes

Versions: 18

Compression:

Stored size: 351 Bytes

Contents

module Superstore
  module Types
    class FloatType < BaseType
      REGEX = /\A[-+]?\d+(\.\d+)?\Z/
      def encode(float)
        raise ArgumentError.new("#{float.inspect} is not a Float") unless float.kind_of?(Float)
        float.to_s
      end

      def decode(str)
        return nil if str.empty?
        str.to_f
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
superstore-1.2.0 lib/superstore/types/float_type.rb
superstore-1.1.4 lib/superstore/types/float_type.rb
superstore-1.1.3 lib/superstore/types/float_type.rb
superstore-1.1.2 lib/superstore/types/float_type.rb
superstore-1.1.1 lib/superstore/types/float_type.rb
superstore-1.1.0 lib/superstore/types/float_type.rb
superstore-1.0.12 lib/superstore/types/float_type.rb
superstore-1.0.11 lib/superstore/types/float_type.rb
superstore-1.0.10 lib/superstore/types/float_type.rb
superstore-1.0.9 lib/superstore/types/float_type.rb
superstore-1.0.8 lib/superstore/types/float_type.rb
superstore-1.0.7 lib/superstore/types/float_type.rb
superstore-1.0.6 lib/superstore/types/float_type.rb
superstore-1.0.5 lib/superstore/types/float_type.rb
superstore-1.0.4 lib/superstore/types/float_type.rb
superstore-1.0.3 lib/superstore/types/float_type.rb
superstore-1.0.2 lib/superstore/types/float_type.rb
superstore-1.0.0 lib/superstore/types/float_type.rb