Sha256: 98b7a7a0354d0ed1a50cfaf1f4aba1005fd8d2c3c3e04970815a8c1edc25fb7d
Contents?: true
Size: 594 Bytes
Versions: 1
Compression:
Stored size: 594 Bytes
Contents
# HashDeepDiff Find the exact difference between two Hash objects and build a report to visualize it ## Installation Add this line to your application's Gemfile: ```ruby gem 'hash_deep_diff' ``` And then execute: $ bundle Or install it yourself as: $ gem install hash_deep_diff ## Usage Basic example ```ruby left = { a: :a } right = { a: :b } HashDeepDiff::Comparison.new(left, right).report ``` ```diff - left[a] = a + right[a] = b ``` ## Contributing Bug reports and pull requests are welcome on GitHub at [bpohoriletz](https://github.com/bpohoriletz/hash_deep_diff).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hash_deep_diff-0.3.3 | README.md |