Created
January 23, 2013 17:07
-
-
Save brandon-beacher/4610133 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def ago(date_or_time) | |
return nil unless date_or_time | |
date_or_time.to_time < Time.now ? "#{time_ago_in_words(date_or_time)} #{I18n.t('time_ago')}" : "#{time_ago_in_words(date_or_time)} #{I18n.t('time_from')}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment