Created
May 20, 2013 22:15
-
-
Save lbalceda/5616034 to your computer and use it in GitHub Desktop.
rails 3 dot gitignore
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
# Developer | |
.env | |
# Ignore bundler config | |
/.bundle | |
# Ignore the default SQLite database. | |
/db/*.sqlite3 | |
# Ignore uploads | |
/public/uploads | |
# Ignore all logfiles and tempfiles. | |
/log/*.log | |
/tmp | |
# OS X | |
.DS_Store | |
.Spotlight-v100 | |
.Trashes | |
*.app | |
*.cxx | |
# Linux | |
*.swp | |
*.swo | |
.*.sw[a-z] | |
*.un~ | |
# Ignore bundler config | |
/.bundle | |
# Ignore the default SQLite database. | |
/db/*.sqlite3 | |
# Ruby | |
*.gem | |
*.rbc | |
.config | |
coverage | |
InstalledFiles | |
lib/bundler/man | |
pkg | |
rdoc | |
spec/reports | |
test/tmp | |
test/version_tmp | |
# YARD artifacts | |
.yardoc | |
_yardoc | |
doc/ | |
# Rails | |
*.rbc | |
*.sassc | |
.sass-cache | |
.rspec | |
/vendor/bundle | |
/public/system/* | |
/coverage/ | |
/spec/tmp/* | |
# TextMate | |
*.tmproj | |
*.tmproject | |
tmtags | |
# Archives | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.tar.gz | |
*.zip | |
*.bzip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment