Skip to content

Commit 34878b1

Browse files
committed
Correct references to spree_auth_devise in spree_cmd/installer and sanbdox script
1 parent 281f998 commit 34878b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/lib/spree_cmd/installer.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def add_gems
9898
end
9999

100100
if @install_default_auth
101-
gem :spree_auth_devise, :github => "spree/spree_auth_devise", :branch => "edge"
101+
gem :spree_auth_devise, :github => "spree/spree_auth_devise"
102102
end
103103

104104
run 'bundle install', :capture => true

lib/sandbox.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fi
1010

1111
cd ./sandbox
1212
echo "gem 'spree', :path => '..'" >> Gemfile
13-
echo "gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => 'edge'" >> Gemfile
13+
echo "gem 'spree_auth_devise', :github => 'spree/spree_auth_devise'" >> Gemfile
1414

1515
bundle install --gemfile Gemfile
1616
bundle exec rails g spree:install --auto-accept --user_class=Spree::User

0 commit comments

Comments
 (0)