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

Version Path
activemodel-6.0.2.2 lib/active_model/type/float.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/float.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activemodel-6.0.2.1/lib/active_model/type/float.rb
activemodel-6.0.2.1 lib/active_model/type/float.rb
activemodel-6.0.2 lib/active_model/type/float.rb
activemodel-6.0.2.rc2 lib/active_model/type/float.rb
activemodel-6.0.2.rc1 lib/active_model/type/float.rb
activemodel-6.0.1 lib/active_model/type/float.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activemodel-6.0.0/lib/active_model/type/float.rb
activemodel-6.0.1.rc1 lib/active_model/type/float.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activemodel-6.0.0/lib/active_model/type/float.rb
activemodel-6.0.0 lib/active_model/type/float.rb
activemodel-6.0.0.rc2 lib/active_model/type/float.rb
activemodel-6.0.0.rc1 lib/active_model/type/float.rb
activemodel-6.0.0.beta3 lib/active_model/type/float.rb
activemodel-6.0.0.beta2 lib/active_model/type/float.rb