Skip to content

Instantly share code, notes, and snippets.

@sallysmith1337
Created April 18, 2013 11:41
Show Gist options
  • Save sallysmith1337/5412096 to your computer and use it in GitHub Desktop.
Save sallysmith1337/5412096 to your computer and use it in GitHub Desktop.
filter_key = "Ford"
store.keys.each do | key |
next if key == filter_key
store.delete key
end
# Or if you're feeling fancy
store.delete_if { |key, value| key != filter_key }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment