add alias metadata, remove help()
This commit is contained in:
committed by
Nils Winkler
parent
95ce548451
commit
17aaa9ce24
@@ -1,21 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
cite 'about-alias'
|
||||
about-alias 'ruby bundler'
|
||||
|
||||
# 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
|
||||
}
|
||||
|
||||
alias be='bundle exec'
|
||||
alias bi='bundle install'
|
||||
alias bl='bundle list'
|
||||
alias bu='bundle update'
|
||||
alias bp='bundle package'
|
||||
|
||||
Reference in New Issue
Block a user