vote up 6 vote down star
3

How do you convert between a DateTime and a Time object in Ruby?

flag

4 Answers

vote up 7 vote down check

You'll need two slightly different conversions.

To convert from Time to DateTime you can amend the Time class as follows:

require 'date'
class Time
  def to_datetime
    # Convert seconds + microseconds into a fractional number of seconds
    seconds = sec + Rational(usec, 10**6)

    # Convert a UTC offset measured in minutes to one measured in a
    # fraction of a day.
    offset = Rational(utc_offset, 60 * 60 * 24)
    DateTime.new(year, month, day, hour, min, seconds, offset)
  end
end

Similar adjustments to Date will let you convert DateTime to Time .

class Date
  def to_gm_time
    to_time(new_offset, :gm)
  end

  def to_local_time
    to_time(new_offset(DateTime.now.offset-offset), :local)
  end

  private
  def to_time(dest, method)
    #Convert a fraction of a day to a number of microseconds
    usec = (dest.sec_fraction * 60 * 60 * 24 * (10**6)).to_i
    Time.send(method, dest.year, dest.month, dest.day, dest.hour, dest.min,
              dest.sec, usec)
  end
end

Note that you have to choose between local time and GM/UTC time.

Both the above code snippits are taken from O'Reilly's Ruby Cookbook. Their code reuse policy permits this.

link|flag
vote up 0 vote down

Can't add comment at proper location, this will have to do.

@Gordon Wilson:

Works for me with the following caveat: to_local_time() returns the utc time instead. I believe the 'DateTime.now.offset-offset' is overkill, since you are specifying ':local' already. The two terms cancel each other out.

link|flag
vote up 7 vote down
require 'time'
require 'date'

t = Time.now
d = DateTime.now

dd = DateTime.parse(t.to_s)
tt = Time.parse(d.to_s)
link|flag
+1 This may not be the most efficient in execution, but it works, it's concise, and it's very readable. – Walt Gordon Jones Jun 16 at 22:20
vote up 2 vote down

This isn't really that hard.

require 'date'

date_time = DateTime.now
# #<DateTime: blah>
date_time.to_time
# #<Time: blah>

time = Time.now
# #<Time: blah>
time.to_datetime
# #<DateTime: blah>
link|flag
1  
this doesn't actually work, as written. If you're doing it within rails, for example it partially works (time.to_datetime returns a datetime, but date_time.to_time returns a datetime too), but in ruby alone it fails entirely. – Cameron Price Nov 11 '08 at 5:35
Epic fail. Classic example of how Rails has polluted Rubyspace. Ramaze FTW! – Pistos Nov 11 '08 at 23:08
This DOES work. I just loaded up irb, and ran that code, and it worked perfectly. Using 1.8.6. – Myrddin Emrys Nov 12 '08 at 0:11
Just checked, and it runs in ruby 1.9.0 as well, using revision 20050ish. – Myrddin Emrys Nov 12 '08 at 0:14
"Works for me", ruby 1.9.0, revision 14709. – Patrick McKenzie Nov 12 '08 at 2:30
show 1 more comment

Your Answer

Get an OpenID
or

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