- yield added/deleted keys for custom comparison
- support custom comparison blocks
- support
:strip
,:numeric_tolerance
and:strict
options
- use options for parameters
:delimiter
and:similarity
in interfaces
- Add parameter for custom property-path delimiter.
- fix a bug in judging whehter two objects are similiar.
- add more spec test for HashDiff.best_diff
Main changes in this version is to output the whole object in addition & deletion, instead of recursely add/deletes the object.
For example, `diff({a:2, c:[4, 5]}, {a:2}) will generate following output:
[['-', 'c', [4, 5]]]
instead of following:
[['-', 'c[0]', 4], ['-', 'c[1]', 5], ['-', 'c', []]]