Spree Extension which allows user to have multiple emails.
Last updated on: May 12 at 08:56 AM
source code bug trackerThis extension allows a user to have multiple emails.
Spree::Auth::Config[:confirmable]
is set to true
.Add spree_multiple_emails to your Gemfile:
gem 'spree_multiple_emails', github: "vinay-mittal/spree_multiple_emails", branch: "x-x-stable"
The branch
option is important: it must match the version of Spree you're using.
For example, use 3-0-stable
if you're using Spree 3-0-stable
or any 3.0.x
version.
Bundle your dependencies and run the installation generator:
bundle
bundle exec rails g spree_multiple_emails:install
First bundle your dependencies, then run rake
. rake
will default to building the dummy app if it does not exist, then it will run specs. The dummy app can be regenerated by using rake test_app
.
bundle
bundle exec rake
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_multiple_emails/factories'
Copyright (c) 2016 [Vinay Mittal], released under the New BSD License
tags | spree versions |
---|---|
master | ~> 3.0.7 |