diff --git a/bundle/config b/bundle/config index fc1ceaf..06878a3 100644 --- a/bundle/config +++ b/bundle/config @@ -1,3 +1,3 @@ --- BUNDLE_PATH: vendor/bundle -BUNDLE_BIN: .bin +BUNDLE_BIN: vendor/bundle/bin diff --git a/shell/_main.sh b/shell/_main.sh index 59220df..e806836 100644 --- a/shell/_main.sh +++ b/shell/_main.sh @@ -58,7 +58,7 @@ path_prepend "$DOTBIN" # Relative Paths - must be first in PATH path_prepend "./node_modules/.bin" # Node.js -path_prepend "./.bin" # Ruby Bundler +path_prepend "./vendor/bundle/bin" # Ruby Bundler # Ensure TMPDIR is the same for local and remote ssh logins if [[ $TMPDIR == "/var/folders/"* ]] || [[ $TMPDIR == "" ]]; then diff --git a/shell/ruby.sh b/shell/ruby.sh index 26588ca..9257ba8 100644 --- a/shell/ruby.sh +++ b/shell/ruby.sh @@ -3,7 +3,7 @@ alias po="powify" alias lu="lunchy" # Bundler aliases -alias bi="bundle install --path vendor/bundle --binstubs=.bin" +alias bi="bundle install --path vendor/bundle --binstubs=vendor/bundle/bin" alias bc="bundle check" alias bl="bundle list" alias be="bundle exec"