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

I can't believe I havent found a simple answer to this; How to convert a unix timestamp (seconds since epoch) to Ruby DateTime?

share|improve this question

2 Answers

up vote 41 down vote accepted

DateTime.strptime can handle seconds since epoch. The number must be converted to a string.

require 'date'
DateTime.strptime("1318996912",'%s')
share|improve this answer

Sorry, brief moment of synapse failure. Here's the real answer.

Time.at(seconds_since_epoc_integer).to_datetime

Brief example (this takes into account the current timezone):

$ date +%s
1318996912

$ irb

ruby-1.9.2-p180 :001 > require 'date'
 => true 

ruby-1.9.2-p180 :002 > Time.at(1318996912).to_datetime
 => #<DateTime: 2011-10-18T23:01:52-05:00 (13261609807/5400,-5/24,2299161)> 

Further update (for UTC):

ruby-1.9.2-p180 :003 > Time.at(1318996912).utc.to_datetime
 => #<DateTime: 2011-10-19T04:01:52+00:00 (13261609807/5400,0/1,2299161)>
share|improve this answer
Thank you... The following answer is a little more succinct, I found Time.at but was trying to find a DateTime equivalent. – Tronathan Oct 19 '11 at 18:57
7  
It's funny but Time.at().to_datetime seems more pleasant than DateTime.strptime() simply because of readability...At least to me anyway – tybro0103 Mar 14 '12 at 17:35
4  
This is not the same as the above anser, Time.at assumes current timezone, where DateTime.strptime uses UTC. – Vitaly Babiy Jan 15 at 15:52

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.