Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. ###OSX###
  2.  
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6.  
  7. # Icon must end with two \r
  8. Icon
  9.  
  10.  
  11. # Thumbnails
  12. ._*
  13.  
  14. # Files that might appear on external disk
  15. .Spotlight-V100
  16. .Trashes
  17.  
  18. # Directories potentially created on remote AFP share
  19. .AppleDB
  20. .AppleDesktop
  21. Network Trash Folder
  22. Temporary Items
  23. .apdisk
  24.  
  25.  
  26. ###Windows###
  27.  
  28. # Windows image file caches
  29. Thumbs.db
  30. ehthumbs.db
  31.  
  32. # Folder config file
  33. Desktop.ini
  34.  
  35. # Recycle Bin used on file shares
  36. $RECYCLE.BIN/
  37.  
  38. # Windows Installer files
  39. *.cab
  40. *.msi
  41. *.msm
  42. *.msp
  43.  
  44. # Windows shortcuts
  45. *.lnk
  46.  
  47.  
  48. ###Linux###
  49.  
  50. *~
  51.  
  52. # KDE directory preferences
  53. .directory
  54.  
  55.  
  56. ###Rails###
  57.  
  58. *.rbc
  59. capybara-*.html
  60. .rspec
  61. /log
  62. /tmp
  63. /db/*.sqlite3
  64. /public/system
  65. /coverage/
  66. /spec/tmp
  67. **.orig
  68. rerun.txt
  69. pickle-email-*.html
  70.  
  71. # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
  72. config/initializers/secret_token.rb
  73. config/secrets.yml
  74.  
  75. ## Environment normalisation:
  76. /.bundle
  77. /vendor/bundle
  78.  
  79. # these should all be checked in to normalise the environment:
  80. # Gemfile.lock, .ruby-version, .ruby-gemset
  81.  
  82. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  83. .rvmrc
  84.  
  85. # if using bower-rails ignore default bower_components path bower.json files
  86. /vendor/assets/bower_components
  87. *.bowerrc
  88. bower.json
  89.  
  90.  
  91. ###Ruby###
  92.  
  93. *.gem
  94. *.rbc
  95. /.config
  96. /coverage/
  97. /InstalledFiles
  98. /pkg/
  99. /spec/reports/
  100. /test/tmp/
  101. /test/version_tmp/
  102. /tmp/
  103.  
  104. ## Specific to RubyMotion:
  105. .dat*
  106. .repl_history
  107. build/
  108.  
  109. ## Documentation cache and generated files:
  110. /.yardoc/
  111. /_yardoc/
  112. /doc/
  113. /rdoc/
  114.  
  115. ## Environment normalisation:
  116. /.bundle/
  117. /lib/bundler/man/
  118.  
  119. # for a library or gem, you might want to ignore these files since the code is
  120. # intended to run in multiple environments; otherwise, check them in:
  121. # Gemfile.lock
  122. # .ruby-version
  123. # .ruby-gemset
  124.  
  125. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  126. .rvmrc
  127.  
  128. ###Eclipse###
  129.  
  130. *.pydevproject
  131. .metadata
  132. .gradle
  133. bin/
  134. tmp/
  135. *.tmp
  136. *.bak
  137. *.swp
  138. *~.nib
  139. local.properties
  140. .settings/
  141. .loadpath
  142.  
  143. # External tool builders
  144. .externalToolBuilders/
  145.  
  146. # Locally stored "Eclipse launch configurations"
  147. *.launch
  148.  
  149. # CDT-specific
  150. .cproject
  151.  
  152. # PDT-specific
  153. .buildpath
  154.  
  155. # sbteclipse plugin
  156. .target
  157.  
  158. # TeXlipse plugin
  159. .texlipse
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement