Skip to content

Commit

Permalink
Merge pull request #7398 from iamvery/time_ago_in_words-docs
Browse files Browse the repository at this point in the history
Extended documentation for `time_ago_in_words` helper
  • Loading branch information
vijaydev committed Aug 22, 2012
2 parents 5c89e07 + 807a977 commit 8fbfeb1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions actionpack/lib/action_view/helpers/date_helper.rb
Expand Up @@ -139,13 +139,20 @@ def distance_of_time_in_words(from_time, to_time = 0, include_seconds_or_options

# Like <tt>distance_of_time_in_words</tt>, but where <tt>to_time</tt> is fixed to <tt>Time.now</tt>.
#
# The <tt>from_time</tt> argument must be of type <tt>Time</tt> rather than type <tt>Numeric</tt>. For example,
# to get the <tt>time_ago_in_words</tt> for 30 minutes you would use <tt>30.minutes.ago</tt> as the argument
# rather than just <tt>30.minutes</tt>.
#
# time_ago_in_words(3.minutes.from_now) # => 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
def time_ago_in_words(from_time, include_seconds_or_options = {})
distance_of_time_in_words(from_time, Time.now, include_seconds_or_options)
end
Expand Down

0 comments on commit 8fbfeb1

Please sign in to comment.