From: Todd Benson Date: 2008-01-11T13:26:13+09:00 Subject: Re: DateTime new_offset unexpected results On Jan 10, 2008 9:59 PM, Todd Benson > March 9 at (6 - 6) is when your clock changed at midnight. > > Todd > Alright ... before anyone gets a chance to call me an idiot, this works (in the US) ... require 'date' ut = DateTime.civil( 2007, 3, 9, 13, 24 ) puts ut.to_s (4..8).each do |e| puts ut.new_offset( Rational(-e, 24) ) end Todd