Sha256: 2f1b4759d9490393607da4577e6e623bf9fd03a67575c0497979ce41ae1ca1a5

Contents?: true

Size: 470 Bytes

Versions: 28

Compression:

Stored size: 470 Bytes

Contents

#!/bin/bash
# Everything in this bootstrap script
# is idempotent. It is OK to run again
# on an existing project if you are
# uncertain whether it is set up.

git submodule update --init
if [ ! -f config/config.rb ] ; then cp config/config.sample.rb config/config.rb ; fi
bundle || exit
bundle exec rake db:create db:migrate || exit
bundle exec rake test

echo "If this is the first time you've cloned Houston"
echo "You might want to run \`bundle exec rake db:seed\`"

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
houston-core-0.9.2 script/bootstrap
houston-core-0.9.1 script/bootstrap
houston-core-0.9.0 script/bootstrap
houston-core-0.9.0.rc1 script/bootstrap
houston-core-0.8.4 script/bootstrap
houston-core-0.8.3 script/bootstrap
houston-core-0.8.2 script/bootstrap
houston-core-0.8.1 script/bootstrap
houston-core-0.8.0 script/bootstrap
houston-core-0.8.0.pre2 script/bootstrap
houston-core-0.8.0.pre script/bootstrap
houston-core-0.7.0 script/bootstrap
houston-core-0.7.0.beta4 script/bootstrap
houston-core-0.7.0.beta3 script/bootstrap
houston-core-0.7.0.beta2 script/bootstrap
houston-core-0.7.0.beta script/bootstrap
houston-core-0.6.3 script/bootstrap
houston-core-0.6.2 script/bootstrap
houston-core-0.6.1 script/bootstrap
houston-core-0.6.0 script/bootstrap