Sha256: 2cf026a8e88f3fec5ebc4219ac9f94960b9b5d85b5ff17c742234d2e9f66c267

Contents?: true

Size: 177 Bytes

Versions: 1

Compression:

Stored size: 177 Bytes

Contents

module Configurable
  module ConfigTypes
    class IntegerType < ObjectType
      matches Integer
      
      def cast(input)
        Integer(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/integer_type.rb