Skip to content

Instantly share code, notes, and snippets.

@brandon-beacher
Created January 23, 2013 17:07
Show Gist options
  • Save brandon-beacher/4610133 to your computer and use it in GitHub Desktop.
Save brandon-beacher/4610133 to your computer and use it in GitHub Desktop.
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