Bundler aliases "inspired by" OhMyZsh

This commit is contained in:
Martin Westin
2011-08-29 08:22:19 +02:00
parent 18bcceaa08
commit 8a46e195d6

View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Bundler Commands
alias be="bundle exec"
alias bi="bundle install"
alias bl="bundle list"
alias bu="bundle update"
alias bp="bundle package"
function bundler-help() {
echo "Bundler Aliases Usage"
echo
echo " be = bundle exec"
echo " bi = bundle install"
echo " bl = bundle list"
echo " bu = bundle update"
echo " bp = bundle package"
echo
}