Created
October 1, 2008 00:01
-
-
Save alcabanillas-engh/13990 to your computer and use it in GitHub Desktop.
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
>> 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