Skip to content

Instantly share code, notes, and snippets.

@xn
Created August 2, 2013 04:08
Show Gist options
  • Select an option

  • Save xn/6137427 to your computer and use it in GitHub Desktop.

Select an option

Save xn/6137427 to your computer and use it in GitHub Desktop.
1.9.2p320 :001 > t = Time.new(2013,1,1,0,0,0,0)
=> 2013-01-01 00:00:00 +0000
1.9.2p320 :002 > t.beginning_of_month
=> 2013-01-01 00:00:00 -0800
1.9.2p320 :003 > t.beginning_of_month.utc
=> 2013-01-01 08:00:00 UTC
1.9.2p320 :004 > t.utc.beginning_of_month
=> 2013-01-01 00:00:00 UTC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment