10 lines
102 B
Ruby
10 lines
102 B
Ruby
|
|
class Time
|
||
|
|
def ago
|
||
|
|
self.ago_in_words
|
||
|
|
end
|
||
|
|
|
||
|
|
def from_now
|
||
|
|
self.from_now_in_words
|
||
|
|
end
|
||
|
|
end
|