Support bundler

This commit is contained in:
Satoshi Ohmori 2015-12-25 19:54:12 +09:00
parent f558a460c2
commit 06659f7fc1

View File

@ -13,6 +13,8 @@ function _rails_command () {
function _rake_command () { function _rake_command () {
if [ -e "bin/rake" ]; then if [ -e "bin/rake" ]; then
bin/rake $@ bin/rake $@
elif type bundle &> /dev/null && [ -e "Gemfile" ]; then
bundle exec rake $@
else else
command rake $@ command rake $@
fi fi