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

Fixed the rfind command in the  ruby plugin
This commit is contained in:
Robby Russell 2012-01-02 19:02:32 -08:00
commit 35de0e1e63

View File

@ -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'