Sha256: 213ebca9fdf8f5e418ed59a2d78b6373b41423c036685d3d4b492a255b0c8478

Contents?: true

Size: 541 Bytes

Versions: 12

Compression:

Stored size: 541 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-3-stable'" >> Gemfile

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

12 entries across 12 versions & 1 rubygems

Version Path
spree-2.3.13 lib/sandbox.sh
spree-2.3.12 lib/sandbox.sh
spree-2.3.11 lib/sandbox.sh
spree-2.3.10 lib/sandbox.sh
spree-2.3.9 lib/sandbox.sh
spree-2.3.8 lib/sandbox.sh
spree-2.3.7 lib/sandbox.sh
spree-2.3.6 lib/sandbox.sh
spree-2.3.5 lib/sandbox.sh
spree-2.3.4 lib/sandbox.sh
spree-2.3.3 lib/sandbox.sh
spree-2.3.2 lib/sandbox.sh