Eitan Adler | 3fc60b5 | 2012-04-17 00:24:58 -0400 | [diff] [blame^] | 1 | #!/usr/bin/env bash |
Martin Westin | 8a46e19 | 2011-08-29 08:22:19 +0200 | [diff] [blame] | 2 | |
| 3 | # Bundler Commands |
| 4 | alias be="bundle exec" |
| 5 | alias bi="bundle install" |
| 6 | alias bl="bundle list" |
| 7 | alias bu="bundle update" |
| 8 | alias bp="bundle package" |
| 9 | |
| 10 | |
| 11 | function bundler-help() { |
| 12 | echo "Bundler Aliases Usage" |
| 13 | echo |
| 14 | echo " be = bundle exec" |
| 15 | echo " bi = bundle install" |
| 16 | echo " bl = bundle list" |
| 17 | echo " bu = bundle update" |
| 18 | echo " bp = bundle package" |
| 19 | echo |
| 20 | } |
| 21 | |