Merge branch 'refs/heads/bundler-plugin' into integration

This commit is contained in:
Ben Langfeld 2011-03-29 18:39:28 +01:00
commit 7c1b530932

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"