class Time

def next_month(months = 1)

Returns a new time the specified number of months in the future.
def next_month(months = 1)
  advance(months: months)
end