Skip to content

Instantly share code, notes, and snippets.

@FrancoB411
Created June 10, 2011 05:35
Show Gist options
  • Select an option

  • Save FrancoB411/1018280 to your computer and use it in GitHub Desktop.

Select an option

Save FrancoB411/1018280 to your computer and use it in GitHub Desktop.
Modifying Fixnum Class to make playing with time easier
class Fixnum
def seconds
self
end
def minutes
self * 60
end
def hours
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