Merge pull request #2421 from LFDM/rails_plugin_fix

Fixes _rails_command in new rails plugin
master
Robby Russell 12 years ago
commit d0dcedcde2
  1. 8
      plugins/rails/rails.plugin.zsh

@ -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

Loading…
Cancel
Save