Given two yaml files, Yamldiff tells you which keys present in the first file are not present in the second.
Add this line to your application's Gemfile:
gem 'yamldiff'
And then execute:
$ bundle
Or install it yourself as:
$ gem install yamldiff
require 'yamldiff'
result = Yamldiff.diff_yaml('path_to_file_1', 'path_to_file_2')
result.inspect
# { 'path_to_file_2' => [<array of YamldiffError objects>] }
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request