aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/type/float.rb
blob: d88482b85d4134f6d9fc069682c9618a576150db (plain) (tree)
1
2
3
4
5
6
7
8
9


                                 
                              




              
                          



                           






                                                



         
module ActiveRecord
  module Type
    class Float < Value # :nodoc:
      include Helpers::Numeric

      def type
        :float
      end

      alias serialize cast

      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