I have a default time zone setup for the rails application. And an instance of the Date object.

How can I get make Date#beginning_of_day to return the beginning of the day in the specified time zone, but not my local timezone.

Is there any other method to get beginning of the day time in the specified timezone for the given date?

link|improve this question

74% accept rate
1  
Isn't the beginning of the day always 00:00 regardless of timezone? – Ant Mar 24 '11 at 12:35
1  
It's always 00:00, but 00:00 is always different in different timezones. The result of #beginning_of_day is aware of timezone. And seems it picks local timezone rather than default: Time.zone. – Bogdan Gusiev Mar 24 '11 at 12:39
feedback

3 Answers

DateTime.now.in_time_zone(Time.zone).beginning_of_day
link|improve this answer
feedback

Date#beginning_of_day will always return 00:00.

But as I understand you want to know time in other time zone while in current time zone is beginning of the day.

So. Let's find out beginning of the day in your current place. Imagine it is Paris, France:

bd = DateTime.now.in_time_zone('Paris').beginning_of_day
# or just
bd = DateTime.now.in_time_zone(1).beginning_of_day
#=> Thu, 24 Mar 2011 00:00:00 WET +01:00

Now lets found out what time is in Moscow:

moscow_time = bd.in_time_zone("Moscow") # or in_time_zone(3)
#=> Thu, 24 Mar 2011 02:00:00 AST +03:00
london_time = bd.in_time_zone("London")
#=> Wed, 23 Mar 2011 23:00:00 GMT +00:00
kyiv_time = bd.in_time_zone("Kyiv")
#=> Thu, 24 Mar 2011 01:00:00 EET +02:00 

For different form now day:

# You even shouldn't call now, because it by default will be 00:00
date = DateTime(2011, 1, 3).in_time_zone("-10")
# or
date = DateTime.new(2011,1,3,0,0,0,"-10")
# and same way as above
moscow_time = date.in_time_zone("Moscow") # or in_time_zone(3)

and converting Date to DateTime

date = Date.new(2011,1,3).to_datetime.change(:offset => "EST")
link|improve this answer
Is it possible to do this for custom date, not just today? – Bogdan Gusiev Mar 24 '11 at 13:02
yes of course, 3 January 2011: bd = DateTime.new(2011, 1, 3).in_time_zone('Paris').beginning_of_day and so on – fl00r Mar 24 '11 at 13:03
And now, I have an Date object... Unfortunately It is not DateTime. If I do #to_datetime - I get beginning_of in wrong timezone. – Bogdan Gusiev Mar 24 '11 at 13:05
1  
Try it before post sounds unfriendly, Bogdan – fl00r Mar 24 '11 at 13:19
1  
I agree wioth @fl00r here @Bogdan... let's keep it civil, remember people are helping you out here. – Jesse Wolgamott Mar 24 '11 at 13:33
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.