Reputation: 33785
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
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
Reputation: 3895
There are few:
https://github.com/spree/spree Engines, plugins, big, no good i18n
https://github.com/piggybak/piggybak Engine, plugins, no i18n, new project and still a lot of changes
https://github.com/potionfactory/potionstore/ Not an Engine
Upvotes: 12
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
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