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