This extension adds filter products form taxon optyons to left sidebar
Add spree_filter_products to your Gemfile:
For 3.0.3 versions of spree.
gem 'spree_filter_products'Bundle your dependencies and run the installation generator:
bundle
bundle exec rails g spree_filter_products:installBe 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 specWhen testing your applications integration with this extension you may use it's factories. Simply add this require statement to your spec_helper:
require 'spree_filter_products/factories'- Fork the repo.
- Clone your repo.
- Run
bundle install. - Run
bundle exec rake test_appto create the test application inspec/test_app. - Make your changes.
- Ensure specs pass by running
bundle exec rspec spec. - Submit your pull request.