Browse Source

Merge pull request #799 from plindborg/ruby-plugin-fix

Fixed the rfind command in the  ruby plugin
Robby Russell 12 years ago
parent
commit
35de0e1e63
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/ruby/ruby.plugin.zsh

+ 1 - 1
plugins/ruby/ruby.plugin.zsh

@@ -3,4 +3,4 @@
 alias sgem='sudo gem'
 
 # Find ruby file
-alias rfind='find . -name *.rb | xargs grep -n'
+alias rfind='find . -name "*.rb" | xargs grep -n'