Skip to content

Instantly share code, notes, and snippets.

@leshill
Created November 12, 2009 14:26
Show Gist options
  • Save leshill/232934 to your computer and use it in GitHub Desktop.
Save leshill/232934 to your computer and use it in GitHub Desktop.
class Hash
def intersection_equal?(other)
all? {|k, v| other.has_key?(k) ? other[k] == v : true }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment