From: Xeno Campanoli / Eskimo North and Gmail Date: 2010-09-16T07:38:58+09:00 Subject: Re: Get the beginning of the hour and the end of the hour On 10-09-15 02:47 PM, Chris Gunnels wrote: > I would like to Get the beginning of the current hour and the end of the > current hour in the regular time format Wed Sep 15 15:45:47 -0600 2010 > > I would like to get Wed Sep 15 15:00:00 -0600 2010 and Wed Sep 15 > 15:59:59 -0600 2010 > > I have tried a few things and have search google for > Time.now.beginning_of_hour and Time.now.end_of_hour, but no luck > > Any ideas? > > Thanks Time.local instantiation method? t = Time.now bt = Time.local(t.year,t.mon,t.day,t.hour,0,0) et = Time.local(t.year,t.mon,t.day.d.hour,59,0) xc -- "It's the preponderance, stupid!" - Professor Stephen Schneider, IPCC member