Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
rails-composer/files/gitignore.txt
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
84 lines (71 sloc)
1.66 KB
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 these files when committing to a git repository. | |
# | |
# See http://help.github.com/ignore-files/ for more about ignoring files. | |
# | |
# The original version of this file is found here: | |
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt | |
# | |
# Corrections? Improvements? Create a GitHub issue: | |
# http://github.com/RailsApps/rails-composer/issues | |
#---------------------------------------------------------------------------- | |
# bundler state | |
/.bundle | |
/vendor/bundle/ | |
/vendor/ruby/ | |
# minimal Rails specific artifacts | |
db/*.sqlite3 | |
/db/*.sqlite3-journal | |
/log/* | |
/tmp/* | |
# add /config/database.yml if it contains passwords | |
# /config/database.yml | |
# various artifacts | |
**.war | |
*.rbc | |
*.sassc | |
.redcar/ | |
.sass-cache | |
/config/config.yml | |
/coverage.data | |
/coverage/ | |
/db/*.javadb/ | |
/db/*.sqlite3 | |
/doc/api/ | |
/doc/app/ | |
/doc/features.html | |
/doc/specs.html | |
/public/cache | |
/public/stylesheets/compiled | |
/public/system/* | |
/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 | |
# Environment files that may contain sensitive data | |
.env | |
.powenv | |
# tilde files are usually backup files from a text editor | |
*~ |