From 3aa0c8c4128895b0579d10965328ea3c8361dba5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 13 Feb 2012 16:55:22 +0000 Subject: [PATCH] use "./vendor/bundle/bin" instead of "./.bin" for Ruby Bundler binstubs --- bundle/config | 2 +- shell/_main.sh | 2 +- shell/ruby.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"