Browse code

added a rake plugin to disable zsh file globbing when calling rake tasks with square brackets

max sharples authored on 17/01/2012 at 02:11:01
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,6 @@
0
+alias rake="noglob rake" # allows square brackts for rake task invocation
1
+alias brake='noglob bundle exec rake' # execute the bundled rake gem
2
+alias srake='noglob sudo rake' # noglob must come before sudo
3
+alias sbrake='noglob sudo bundle exec rake' # altogether now ... 
4
+
5
+