Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save mh-github/628c18a0f8c673a452d9ce00604def08 to your computer and use it in GitHub Desktop.
def second_or_fourth_saturday?(date)
return false unless date.saturday?
(8..14).include?(date.day) || (22..28).include?(date.day)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment