1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-08 07:48:29 +02:00
neocities/ext/time.rb
2017-03-22 11:39:06 -07:00

9 lines
102 B
Ruby

class Time
def ago
self.ago_in_words
end
def from_now
self.from_now_in_words
end
end