I am trying to compare two Ruby Hashes using the following code:
#!/usr/bin/env ruby require \"yaml\" require \"active_support\" file1 = YAML::load(File.op
How about another, simpler approach:
require 'fileutils' FileUtils.cmp(file1, file2)