time_ago_in_words(from_time, include_seconds_or_options = {})
Instance Public methods
Like distance_of_time_in_words
, but where to_time
is fixed to Time.now
.
1 2 3 4 5 6 7 8 9 10 11 | time_ago_in_words( 3 .minutes.from_now) # => 3 minutes time_ago_in_words( 3 .minutes.ago) # => 3 minutes time_ago_in_words( Time .now - 15 .hours) # => about 15 hours time_ago_in_words( Time .now) # => less than a minute time_ago_in_words( Time .now, include_seconds: true ) # => less than 5 seconds from_time = Time .now - 3 .days - 14 .minutes - 25 .seconds time_ago_in_words(from_time) # => 3 days from_time = ( 3 .days + 14 .minutes + 25 .seconds).ago time_ago_in_words(from_time) # => 3 days |
Note that you cannot pass a Numeric
value to
time_ago_in_words
.
Please login to continue.