Skip to content

Instantly share code, notes, and snippets.

@DriesS

DriesS/array.rb Secret

Last active August 29, 2015 14:10
Show Gist options
  • Save DriesS/de3e217e7077fc30e297 to your computer and use it in GitHub Desktop.
Save DriesS/de3e217e7077fc30e297 to your computer and use it in GitHub Desktop.
array of hashes
params = [
{"type"=>["1", "2", "3", "4"]},
{"exposure"=>["1"]}
]
new_type = {"type" => ["4"]}
new_params = [
{"type" => ["4"]},
{"exposure"=>["1"]}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment