If I start with a contiguous sequence of dates:
(Date.today..(Date.today + 30)).to_a
How can I sort this array so that all dates, in sequence, are at least 1 day apart?
I realise that this would of course not be possible for an array of 2 contiguous dates.