lib/protobuf/field/uint32_field.rb in protobuf-2.0.1 vs lib/protobuf/field/uint32_field.rb in protobuf-2.0.2

- old
+ new

@@ -3,8 +3,10 @@ module Protobuf module Field class Uint32Field < VarintField def self.max; UINT32_MAX; end def self.min; 0; end + def max; UINT32_MAX; end + def min; 0; end end end end