datamapper/dm-core

View on GitHub
lib/dm-core/property/integer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DataMapper
  class Property
    class Integer < Numeric
      load_as ::Integer
      dump_as ::Integer

      accept_options :serial

      protected

      # @api semipublic
      def initialize(model, name, options = {})
        if options.key?(:serial) && !kind_of?(Serial)
          raise "Integer #{name} with explicit :serial option is deprecated, use Serial instead (#{caller[2]})"
        end
        super
      end

      # Typecast a value to an Integer
      #
      # @param [#to_str, #to_i] value
      #   value to typecast
      #
      # @return [Integer]
      #   Integer constructed from value
      #
      # @api private
      def typecast_to_primitive(value)
        typecast_to_numeric(value, :to_i)
      end
    end # class Integer
  end # class Property
end # module DataMapper