mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add distance_of_time_in_words example for seconds
This commit is contained in:
parent
be4a44f1f9
commit
594997f52b
1 changed files with 3 additions and 0 deletions
|
@ -64,6 +64,9 @@ module ActionView
|
|||
# distance_of_time_in_words(to_time, from_time, true) # => about 6 years
|
||||
# distance_of_time_in_words(Time.now, Time.now) # => less than a minute
|
||||
#
|
||||
# distance_of_time_in_words(70) # => 1 minute
|
||||
# distance_of_time_in_words(60*60) # => about 1 hour
|
||||
#
|
||||
def distance_of_time_in_words(from_time, to_time = 0, include_seconds = false, options = {})
|
||||
from_time = from_time.to_time if from_time.respond_to?(:to_time)
|
||||
to_time = to_time.to_time if to_time.respond_to?(:to_time)
|
||||
|
|
Loading…
Reference in a new issue