Advertisement
Guest User

Untitled

a guest
May 27th, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.66 KB | None | 0 0
  1. #----------------------------------------------------------------------------
  2. # Ignore these files when commiting to a git repository.
  3. #
  4. # See http://help.github.com/ignore-files/ for more about ignoring files.
  5. #
  6. # The original version of this file is found here:
  7. # https://github.com/RailsApps/rails3-application-templates/raw/master/files/gitignore.txt
  8. #
  9. # Corrections? Improvements? Create a GitHub issue:
  10. # http://github.com/RailsApps/rails3-application-templates/issues
  11. #----------------------------------------------------------------------------
  12.  
  13. # bundler state
  14. /.bundle
  15. /vendor/bundle/
  16.  
  17. # minimal Rails specific artifacts
  18. db/*.sqlite3
  19. /log/*
  20. /tmp/*
  21.  
  22. # various artifacts
  23. **.war
  24. *.rbc
  25. *.sassc
  26. .rspec
  27. .redcar/
  28. .sass-cache
  29. /config/config.yml
  30. /config/database.yml
  31. /coverage.data
  32. /coverage/
  33. /db/*.javadb/
  34. /db/*.sqlite3
  35. /doc/api/
  36. /doc/app/
  37. /doc/features.html
  38. /doc/specs.html
  39. /public/cache
  40. /public/stylesheets/compiled
  41. /public/system/*
  42. /spec/tmp/*
  43. /cache
  44. /capybara*
  45. /capybara-*.html
  46. /gems
  47. /spec/requests
  48. /spec/routing
  49. /spec/views
  50. /specifications
  51. rerun.txt
  52. pickle-email-*.html
  53.  
  54. # If you find yourself ignoring temporary files generated by your text editor
  55. # or operating system, you probably want to add a global ignore instead:
  56. #   git config --global core.excludesfile ~/.gitignore_global
  57. #
  58. # Here are some files you may want to ignore globally:
  59.  
  60. # scm revert files
  61. **.orig
  62.  
  63. # Mac finder artifacts
  64. .DS_Store
  65.  
  66. # Netbeans project directory
  67. /nbproject/
  68.  
  69. # RubyMine project files
  70. .idea
  71.  
  72. # Textmate project files
  73. /*.tmproj
  74.  
  75. # vim artifacts
  76. **.swp
  77.  
  78. # a spot where WADO requests may save files
  79. /wado_rcv/
  80.  
  81. dicom_activity.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement