If I have d = DateTime.now, how do I convert 'd' into UTC (with the appropriate date)?
|
|
|
Oops! That seems to work in Rails, but not vanilla Ruby (and of course that is what the question is asking)
Does work however. Is there any reason you need to use
|
|||||||||||||||||
|
will work in standard Ruby (i.e. without ActiveSupport). |
|||
|
Unfortunately, the DateTime class doesn't have the convenience methods available in the Time class to do this. You can convert any DateTime object into UTC like this:
You can switch back from UTC to localtime using:
where
You can see this in action in the following irb session:
As you can see above, the initial DateTime object has a -04:00 offset (Eastern Time). I'm in Pacific Time with a -07:00 offset. Calling |
|||
|
|
|
In irb:
will convert the time to the utc. But as posted if it is just Time you can use:
and get it straight away. |
|||
|
|