Skip to content

Instantly share code, notes, and snippets.

@hjc
Last active December 10, 2015 10:08
Show Gist options
  • Save hjc/4418564 to your computer and use it in GitHub Desktop.
Save hjc/4418564 to your computer and use it in GitHub Desktop.
Simple extension of Fixnum to help with manipulating dates and times.
class Fixnum
def seconds
self
end
def minutes
self * 60
end
def hours
self * 60 * 60
end
def days
self * 60 * 60 * 24
end
def years
self * 60 * 60 * 24 * 365
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment