Created
May 2, 2014 02:46
-
-
Save abams/1775e94bb561f7eb8891 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nuke() { | |
if [ "$1" = 'development' ] || [ "$1" = 'test' ]; then | |
RAILS_ENV=$1 be rake db:drop; RAILS_ENV=$1 be rake db:create; RAILS_ENV=$1 be rake db:migrate | |
RAILS_ENV=$1 be rake db:seed | |
fi | |
if [ "$1" = 'test' ]; then | |
RAILS_ENV=$1 be rake db:$1:prepare | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment