Created
April 14, 2010 10:54
-
-
Save cyx/365676 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /Applications/PeepOpen.app/Contents/Resources/ | |
ack ignore | |
# This returns the following in my copy | |
# FuzzyRecord.rb | |
# 65: ignorePatterns = /^(\.DS_Store|\.git|\.hg|\.svn|build|tmp|log|vendor\/(rails|gems|plugins))\b/i | |
# 66: next if relativeFilename.match(ignorePatterns) | |
# 69: # TODO: Should ignore dot directories | |
# COOL! Now we know where to tweak | |
# I changed the line | |
# ignorePatterns = /^(\.DS_Store|\.git|\.hg|\.svn|build|tmp|log|vendor\/(rails|gems|plugins))\b/i | |
# | |
# TO | |
# | |
# ignorePatterns = /^(\.DS_Store|\.git|\.hg|\.svn|build|tmp|log|solr|public\/system|vendor\/(rails|gems|plugins))\b/i | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment