Skip to content

Instantly share code, notes, and snippets.

@dgmcguire
Created December 15, 2014 14:34
Show Gist options
  • Save dgmcguire/f81286a431dc6d2f6ab2 to your computer and use it in GitHub Desktop.
Save dgmcguire/f81286a431dc6d2f6ab2 to your computer and use it in GitHub Desktop.
array = [{key1: value1}, {key2: nil}, {key3: nil}]
array.reject! {|k,v| v.nil?} #=> [{key1: value1}, {}, {}]
# what method will return [{key1: value1}] instead?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment