In Ruby, on Halloween:
Date.today - 6.months + 6.months != Date.today
Do we need to update Ruby's date implementation? Do other languages have the same issue?
|
In Ruby, on Halloween:
Do we need to update Ruby's date implementation? Do other languages have the same issue? |
|||||||||
|
|
This happens if you do it to any month that doesn't have 31 days (i.e. 3 months would work just fine, but 1 month, or 6, or 8 would all make this happen). If you do One way to work around this is to use the |
||||
|
|
|
No, this is expected and this isn't unique to Ruby either - try it in SQL, for example.
Add 6 months to April 30th and you get October 30th. Which, as you know is != October 31st. |
|||
|
|
This is a weird feature of ActiveSupport time extensions.
but when you do date math with months, they are considered calendar months, not 30-day periods. Check this out:
See https://github.com/rails/rails/blob/master/activesupport/lib/active_support/core_ext/time/calculations.rb#L277 and dig further from there. |
|||
|
|