Created
August 11, 2011 08:27
-
-
Save brandoncordell/1139158 to your computer and use it in GitHub Desktop.
My standard .gitignore for Rails projects
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
.bundle | |
db/*.sqlite3 | |
log/*.log | |
tmp/ | |
.sass-cache/ | |
# rails ignores | |
*.rbc | |
*.sassc | |
.sass-cache | |
capybara-*.html | |
.rspec | |
/.bundle | |
/vendor/bundle | |
/log/* | |
/tmp/* | |
/db/*.sqlite3 | |
/public/system/* | |
/coverage/ | |
/spec/tmp/* | |
**.orig | |
config/*.yml | |
rerun.txt | |
pickle-email-*.html | |
# os x ignores | |
.DS_Store | |
Icon? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
# vim ignores | |
.*.sw[a-z] | |
*.un~ | |
Session.vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment