Sha256: 99d6a8ffd2017b87d0305571db72e55ba04c48adf8cbf4e79444f18b0806f03c
Contents?: true
Size: 916 Bytes
Versions: 21
Compression:
Stored size: 916 Bytes
Contents
module ActiveRecord module Type class Decimal < Value # :nodoc: include Numeric def type :decimal end def type_cast_for_schema(value) value.to_s end private def cast_value(value) case value when ::Float convert_float_to_big_decimal(value) when ::Numeric, ::String BigDecimal(value, precision.to_i) else if value.respond_to?(:to_d) value.to_d else cast_value(value.to_s) end end end def convert_float_to_big_decimal(value) if precision BigDecimal(value, float_precision) else value.to_d end end def float_precision if precision.to_i > ::Float::DIG + 1 ::Float::DIG + 1 else precision.to_i end end end end end
Version data entries
21 entries across 20 versions & 6 rubygems