jcleary/blade

View on GitHub
app/helpers/time_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TimeHelper
  def minutes_and_seconds(seconds)
    Time.at(seconds).utc.strftime("%M:%S")
  end
end