Skip to content

Instantly share code, notes, and snippets.

@leejarvis
Created September 16, 2013 19:19
Show Gist options
  • Save leejarvis/862721756d99571dea1f to your computer and use it in GitHub Desktop.
Save leejarvis/862721756d99571dea1f to your computer and use it in GitHub Desktop.
def duration_units(duration)
mins, = duration.divmod(60)
hours, mins = mins.divmod(60)
days, hours = hours.divmod(24)
{ days: days, hours: hours, minutes: mins }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment