I am trying to get a date a year from today. I have got this which
gives me a day in advance
t = Time.now;t1 = t + 100000
p end_date = t1.localtime.strftime("%d/%m/%Y")
I have looked in 'The Ruby Way' and it provides a 'Converting Between
Seconds and Larger Units' method.
Surely there must be a better way?
Aidy
Ken
d = Date::today >> 12
p d.to_s
------------------------------------------------------- Date#>>
>>(n)
---------------------------------------------------------------
Return a new Date object that is n months later than the current one.
If the day-of-the-month of the current Date is greater than the last
day of the target month, the day-of-the-month of the returned Date will
be the last day of the target month.
HTH,
Jim
"JimC" <jim....@gmail.com> wrote in message
news:1149536010....@g10g2000cwb.googlegroups.com...