Created
July 23, 2013 09:15
-
-
Save joecorcoran/6061079 to your computer and use it in GitHub Desktop.
Thanks that's great.
This file contains 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
$ irb | |
1.9.3-p374-perf :001 > Time | |
=> Time | |
1.9.3-p374-perf :002 > Time.now | |
=> 2013-07-23 10:04:42 +0100 | |
1.9.3-p374-perf :003 > Time.now.iso8601 | |
NoMethodError: undefined method `iso8601' for 2013-07-23 10:04:47 +0100:Time | |
from (irb):3 | |
from /Users/joecorcoran/.rvm/rubies/ruby-1.9.3-p374-perf/bin/irb:16:in `<main>' | |
1.9.3-p374-perf :004 > require 'time' | |
=> true | |
1.9.3-p374-perf :005 > Time.now.iso8601 | |
=> "2013-07-23T10:04:55+01:00" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment