Sha256: b60145692d2a699e292e5eec56a59f13578591fab80819a6ce51f959d7ec4b83
Contents?: true
Size: 469 Bytes
Versions: 8
Compression:
Stored size: 469 Bytes
Contents
#!/bin/sh # Used in the sandbox rake task in Rakefile rm -rf ./sandbox bundle exec rails new sandbox --skip-bundle if [ ! -d "sandbox" ]; then echo 'sandbox rails application failed' exit 1 fi cd ./sandbox echo "gem 'spree', :path => '..'" >> Gemfile echo "gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '2-0-stable'" >> Gemfile bundle install --gemfile Gemfile bundle exec rails g spree:install --auto-accept --user_class=Spree::User
Version data entries
8 entries across 8 versions & 1 rubygems