forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove sandbox_generator, replace with Rails template
The rails template's code is much simpler and allows us to enforce specific gem requirements that the dummy application should never have. This fixes the sandbox's requirement of spree_signup_path as pointed out by BDQ here: spree#1512 (comment)
- Loading branch information
Showing
5 changed files
with
13 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Used in the sandbox rake task in Rakefile | ||
gem('spree', :path => "..") | ||
gem('spree_auth_devise', :path => "~/Sites/gems/spree_auth_devise") | ||
gem('devise-encryptable', '0.1.1') | ||
puts "Running Spree installer..." | ||
generate("spree:install --auto-accept") | ||
puts "Precompilign assets..." | ||
rake("assets:precompile:nondigest") | ||
puts "Done!" | ||
|