Sha256: 69eaff7c617c8247bb4976d241f93f4401dfae2bf9b692c14d64fad359fef408
Contents?: true
Size: 178 Bytes
Versions: 37
Compression:
Stored size: 178 Bytes
Contents
class SerialNumber attr_reader :max def initialize(max) @index= -1 @max= max end def next @index = -1 if @index == max @index += 1 @index end end
Version data entries
37 entries across 37 versions & 1 rubygems