Skip to content

Instantly share code, notes, and snippets.

@itspriddle
Created September 23, 2010 17:51
Show Gist options
  • Select an option

  • Save itspriddle/594043 to your computer and use it in GitHub Desktop.

Select an option

Save itspriddle/594043 to your computer and use it in GitHub Desktop.
class Integer
def to_minutes
min = (self / 60.floor)
sec = (self - (min * 60)).round
"%0-2d:%0-2d" % [min, sec]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment