Created
August 15, 2011 20:54
-
-
Save brookemckim/1147839 to your computer and use it in GitHub Desktop.
duration_as_hhmm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def duration_as_hhmm | |
seconds = adjusted_duration | |
hours = (seconds / 3600).to_i | |
minutes = (seconds - (hours * 3600)) / 60 | |
# hhmm | |
"#{'%02d' % hours}#{'%02d' % minutes % 60}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment