Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Ruby/Rails, how do I convert a UTC DateTime to another time zone?

share|improve this question

2 Answers

up vote 64 down vote accepted
time.in_time_zone(time_zone)

Example:

zone = ActiveSupport::TimeZone.new("Central Time (US & Canada)")
Time.now.in_time_zone(zone)

or just

Time.now.in_time_zone("Central Time (US & Canada)")

You can find the names of the ActiveSupport time zones by doing:

ActiveSupport::TimeZone.all.map(&:name)
# or for just US
ActiveSupport::TimeZone.us_zones.map(&:name)
share|improve this answer
In irb, when I try Time.now.in_time_zone('CST'), I get the error "undefined method 'in_time_zone'". Are there rails classes that I need in order to get this to work? – Drew Johnson Apr 23 '10 at 2:59
Which version of Rails are you using? Does it work if you do Time.zone.now.in_time_zone(...)? – mckeed Apr 23 '10 at 14:49
5  
To use this outside Rails, require 'active_support/time' first. – sunaku Jan 18 '12 at 17:50
1  
You can list all time zones by running rake time:zones:all. Also see rake -D time. Set the default time zone in config/application.rb. – user664833 Apr 5 '12 at 3:58
1  
@AdamEberlin In Rails you usually use ActiveSupport::TimeWithZone, not DateTime. All this code works on ruby DateTime objects as well as Time objects. – mckeed Jun 6 '12 at 21:36
show 2 more comments

Try ActiveSupport's TimeWithZone objects manipulated with TimeZone. ActiveSupport also provides the in_time_zone method for converting a UTC time to a specified TimeZone time zone. mckeed's answer shows the code.

share|improve this answer
What's the syntax for importing TimeWithZone into my class? Or do I get it by default with Rails? – Drew Johnson Apr 23 '10 at 3:04
1  
I believe you get it by default. mckeed has the code you need, but you won't see it in irb. You need to run it in Rails. – Fred Apr 23 '10 at 4:32
You're right - thanks, Fred - it does come with Rails by default. I was grasping at straws, trying to get it working in irb. – Drew Johnson Apr 23 '10 at 19:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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