Sha256: 354d623d35c468f20a2894d79d977c07e73fe204da07e6f3bbf59a4dff3b820a
Contents?: true
Size: 743 Bytes
Versions: 16
Compression:
Stored size: 743 Bytes
Contents
# frozen_string_literal: true module ActiveModel module Type class Float < Value # :nodoc: include Helpers::Numeric def type :float end def type_cast_for_schema(value) return "::Float::NAN" if value.try(:nan?) case value when ::Float::INFINITY then "::Float::INFINITY" when -::Float::INFINITY then "-::Float::INFINITY" else super end end private def cast_value(value) case value when ::Float then value when "Infinity" then ::Float::INFINITY when "-Infinity" then -::Float::INFINITY when "NaN" then ::Float::NAN else value.to_f end end end end end
Version data entries
16 entries across 16 versions & 4 rubygems