From d1f32755018aed762b4ea566945afc62bdda9845 Mon Sep 17 00:00:00 2001 From: Julien Negrotto Date: Thu, 1 Sep 2016 11:08:14 -0500 Subject: [PATCH] Add support for rake binstub to rake plugin --- plugins/rake/rake.plugin.zsh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/plugins/rake/rake.plugin.zsh b/plugins/rake/rake.plugin.zsh index 12115001..0cba8452 100644 --- a/plugins/rake/rake.plugin.zsh +++ b/plugins/rake/rake.plugin.zsh @@ -1,10 +1,9 @@ -# Thank you Jim for everything you contributed to the Ruby and open source community +# Thank you Jim for everything you contributed to the Ruby and open source community # over the years. We will miss you dearly. -alias jimweirich="rake" +alias jimweirich="rake" alias rake="noglob rake" # allows square brackts for rake task invocation alias brake='noglob bundle exec rake' # execute the bundled rake gem alias srake='noglob sudo rake' # noglob must come before sudo -alias sbrake='noglob sudo bundle exec rake' # altogether now ... - - +alias sbrake='noglob sudo bundle exec rake' # altogether now ... +alias bin/rake='noglob bin/rake' # support use of binstub