Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlyonsmith/018e56a83bb7928749e0d6fd3a1bdde4 to your computer and use it in GitHub Desktop.
Save jlyonsmith/018e56a83bb7928749e0d6fd3a1bdde4 to your computer and use it in GitHub Desktop.
Convert seconds into HH:MM:SS in Ruby
t = 236 # seconds
Time.at(t).utc.strftime("%H:%M:%S")
=> "00:03:56"
# Reference
# http://stackoverflow.com/questions/3963930/ruby-rails-how-to-convert-seconds-to-time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment