Hello. I find the following behavior (using Hashdiff 1.0.1) somewhat unexpected:
Hashdiff.diff(%w[a b c], %w[a b d])
=> [["-", "[2]", "c"], ["+", "[2]", "d"]]
Would not it be better to get
Hashdiff.diff(%w[a b c], %w[a b d])
=> [["~", "[2]", "c", "d"]]
?
Is there an option to get this behavior ?
Thanks for reading!