discourse/lib/age_words.rb
2013-03-07 20:05:18 +01:00

9 lines
No EOL
178 B
Ruby

module AgeWords
def self.age_words(secs)
return "—" if secs.blank?
return FreedomPatches::Rails4.distance_of_time_in_words(Time.now, Time.now + secs)
end
end