Sha256: b18054003fd59c8b673e6b903e84cabc11baf3a6957f15dcb348642c22713758

Contents?: true

Size: 619 Bytes

Versions: 14

Compression:

Stored size: 619 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

cat <<RUBY >> Gemfile
gem 'spree', path: '..'
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '3-0-stable'

group :test, :development do
  gem 'bullet'
  gem 'pry-byebug'
  gem 'rack-mini-profiler'
end
RUBY

bundle install --gemfile Gemfile
bundle exec rails g spree:install --auto-accept --user_class=Spree::User --enforce_available_locales=true
bundle exec rails g spree:auth:install

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
spree-3.0.10 lib/sandbox.sh
spree-3.0.9 lib/sandbox.sh
spree-3.0.8 lib/sandbox.sh
spree-3.0.7 lib/sandbox.sh
spree-3.0.6.1 lib/sandbox.sh
spree-3.0.6 lib/sandbox.sh
spree-3.0.5 lib/sandbox.sh
spree-3.0.4 lib/sandbox.sh
spree-3.0.3 lib/sandbox.sh
spree-3.0.2 lib/sandbox.sh
spree-3.0.1 lib/sandbox.sh
spree-3.0.0 lib/sandbox.sh
spree-3.0.0.rc4 lib/sandbox.sh
spree-3.0.0.rc3 lib/sandbox.sh