event deleting

This commit is contained in:
Kyle Drake 2014-05-02 17:44:31 -07:00
parent 6277a94a5b
commit a4a2b5165b
14 changed files with 105 additions and 31 deletions

7
ext/time.rb Normal file
View file

@ -0,0 +1,7 @@
class Time
alias_method :ago_original, :ago
def ago
ago_original.downcase.gsub('right now, this very moment.', 'just now')
end
end