oldhaven/app/helpers/application_helper.rb
2011-04-09 17:41:24 +04:00

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