Skip to content

Instantly share code, notes, and snippets.

@diogob
Created October 22, 2015 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogob/7c50fdfd200886b291aa to your computer and use it in GitHub Desktop.
Save diogob/7c50fdfd200886b291aa to your computer and use it in GitHub Desktop.
class Fixnum
SECONDS_IN_A_DAY = 86400
SECONDS_IN_A_MINUTE = 3600
def days
self * SECONDS_IN_A_DAY
end
def minutes
self * SECONDS_IN_A_MINUTE
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment