Created
June 13, 2010 16:10
-
-
Save dannymcc/436774 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
>> now = Time.now | |
>> now.to_s | |
# => "Mon Mar 05 18:30:48 2007" | |
>> now.to_s(:db) | |
# => "2007-03-05 18:30:48" | |
>> now.to_s(:short) | |
# => "05 Mar 18:30" | |
>> now.to_s(:long) | |
# => "March 05, 2007 18:30" | |
>> now.to_s(:rfc822) | |
# => "Mon, 05 Mar 2007 18:30:48 -0600" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment