marcamillion
marcamillion

Reputation: 33785

What is a good shopping cart gem for Rails?

I want to implement basic shopping cart functionality in my Rails app....are there any good gems that will make this process simple?

i.e. I want the shopper to be able to add products and quantities to their checkout, and I want the admin to be able to add new products to the store (and edit/delete existing ones).

Suggestions?

Upvotes: 18

Views: 40550

Answers (4)

Torsten
Torsten

Reputation: 455

The list of a few is good, and now there is one more engine: RubyClerks

It's small and simple, but all that small businesses needs. And so it uses much less memory than others.

Upvotes: 1

Ivailo Bardarov
Ivailo Bardarov

Reputation: 3895

There are few:

Upvotes: 12

Mada Aryakusumah
Mada Aryakusumah

Reputation: 611

maybe you can try https://github.com/crowdint/acts_as_shopping_cart That gem good for simple cart. Maybe you need little modify if you need update cart functionality

Upvotes: 7

iain
iain

Reputation: 16284

There is a wide range of payment and eCommerce gems covered at Railscasts.

A list of gems can also be found at The Ruby Toolbox and here too.

Also, not covered, you can use the Saas product Shopify

Upvotes: 23

Related Questions