Last active
December 4, 2015 01:19
-
-
Save hatak/019527da423320cdc151 to your computer and use it in GitHub Desktop.
gitignore setting for Rails project with RubyMine
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
### .gitignore setting for Rails project with RubyMine | |
*.rbc | |
capybara-*.html | |
.rspec | |
/log | |
/tmp | |
/db/*.sqlite3* | |
/public/system | |
/coverage/ | |
/spec/tmp | |
**.orig | |
rerun.txt | |
pickle-email-*.html | |
.DS_Store | |
config/initializers/secret_token.rb | |
config/secrets.yml | |
/.env | |
## Environment normalisation: | |
/.bundle | |
/vendor/bundle | |
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | |
.rvmrc | |
# if using bower-rails ignore default bower_components path bower.json files | |
/vendor/assets/bower_components | |
*.bowerrc | |
bower.json | |
# Ignore pow environment settings | |
.powenv | |
## Editor settings: | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm | |
*.iml | |
.idea/ | |
*.ipr | |
*.iws | |
# vim | |
*.sw* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment