Sha256: e81b841554a12743cd6f60c5a4d9aa12eab9e87e608e0ddd917bcea75ddb5bd0

Contents?: true

Size: 788 Bytes

Versions: 82

Compression:

Stored size: 788 Bytes

Contents

# frozen_string_literal: true

require "active_support/core_ext/object/try"

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

82 entries across 78 versions & 9 rubygems

Version Path
activemodel-7.0.8.6 lib/active_model/type/float.rb
activemodel-6.1.7.10 lib/active_model/type/float.rb
activemodel-6.1.7.9 lib/active_model/type/float.rb
activemodel-7.0.8.5 lib/active_model/type/float.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activemodel-7.0.8.4/lib/active_model/type/float.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activemodel-7.0.5.1/lib/active_model/type/float.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activemodel-7.0.5.1/lib/active_model/type/float.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activemodel-7.0.5.1/lib/active_model/type/float.rb
activemodel-7.0.8.4 lib/active_model/type/float.rb
activemodel-6.1.7.8 lib/active_model/type/float.rb
activemodel-7.0.8.1 lib/active_model/type/float.rb
activemodel-6.1.7.7 lib/active_model/type/float.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-7.0.3.1/lib/active_model/type/float.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-7.0.2.3/lib/active_model/type/float.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activemodel-6.1.6.1/lib/active_model/type/float.rb
activemodel-7.0.8 lib/active_model/type/float.rb
activemodel-7.0.7.2 lib/active_model/type/float.rb
activemodel-6.1.7.6 lib/active_model/type/float.rb
activemodel-7.0.7.1 lib/active_model/type/float.rb
activemodel-6.1.7.5 lib/active_model/type/float.rb