An error occurred fetching the project authors.
  1. 16 Feb, 2016 1 commit
  2. 13 Feb, 2016 1 commit
  3. 12 Feb, 2016 1 commit
  4. 11 Feb, 2016 1 commit
  5. 04 Feb, 2016 1 commit
    • Yorick Peterse's avatar
      Dedicated method for counting commits between refs · b263ab61
      Yorick Peterse authored
      gitlab_git 8.1 adds the ability to count the amount of commits between
      two references without having to allocate anything but regular
      Rugged::Commit objects. This in turn speeds up the process of counting
      the number of commits a branch is ahead/behind by about 3.5x.
      b263ab61
  6. 03 Feb, 2016 2 commits
  7. 02 Feb, 2016 2 commits
  8. 01 Feb, 2016 2 commits
  9. 30 Jan, 2016 2 commits
  10. 25 Jan, 2016 2 commits
  11. 22 Jan, 2016 1 commit
  12. 21 Jan, 2016 1 commit
  13. 20 Jan, 2016 2 commits
  14. 18 Jan, 2016 2 commits
  15. 13 Jan, 2016 1 commit
  16. 11 Jan, 2016 2 commits
  17. 07 Jan, 2016 3 commits
  18. 06 Jan, 2016 1 commit
  19. 02 Jan, 2016 3 commits
  20. 28 Dec, 2015 1 commit
  21. 27 Dec, 2015 1 commit
  22. 23 Dec, 2015 1 commit
  23. 22 Dec, 2015 2 commits
  24. 18 Dec, 2015 2 commits
  25. 17 Dec, 2015 2 commits
    • Yorick Peterse's avatar
      Track object counts using the "allocations" Gem · f181f05e
      Yorick Peterse authored
      This allows us to track the counts of actual classes instead of "T_XXX"
      nodes. This is only enabled on CRuby as it uses CRuby specific APIs.
      f181f05e
    • Yorick Peterse's avatar
      Instrument all ActiveRecord model methods · bcee44ad
      Yorick Peterse authored
      This works by searching the raw source code for any references to
      commonly used ActiveRecord methods. While not bulletproof it saves us
      from having to list hundreds of methods by hand. It also ensures that
      (most) newly added methods are instrumented automatically.
      
      This _only_ instruments models defined in app/models, should a model
      reside somewhere else (e.g. somewhere in lib/) it _won't_ be
      instrumented.
      bcee44ad