class WebMock::Matchers::HashExcludingMatcher

def ==(actual)

def ==(actual)
  super { |key, value| !actual.key?(key) || value != actual[key] }
end