Skip to content

Instantly share code, notes, and snippets.

@alcabanillas-engh
Created October 1, 2008 00:01
Show Gist options
  • Save alcabanillas-engh/13990 to your computer and use it in GitHub Desktop.
Save alcabanillas-engh/13990 to your computer and use it in GitHub Desktop.
>> this_begin_quarter = Time.now.at_beginning_of_quarter
=> Tue Jul 01 00:00:00 -0700 2008
>> this_end_quarter = Time.now.at_end_of_quarter
=> Tue Sep 30 23:59:59 -0700 2008
>> next_begin_quarter = 90.days.from_now.at_beginning_of_quarter
=> Wed Oct 01 00:00:00 -0700 2008
>> next_end_quarter = 90.days.from_now.at_end_of_quarter
=> Wed Dec 31 23:59:59 -0800 2008
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment