Skip to content

Instantly share code, notes, and snippets.

@todd-a-jacobs
Created November 24, 2016 06:59
Show Gist options
  • Save todd-a-jacobs/c6a0bea3e4966ac269c391bfb117d6ce to your computer and use it in GitHub Desktop.
Save todd-a-jacobs/c6a0bea3e4966ac269c391bfb117d6ce to your computer and use it in GitHub Desktop.
format minutes as "hours:minutes"
def hours_minutes minutes
"%d:%02d" % minutes.divmod(60)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment