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.7 lib/active_model/type/float.rb
activemodel-7.0.6 lib/active_model/type/float.rb
activemodel-7.0.5.1 lib/active_model/type/float.rb
activemodel-6.1.7.4 lib/active_model/type/float.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activemodel-7.0.2.3/lib/active_model/type/float.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activemodel-6.1.6.1/lib/active_model/type/float.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activemodel-7.0.3.1/lib/active_model/type/float.rb
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/type/float.rb
activemodel-7.0.5 lib/active_model/type/float.rb
activemodel-7.0.4.3 lib/active_model/type/float.rb
activemodel-6.1.7.3 lib/active_model/type/float.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/type/float.rb
activemodel-6.1.7.2 lib/active_model/type/float.rb
activemodel-7.0.4.2 lib/active_model/type/float.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/type/float.rb
activemodel-7.0.4.1 lib/active_model/type/float.rb
activemodel-6.1.7.1 lib/active_model/type/float.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activemodel-7.0.4/lib/active_model/type/float.rb
activemodel-7.0.4 lib/active_model/type/float.rb
activemodel-6.1.7 lib/active_model/type/float.rb