Last active
February 14, 2017 20:06
-
-
Save perrupa/d357b49b6670a81f66018a336203d1af 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
# this_weekend = Weekender::this_weekend() | |
class Weekender | |
def self.this_weekend( today = Date.now() ) | |
case today.day | |
when :friday | |
when :saturday | |
when :sunday | |
Weekend.new(today.previous_friday, today.next_sunday) | |
default | |
Weekend.new(today.next_friday, today.next_sunday) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment