calraijintaiko/caltaiko

View on GitHub
.gitignore

Summary

Maintainability
Test Coverage
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# 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'

# Ignore bundler config.
/.bundle

# Ignore development and test databases
/db/development.sqlite3
/db/test.sqlite3

# Ignore coverage reports generated by SimpleCov gem
/coverage

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp

# Ignore frontend dependencies.
/node_modules
/vendor/assets/bower_components/

# Ignore generated Rdoc documentation
/doc

# Ignore AWS configuration
/config/aws_config.yml

# Ignore environment variable configuration
/config/local_env.yml

# Ignore text editor generated temp files
# Do it here instead of globally since many people will be handling this code.
*~
*#
.#*
.*.swp

# Ignore Mac generated DS_Store binaries
.DS_Store

npm-debug.log