ZSH and Rake Tasks!
While ZSH is definitely a nice and "smarter" shell, you definitely
will find a few gotchas with rvm, git, and now with rake.
multiple arguments from the command line is this error: > rake foo:bar[fido]
> zsh: no matches found: Two things will help rectify this:
1. create an alias in your .zshrc file for "alias rake=rake noglob"
2. you need to escape those brackets on the command line. So instead
of "rake foo:bar[fido]", run it as "rake foo:bar\[fido\]" [1] Voila! Happy hacking!
Credits:
[1] http://robots.thoughtbot.com/post/18129303042/how-to-use-arguments-in-a-rake-...