Add months to a date with >>
In ruby you can add days to a date with the + method, and you can add months with >>:
require "date"
Date.today + 1
=> #<Date: 2023-07-11>
Date.today >> 1
=> #<Date: 2023-08-10>
In ruby you can add days to a date with the + method, and you can add months with >>:
require "date"
Date.today + 1
=> #<Date: 2023-07-11>
Date.today >> 1
=> #<Date: 2023-08-10>