commit
8c98ddc03a
|
|
@ -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
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue