Skip to content

Instantly share code, notes, and snippets.

@johanb
Created February 17, 2012 10:43
Show Gist options
  • Select an option

  • Save johanb/1852591 to your computer and use it in GitHub Desktop.

Select an option

Save johanb/1852591 to your computer and use it in GitHub Desktop.
weekend ?
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