Rewrite _rails-command to work from app subdirectories

This commit is contained in:
Sorin Ionescu 2013-11-25 16:11:08 -05:00
parent cc4a58bee3
commit 5cfe250e52

View file

@ -36,12 +36,27 @@ alias rorx='_rails-command destroy'
# #
function _rails-command { function _rails-command {
if [[ -e "script/server" ]]; then local root_dir="$PWD"
ruby script/"$@" local rails_cmd
elif [[ -e "bin/rails" ]]; then
ruby bin/rails "$@" while [[ "$root_dir" != '/' ]]; do
else if [[ -d "$root_dir/.bundle" ]]; then
ruby script/rails "$@" break
fi fi
root_dir="$root_dir:h"
done
if [[ -e "$root_dir/bin/rails" ]]; then
rails_cmd='bin/rails'
elif [[ -e "$root_dir/script/rails" ]]; then
rails_cmd='script/rails'
elif [[ -e "$root_dir/script/server" ]]; then
rails_cmd='script/'
else
print "$0: not inside of a Rails application: $PWD" >&2
return 1
fi
(cd "$root_dir" && ruby "$rails_cmd" "$@")
} }