Skip to content

Instantly share code, notes, and snippets.

@stephenjudkins
Created October 28, 2010 00:41
Show Gist options
  • Save stephenjudkins/650338 to your computer and use it in GitHub Desktop.
Save stephenjudkins/650338 to your computer and use it in GitHub Desktop.
ruby-1.9.2-p0 > t = Time.now
=> 2010-10-27 17:41:00 -0700
ruby-1.9.2-p0 > t.utc?
=> false
ruby-1.9.2-p0 > t2 = t.utc
=> 2010-10-28 00:41:00 UTC
ruby-1.9.2-p0 > t
=> 2010-10-28 00:41:00 UTC
ruby-1.9.2-p0 > t.object_id
=> 2154182900
ruby-1.9.2-p0 > t2.object_id
=> 2154182900
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment