Last active
August 29, 2015 14:06
-
-
Save andreypronin/b9b6c6e96cda54bf834b to your computer and use it in GitHub Desktop.
My standard .gitignore: MacOS, TextMate, Vagrant, dotenv | figaro, rspec, Capybara, fog
Gem-compatible
This file contains 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
# Ignore application configuration | |
/config/application.yml | |
/config/fog_credentials.yml | |
# Ignore the default SQLite database. | |
/db/*.sqlite3 | |
/db/*.sqlite3-journal | |
# Ignore all logfiles and tempfiles and local system/bin files | |
/log | |
/tmp | |
/spec/tmp | |
/spec/reports | |
/test/tmp | |
/test/version_tmp | |
**.orig | |
*.swp | |
*~ | |
*.so | |
*.o | |
*.a | |
mkmf.log | |
**/.DS_Store | |
/bin | |
*.sassc | |
.sass-cache | |
# Ignore local config | |
*.rbc | |
*.gem | |
.rvmrc | |
.env # dotenv | |
.vagrant | |
.config | |
.yardoc | |
InstalledFiles | |
_yardoc | |
coverage | |
/.bundle | |
/vendor/bundle | |
capybara-*.html | |
.rspec | |
rerun.txt | |
pickle-email-*.html | |
# Ignore TextMate files | |
*.tmproj | |
*.tmproject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment