Hi, At Tue, 21 Oct 2003 15:16:44 +0900, Emmanuel Touzery wrote: > When i have a Time object, to get to next day i do: myTime += (60*60*24) > Not very elegant, but it works and I didn't find a nicer way. > well, i thought it worked... > > now we are going to change the time in europe... > So it breaks my assumption... If you just want dates, what about date.rb? require 'date' today = Date.today today.to_s # => "2003-10-21" (today+5).to_s # => "2003-10-26" I've not tested it with DST though. -- Nobu Nakada