i want to calculate time difference in minutes between two date_time fields.like created_at and updated_at kind of fields. i want the result like this updated_at - created_at = some minutes.
these times are present in time zone of INDIA. how can i do that in rails?
created = article.created_at
updated = article.updated_at
minutes = updated - created
As
created_at
andupdated_at
are of typeDateTime
, this should work.Explanation:
Subtracting two DateTimes returns the elapsed time in days. In the below example
e-d
will return(28807336643183/28800000000000)
. So to convert this into minutes, we need to multiply it by24*60
(As the day has 24 hours and each hour has 60 minutes)Example(tested):