I'm trying to find the best way to generate the following output

<name> job took 30 seconds
<name> job took 1 minute and 20 seconds
<name> job took 30 minutes and 1 second
<name> job took 3 hours and 2 minutes

I started this code

def time_range_details
  time = (self.created_at..self.updated_at).count
  sync_time = case time 
    when 0..60 then "#{time} secs"       
    else "#{time/60} minunte(s) and #{time-min*60} seconds"
  end
end

Is there a more efficient way of doing this. It seems like a lot of redundant code for something super simple.

Another use for this is:

<title> was posted 20 seconds ago
<title> was posted 2 hours ago

The code for this is similar, but instead i use Time.now:

def time_since_posted
  time = (self.created_at..Time.now).count
  ...
  ...
end
link|improve this question

50% accept rate
feedback

4 Answers

up vote 6 down vote accepted

If you need something more "precise" than distance_of_time_in_words, you can write something along these lines:

def humanize secs
  [[60, :seconds], [60, :minutes], [24, :hours], [1000, :days]].map{ |count, name|
    if secs > 0
      secs, n = secs.divmod(count)
      "#{n.to_i} #{name}"
    end
  }.compact.reverse.join(' ')
end

p humanize 1234
#=>"20 minutes 34 seconds"
p humanize 12345
#=>"3 hours 25 minutes 45 seconds"
p humanize 123456
#=>"1 days 10 hours 17 minutes 36 seconds"
p humanize(Time.now - Time.local(2010,11,5))
#=>"4 days 18 hours 24 minutes 7 seconds"

Oh, one remark on your code:

(self.created_at..self.updated_at).count

is really bad way to get the difference. Use simply:

self.updated_at - self.created_at
link|improve this answer
just curious, why is it bad? (self.created_at..self.updated_at).count thanks for the clean answer! – csanz Nov 9 '10 at 18:46
@csanz: .count in that case iterates through an array of every second between the two timestamps and counts them. As if you would calculate result of expression 100-50 by actually counting all the numbers between 50 and 100. – Mladen Jablanović Nov 9 '10 at 19:59
1  
I prefer the DateHelper methods. If you're going to bother to convert it into English, then you probably don't want to combine days and seconds. It's an artificial precision. – Mark Thomas Nov 9 '10 at 20:50
True, but largely depending on context. For example, I needed something similar for displaying duration of each item in a table. I tried DateHelper first, but later replaced it with custom method which prints something like 5:30:25, rigt aligned. Lot more readable in a tabular data than "fuzzy" expressions from DH. – Mladen Jablanović Nov 9 '10 at 21:13
That's precisely my point. There are times to use a data format, in which precision is important, and there are times to use conversational Engish, where too much precision gets in the way. – Mark Thomas Nov 10 '10 at 3:03
feedback

There is a method in DateHelper called time_ago_in_words that might give you what you want

http://apidock.com/rails/ActionView/Helpers/DateHelper/time_ago_in_words

or distance_of_time_in_words

http://apidock.com/rails/ActionView/Helpers/DateHelper/distance_of_time_in_words

link|improve this answer
feedback

chronic_duration parses numeric time to readable and vice versa

link|improve this answer
feedback

Also check chronic https://github.com/mojombo/chronic

link|improve this answer
Chronic is a date parser, which doesn't solve his problem. – Mark Thomas Nov 9 '10 at 20:47
Had suggested the site to see how some of the date parsing is done – Pragnesh Vaghela Nov 10 '10 at 2:59
feedback

Your Answer

 
or
required, but never shown

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