Created
November 18, 2010 21:21
-
-
Save ymendel/705647 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> t = Time.now | |
=> Thu Nov 18 15:19:32 -0600 2010 | |
>> ts = t.strftime('%Y-%m-%dT%H:%M:%S%z') | |
=> "2010-11-18T15:19:32-0500" | |
>> Time.parse(ts) | |
=> Thu Nov 18 14:19:32 -0600 2010 | |
>> ts = t.strftime('%Y-%m-%dT%H:%M:%S%Z') | |
=> "2010-11-18T15:19:32CST" | |
>> Time.parse(ts) | |
=> Thu Nov 18 15:19:32 -0600 2010 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment