Update the bundler plugin to follow the "vendor everything" routine

* As described here: http://ryan.mcgeary.org/2011/02/09/vendor-everything-still-applies/
This commit is contained in:
Ben Langfeld 2011-03-29 18:33:14 +01:00
commit c7c0a24804

View file

@ -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"