Created
July 2, 2010 21:32
-
-
Save notch8-old/461934 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def next_meeting(now=1.day.from_now) | |
if Chronic.parse("1st thursday of this month", :context => :past, :now => now) | |
return Chronic.parse('1st thursday of next month', :now => now) | |
else | |
return Chronic.parse("1st thursday of this month", :now => now) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment