Skip to content

Instantly share code, notes, and snippets.

@coop
Created February 18, 2012 23:32
Show Gist options
  • Select an option

  • Save coop/1861324 to your computer and use it in GitHub Desktop.

Select an option

Save coop/1861324 to your computer and use it in GitHub Desktop.
def calculate_total(products)
Array(products).inject(0) { |sum, product| sum + product.price }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment