diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf1d09a --- /dev/null +++ b/.gitignore @@ -0,0 +1,88 @@ +# ignore vim swap files: +*.swp + +.DS_Store +.bundle + +/db/*.sqlite3-journal +/db/*.sqlite3 +tmp/ +.DS_Store +/ERD.pdf +/ERD.png +/bin + +# Numerous always-ignore extensions +*.diff +*.err +*.orig +*.log +*.rej +*.swo +*.swp +*.vi +*~ + +# OS or Editor folders +.DS_Store +.cache +.project +.settings +nbproject +Thumbs.db + + +# Extra +.sass-cache +.livereload + +# Dreamweaver added files +_notes +dwsync.xml + +# Komodo +*.komodoproject +.komodotools + +# Folders to ignore +.hg +.svn +/db/*.db +/db/*.db-journal + +log/*.log +tmp/**/* +/.project +*.komodoproject +/.komodotools +.tmp*~ + +# Ignore fixtures. We use factory_girl. +/test/fixtures/*.yml + +ERD.pdf +ERD.png + +/vendor/cache +/vendor/bundle +.settings/* +/.idea + +# ignore Sass cache: +/.sass-cache +tmp/sass-cache +tmp/cache + +# directory created by "bundle install --path ." (not needed anyway): +/ruby + +# ignore wrappers generated by "bundle install --binstubs": +/bin + +/tmp + +# Images +public/uploads +# Freeswitch +misc/freeswitch/conf/freeswitch.serial +misc/freeswitch/scripts/ini/gateway_gateway1.ini |