mirror of
https://github.com/mcasimir/kaminari-bootstrap.git
synced 2022-11-09 13:46:52 -05:00
updated gitignore
This commit is contained in:
parent
d5b56dae74
commit
260a9cb6ea
1 changed files with 107 additions and 39 deletions
146
.gitignore
vendored
146
.gitignore
vendored
|
@ -1,49 +1,117 @@
|
||||||
# rcov generated
|
# Created by http://gitignore.io
|
||||||
coverage
|
|
||||||
coverage.data
|
|
||||||
|
|
||||||
# rdoc generated
|
Gemfile.lock
|
||||||
rdoc
|
|
||||||
|
|
||||||
# yard generated
|
### Ruby ###
|
||||||
doc
|
*.gem
|
||||||
.yardoc
|
*.rbc
|
||||||
|
|
||||||
# bundler
|
|
||||||
.bundle
|
.bundle
|
||||||
|
.config
|
||||||
# jeweler generated
|
coverage
|
||||||
|
InstalledFiles
|
||||||
|
lib/bundler/man
|
||||||
pkg
|
pkg
|
||||||
|
rdoc
|
||||||
|
spec/reports
|
||||||
|
test/tmp
|
||||||
|
test/version_tmp
|
||||||
|
tmp
|
||||||
|
|
||||||
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
|
# YARD artifacts
|
||||||
#
|
.yardoc
|
||||||
# * Create a file at ~/.gitignore
|
_yardoc
|
||||||
# * Include files you want ignored
|
doc/
|
||||||
# * Run: git config --global core.excludesfile ~/.gitignore
|
|
||||||
#
|
|
||||||
# After doing this, these files will be ignored in all your git projects,
|
|
||||||
# saving you from having to 'pollute' every project you touch with them
|
|
||||||
#
|
|
||||||
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
|
|
||||||
#
|
|
||||||
# For MacOS:
|
|
||||||
#
|
|
||||||
#.DS_Store
|
|
||||||
|
|
||||||
# For TextMate
|
### Rails ###
|
||||||
#*.tmproj
|
*.rbc
|
||||||
#tmtags
|
*.sassc
|
||||||
|
.sass-cache
|
||||||
|
capybara-*.html
|
||||||
|
.rspec
|
||||||
|
.rvmrc
|
||||||
|
/.bundle
|
||||||
|
/vendor/bundle
|
||||||
|
/log/*
|
||||||
|
/tmp/*
|
||||||
|
/db/*.sqlite3
|
||||||
|
/public/system/*
|
||||||
|
/coverage/
|
||||||
|
/spec/tmp/*
|
||||||
|
**.orig
|
||||||
|
rerun.txt
|
||||||
|
pickle-email-*.html
|
||||||
|
.project
|
||||||
|
!.keep
|
||||||
|
|
||||||
# For emacs:
|
|
||||||
#*~
|
|
||||||
#\#*
|
|
||||||
#.\#*
|
|
||||||
|
|
||||||
# For vim:
|
### SublimeText ###
|
||||||
#*.swp
|
# SublimeText project files
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
# For redcar:
|
### TextMate ###
|
||||||
#.redcar
|
*.tmproj
|
||||||
|
*.tmproject
|
||||||
|
tmtags
|
||||||
|
|
||||||
# For rubinius:
|
### OSX ###
|
||||||
#*.rbc
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
Icon
|
||||||
|
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear on external disk
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
|
# Windows image file caches
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
.*
|
||||||
|
!.gitignore
|
||||||
|
!.git*
|
||||||
|
*~
|
||||||
|
|
||||||
|
|
||||||
|
### RubyMine ###
|
||||||
|
.idea/workspace.xml
|
||||||
|
|
||||||
|
### Eclipse ###
|
||||||
|
*.pydevproject
|
||||||
|
.project
|
||||||
|
.metadata
|
||||||
|
bin/**
|
||||||
|
tmp/**
|
||||||
|
tmp/**/*
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
local.properties
|
||||||
|
.classpath
|
||||||
|
.settings/
|
||||||
|
.loadpath
|
||||||
|
|
||||||
|
# External tool builders
|
||||||
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
# Locally stored "Eclipse launch configurations"
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
# CDT-specific
|
||||||
|
.cproject
|
||||||
|
|
||||||
|
# PDT-specific
|
||||||
|
.buildpath
|
Loading…
Reference in a new issue