Created
August 8, 2015 04:44
-
-
Save rbriank/7d85fbcaa671d9f5785f to your computer and use it in GitHub Desktop.
This file contains 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 Fixnum | |
def minutes | |
self * 60 | |
end | |
def days | |
self * 60 * 60 * 24 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment