1. 03 4月, 2017 1 次提交
  2. 01 3月, 2017 1 次提交
  3. 23 2月, 2017 5 次提交
  4. 16 2月, 2017 1 次提交
  5. 15 2月, 2017 1 次提交
  6. 27 1月, 2017 1 次提交
  7. 04 11月, 2016 1 次提交
  8. 13 10月, 2016 1 次提交
  9. 06 10月, 2016 1 次提交
  10. 16 9月, 2016 1 次提交
  11. 13 9月, 2016 1 次提交
  12. 27 7月, 2016 1 次提交
  13. 30 6月, 2016 2 次提交
  14. 03 6月, 2016 2 次提交
  15. 09 5月, 2016 1 次提交
    • C
      Enable the Rubocop DeprecatedClassMethods cop · 9cc0937b
      Connor Shea 提交于
      This reports uses of `File.exists?` and `Dir.exists?`, which were both
      deprecated in Ruby and will eventually be removed in favor of
      `.exist?`. Also fixes all existing uses of the deprecated methods.
      9cc0937b
  16. 04 5月, 2016 1 次提交
  17. 15 4月, 2016 3 次提交
  18. 05 2月, 2016 1 次提交
  19. 03 2月, 2016 1 次提交
  20. 15 12月, 2015 1 次提交
  21. 18 11月, 2015 1 次提交
  22. 21 10月, 2015 1 次提交
  23. 09 10月, 2015 1 次提交
  24. 11 8月, 2015 2 次提交
  25. 15 7月, 2015 1 次提交
  26. 03 6月, 2015 1 次提交
    • D
      Move repository when project is removed · 97ff86e0
      Dmitriy Zaporozhets 提交于
      Ths commit does next:
      
      * When we remove project we move repository to path+deleted.git
      * Then we schedule removal of path+deleted with sidekiq
      * If repository move failed we abort project removal
      
      This should help us with NFS issue when project get removed but
      repository stayed. The full explanation of problem is below:
      
      * rm -rf project.git
      * rm -rf removes project.git/objects/foo
      * NFS server renames foo to foo.nfsXXXX because some NFS client (think
      * Unicorn) still has the file open
      * rm -rf exits, but project.git/objects/foo.nfsXXX still exists
      * Unicorn closes the file, the NFS client closes the file (foo), and the
      * NFS server removes foo.nfsXXX
      * the directory project.git/objects/ still exists => problem
      
      So now we move repository and even if repository removal failed
      
      Repository directory is moved so no bugs with project removed but
      repository directory taken. User still able to create new project with
      same name. From administrator perspective you can easily find stalled
      repositories by searching `*+deleted.git`
      Signed-off-by: NDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
      97ff86e0
  27. 06 4月, 2015 1 次提交
  28. 18 11月, 2014 2 次提交
  29. 06 11月, 2014 2 次提交