mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
9 lines
102 B
Ruby
9 lines
102 B
Ruby
class Time
|
|
def ago
|
|
self.ago_in_words
|
|
end
|
|
|
|
def from_now
|
|
self.from_now_in_words
|
|
end
|
|
end
|