Created
September 25, 2014 11:29
-
-
Save stockime/03c5914a881bfb398959 to your computer and use it in GitHub Desktop.
.gitignore for Ruby on 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
# bundler state | |
/.bundle | |
/vendor/bundle/ | |
/vendor/ruby/ | |
# minimal Rails specific artifacts | |
db/*.sqlite3 | |
/db/*.sqlite3-journal | |
/log/* | |
/tmp/* | |
/solr/* | |
# configuration file introduced in Rails 4.1 | |
/config/secrets.yml | |
# various artifacts | |
**.war | |
*.rbc | |
*.sassc | |
.rspec | |
.redcar/ | |
.sass-cache | |
/config/config.yml | |
/config/database.yml | |
/coverage.data | |
/coverage/ | |
/db/*.javadb/ | |
/db/*.sqlite3 | |
/doc/api/ | |
/doc/app/ | |
/doc/features.html | |
/doc/specs.html | |
/doc/*.svg | |
/public/cache | |
/public/stylesheets/compiled | |
/public/system/* | |
/public/uploads/* | |
/spec/tmp/* | |
/cache | |
/capybara* | |
/capybara-*.html | |
/gems | |
/specifications | |
rerun.txt | |
pickle-email-*.html | |
.zeus.sock | |
# If you find yourself ignoring temporary files generated by your text editor | |
# or operating system, you probably want to add a global ignore instead: | |
# git config --global core.excludesfile ~/.gitignore_global | |
# | |
# Here are some files you may want to ignore globally: | |
# scm revert files | |
**.orig | |
# Mac finder artifacts | |
.DS_Store | |
# Netbeans project directory | |
/nbproject/ | |
# RubyMine project files | |
.idea | |
# Textmate project files | |
/*.tmproj | |
# vim artifacts | |
**.swp | |
# Ignore application configuration | |
/config/application.yml | |
*.sublime-project | |
*.sublime-workspace | |
.powenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment