This extension adds the following features:
- Adds a link 'Mark as favorite' on product detail page.
- Favorite Products tab on header
- Favorite Products tab in admin section
Add spree_favorite_products to your Gemfile:
gem 'spree_favorite_products'
For older versions of spree.
# Spree 2.1.x
gem 'spree_favorite_products', '2.0.3'
# Spree 2.0.x
gem 'spree_favorite_products', '1.0.0'
Bundle your dependencies and run the installation generator:
bundle
bundle exec rails g spree_favorite_products:install
Be sure to bundle your dependencies and then create a dummy test app for the specs to run against.
bundle
bundle exec rake test_app
bundle exec rspec spec
When testing your applications integration with this extension you may use it's factories. Simply add this require statement to your spec_helper:
require 'spree_favorite_products/factories'
- Fork the repo.
- Clone your repo.
- Run
bundle install
. - Run
bundle exec rake test_app
to create the test application inspec/test_app
. - Make your changes.
- Ensure specs pass by running
bundle exec rspec spec
. - Submit your pull request.
Copyright (c) 2014 vinsol.com, released under the New MIT License