Skip to content

Instantly share code, notes, and snippets.

@ashleygwilliams
Created June 11, 2013 18:44
Show Gist options
  • Save ashleygwilliams/5759533 to your computer and use it in GitHub Desktop.
Save ashleygwilliams/5759533 to your computer and use it in GitHub Desktop.
##create a hash that includes counts as a key for each item
myCart.each do |item|
myNewCart[item]||= {} #[{item}, {item}] => {{item}=>{}, {item}=>{}}
myNewCart[item][:count] ||= 0 #{{item}=>{:count=>0}, {item}=>{:count=>0}}
myNewCart[item][:count] += 1 #{{item}=>{:count=>+=1}, {item}=>{:count=>+=1}}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment