Created
April 14, 2017 10:59
-
-
Save mh-github/628c18a0f8c673a452d9ce00604def08 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 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