Given two yaml files, Yamldiff tells you which keys present in the first file are not present in the second.
From release:
$ sudo gem install yamldiffFrom source code:
$ bundle
$ gem build yamldiff.gemspec
$ sudo gem install yamldiff-VERSION.gemOf the program:
$ yamldiff
USAGE: yamldiff [-i] file1 file2Of the lib:
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
