This file contains hidden or 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
| # Hey Chi-Town, I made this rake task, and it has saved some of us a lot of time. | |
| # Some people asked me to post it, so here it is: | |
| desc 'You only live once' | |
| task 'yolo' => ['db:drop', 'db:create', 'db:migrate', 'db:seed'] do | |
| exec "bundle exec shotgun config.ru" | |
| end | |
| # NOTE: If db:create or db:drop use "exec" instead of "system", this will not work. | |
| # If you decide to fix this, google why this happens first. |
NewerOlder