Skip to content

Instantly share code, notes, and snippets.

@fernandohenriques
Created February 7, 2018 03:32
Show Gist options
  • Save fernandohenriques/d4411d9eef3b9775a15bec3d491f03fe to your computer and use it in GitHub Desktop.
Save fernandohenriques/d4411d9eef3b9775a15bec3d491f03fe to your computer and use it in GitHub Desktop.
Seconds to H:M
module ControllerHelper
def secondsToHM(s)
Time.at(s).utc.strftime("%H:%M")
end
end
<%= secondsToHM(seconds) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment