Skip to content

Instantly share code, notes, and snippets.

@notch8
Created July 2, 2010 21:32
Show Gist options
  • Save notch8/461934 to your computer and use it in GitHub Desktop.
Save notch8/461934 to your computer and use it in GitHub Desktop.
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