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