Created
July 4, 2017 03:03
-
-
Save crispgm/c770514fb36662d4e4d7a93661431af1 to your computer and use it in GitHub Desktop.
Monkey partch to add `this_year?` to Rails
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
module DateAndTime | |
module Calculations | |
def this_year? | |
year == ::Date.current.year | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment