Could you possibly use the add days function if it's a Sunday, so Sundays always turn into Mondays for example?if my_date.strftime("%A") == 'Sunday' then
(my_date + days(1)).strftime("%Y-%m-%d")
You could replace days(1)
with days(random(1,6)
for other days too.