Skip to content

Instantly share code, notes, and snippets.

@rbriank
Created August 8, 2015 04:44
Show Gist options
  • Save rbriank/7d85fbcaa671d9f5785f to your computer and use it in GitHub Desktop.
Save rbriank/7d85fbcaa671d9f5785f to your computer and use it in GitHub Desktop.
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