Right, that is clear now for me. Thanks for explaining. I don't know how to close the bug, so whomever has access, please closeandreionut (Andrei Balcanasu)
Good point, but this still does not explain why in some cases ` -7` works: ```ruby now = Date.today => #<Date: 2015-10-26 ((2457322j,0s,0n),+0s,2299161j)> now -7 => #<Date: 2015-10-19 ((2457315j,0s,0n),+0s,2299161j)> Date.new(2...andreionut (Andrei Balcanasu)
I noticed today some inconsistencies when using `-` and `+` methods of the `Date` class, that makes the whitespace relevant: ~~~ irb(main):001:0> require 'date' => true irb(main):002:0> Date.today - 7 => #<Date: 2015-10-19 ((24573...andreionut (Andrei Balcanasu)