Created
February 17, 2012 10:43
-
-
Save johanb/1852591 to your computer and use it in GitHub Desktop.
weekend ?
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
| class DateTime | |
| def weekend? | |
| (saturday? || sunday? || (friday? && hour >= 17)) ? true : false | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment