Sha256: 6b1a7f6c63288df59e3d35bd11f1fe9c6a7f7c381e2783c671ac13aa00b81787

Contents?: true

Size: 171 Bytes

Versions: 1

Compression:

Stored size: 171 Bytes

Contents

module Configurable
  module ConfigTypes
    class FloatType < ObjectType
      matches Float
      
      def cast(input)
        Float(input)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
configurable-1.0.0 lib/configurable/config_types/float_type.rb