hashdiff icon indicating copy to clipboard operation
hashdiff copied to clipboard

Hashdiff is a ruby library to to compute the smallest difference between two hashes

Results 14 hashdiff issues
Sort by recently updated
recently updated
newest added

Addresses #19 and #25. I went through some effort to make this backwards compatible - no external-facing behavior should be different using default options. This could be made simpler by...

This fixes issue related to handling multi dimensional arrays in path

```ruby require 'hashdiff' Hashdiff::VERSION #=> "1.1.0" ``` The following snippet fails to ignore top level key `:a` ```ruby a = { a: 4, b: {a: 5, c: 6} } b...

Hello, The override of the ==/equal? methods seem to be used when checking values of an Hash, but not when checking the keys. Here is an example with a simple...