Forked from shunchu/convert-seconds-into-hh-mm-ss-in-ruby.rb
Last active
August 29, 2015 14:10
-
-
Save JaisonBrooks/c20209b4196de4fe82de to your computer and use it in GitHub Desktop.
This file contains 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
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