You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Added `capit` because `cap` is a reserved word. `cap` completion doesn't work. |
|
# http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module |
|
|
|
function capit() { |
|
if [ -f Gemfile ] |
|
then |
|
bundle exec cap $* |
|
else |
|
cap $* |
|
fi |
|
}
|
|
|