aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type/unsigned_integer.rb
blob: 3f49f9f5f750c0652770fe69c5b77798458c1fed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module ActiveModel
  module Type
    class UnsignedInteger < Integer # :nodoc:
      private

      def max_value
        super * 2
      end

      def min_value
        0
      end
    end
  end
end