ruby-range-compressor 1.0.0 Simple arrays of objects to arrays of ranges compressor

RangeCompresses is a tiny library that allows compressing arrays of objects into arrays of ranges. For example, it can turn the following: [1, 2, 3, 4, 6, 8, 9, 10] into [1..4, 6..6, 8..10].