I am trying to find out how many days ago a Date object is.
(Date.today - start_time).to_i
When I do (Date.today - 30.days.ago.to_date).to_i I get 29. Thoughts?
|
I am trying to find out how many days ago a
When I do |
|||||
|
|
Sounds like a rounding issue? So if your expression returns 29.999999, which is basically 30, but you run What you should do instead is use
EDIT Actually I was wrong. The reason is that the Rails So if you are (un)lucky you will get an offset of 1 day if the local time and UTC time difference happens to be crossing midnight. The proper fix is to call
|
||||
|
|