This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/age_words.rb

9 lines
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