1
0
Fork 0
oldhaven/app/helpers/application_helper.rb

15 lines
228 B
Ruby

module ApplicationHelper
end
class Numeric
def toSeconds
(self / 1000).round
end
def toTime
s = self.toSeconds
m = (s / 60).floor
s -= m * 60
m.to_s << ':' << (s < 10 ? '0' : '') << s.to_s
end
end