您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Rails.gitignore 848B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. *.rbc
  2. capybara-*.html
  3. .rspec
  4. /log
  5. /tmp
  6. /db/*.sqlite3
  7. /db/*.sqlite3-journal
  8. /public/system
  9. /coverage/
  10. /spec/tmp
  11. **.orig
  12. rerun.txt
  13. pickle-email-*.html
  14. # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
  15. config/initializers/secret_token.rb
  16. config/secrets.yml
  17. # dotenv
  18. # TODO Comment out this rule if environment variables can be committed
  19. .env
  20. ## Environment normalization:
  21. /.bundle
  22. /vendor/bundle
  23. # these should all be checked in to normalize the environment:
  24. # Gemfile.lock, .ruby-version, .ruby-gemset
  25. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  26. .rvmrc
  27. # if using bower-rails ignore default bower_components path bower.json files
  28. /vendor/assets/bower_components
  29. *.bowerrc
  30. bower.json
  31. # Ignore pow environment settings
  32. .powenv
  33. # Ignore Byebug command history file.
  34. .byebug_history