Skip to content

Instantly share code, notes, and snippets.

@mh-github
Created April 14, 2017 10:58
Show Gist options
  • Select an option

  • Save mh-github/64c32ef52f1f78221cf8eae9a04a3366 to your computer and use it in GitHub Desktop.

Select an option

Save mh-github/64c32ef52f1f78221cf8eae9a04a3366 to your computer and use it in GitHub Desktop.
def fourth_saturday?(date)
saturdays = (date.beginning_of_month..date.end_of_month).select { |date| date.wday == 6 }
[saturdays.second, saturdays.fourth].include?(date)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment