From c7c0a24804f0de7d959c84a2a1a9fc234ce96250 Mon Sep 17 00:00:00 2001 From: Ben Langfeld Date: Tue, 29 Mar 2011 18:33:14 +0100 Subject: [PATCH] Update the bundler plugin to follow the "vendor everything" routine * As described here: http://ryan.mcgeary.org/2011/02/09/vendor-everything-still-applies/ --- plugins/bundler/bundler.plugin.zsh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index fb40e2cec..f8bc874f8 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -1,3 +1,5 @@ -alias be="bundle exec" -alias bi="bundle install" -alias bu="bundle update" +alias b="bundle" +alias bi="b install --path vendor" +alias bu="b update" +alias be="b exec" +alias binit="bi && b package && echo 'vendor/ruby' >> .gitignore"