up vote 2 down vote favorite
2
share [g+] share [fb]

How do I form "fuzzy" date/time from RFC 2822 formatted (Sat, 18 Jul 2009 10:57:43 +0300) timestamp?

With fuzzy date I mean like: "5 minutes ago", "2 days, 15 minutes ago".

link|improve this question

71% accept rate
feedback

3 Answers

up vote 7 down vote accepted

Rails gives your views a helper function called time_ago_in_words that you can call to output just such a format from a Time object.

link|improve this answer
2  
you don't have to be using all of rails for this. You could just use the actionview gem: require 'rubygems'; require 'actionview' – rampion Jul 18 '09 at 14:46
feedback
def fuzzy_date(date)
  date = Date.parse(date, true) unless /Date.*/ =~ date.class.to_s
  days = (date - Date.today).to_i
  return 'today'     if days >= 0 and days < 1
  return 'tomorrow'  if days >= 1 and days < 2
  return 'yesterday' if days >= -1 and days < 0
  return "in #{days} days"      if days.abs < 60 and days > 0
  return "#{days.abs} days ago" if days.abs < 60 and days < 0
  return date.strftime('%A, %B %e') if days.abs < 182
  return date.strftime('%A, %B %e, %Y')
end
link|improve this answer
feedback

There's some really powerful date/time parsers in ruby (unfortunately kind of hard to google(TM) for)

http://chronic.rubyforge.org/

http://www.ahabman.com/blog/2009/06/ruby-duration/

http://github.com/flogic/timely/tree/master

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.