diff options
author | Robby Russell <robby@planetargon.com> | 2011-07-27 21:08:17 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-07-27 21:08:17 -0700 |
commit | 4ff45581de9c6f993eae537cc82b0c4c65239b89 (patch) | |
tree | cb4723ffc41a84793ce749f77b84105502abe5c9 /plugins/bundler | |
parent | 383ff03ccadee83bca6834951a33f71516cf7624 (diff) | |
parent | 6bf468f92c9302f84d3b21358202c3a956cad02b (diff) | |
download | zsh-4ff45581de9c6f993eae537cc82b0c4c65239b89.tar.gz zsh-4ff45581de9c6f993eae537cc82b0c4c65239b89.tar.bz2 zsh-4ff45581de9c6f993eae537cc82b0c4c65239b89.zip |
Merge pull request #496 from semmons99/master
add alias for `bundle package` to the bundler plugin
Diffstat (limited to 'plugins/bundler')
-rw-r--r-- | plugins/bundler/bundler.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index e98bb4b46..f005700ff 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -2,6 +2,7 @@ alias be="bundle exec" alias bi="bundle install" alias bl="bundle list" alias bu="bundle update" +alias bp="bundle package" # The following is based on https://github.com/gma/bundler-exec |