Skip to content

Instantly share code, notes, and snippets.

@kevin-shu
Created May 20, 2013 08:22
Show Gist options
  • Save kevin-shu/5611031 to your computer and use it in GitHub Desktop.
Save kevin-shu/5611031 to your computer and use it in GitHub Desktop.
cart = []
session[:cart].each do |key, value|
cart.push {product_id:key, amount:value}
end
Order.create cart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment