Merge pull request #2421 from LFDM/rails_plugin_fix

Fixes _rails_command in new rails plugin
This commit is contained in:
Robby Russell 2014-03-13 07:55:19 -07:00
commit d0dcedcde2
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
function _rails_command () {
if [ -e "script/server" ]; then
ruby script/$@
if [ -e "bin/rails" ]; then
bin/rails $@
elif [ -e "script/rails" ]; then
ruby script/rails $@
elif [ -e "bin/rails" ]; then
bin/rails $@
elif [ -e "script/server" ]; then
ruby script/$@
else
rails $@
fi