An error occurred fetching the project authors.
  1. 29 May, 2016 1 commit
  2. 18 May, 2016 1 commit
  3. 13 May, 2016 1 commit
  4. 10 May, 2016 1 commit
  5. 04 May, 2016 2 commits
  6. 14 Apr, 2016 1 commit
  7. 07 Apr, 2016 2 commits
  8. 04 Apr, 2016 2 commits
  9. 04 Mar, 2016 1 commit
  10. 21 Jan, 2016 1 commit
  11. 07 Dec, 2015 1 commit
  12. 16 Nov, 2015 1 commit
  13. 12 Nov, 2015 1 commit
    • Jason Lee's avatar
      Avoid render edit_form in each notes. · 19740871
      Jason Lee authored
      Use RJS to render edit note feature.
      
      Before:
      
      ```
      Rendered projects/notes/_note.html.haml (27.9ms)
      Rendered projects/_zen.html.haml (0.3ms)
      Rendered projects/notes/_hints.html.haml (0.7ms)
      Rendered projects/_md_preview.html.haml (3.9ms)
      Rendered projects/notes/_edit_form.html.haml (6.9ms)
      Rendered projects/notes/_note.html.haml (17.7ms)
      Rendered projects/_zen.html.haml (0.3ms)
      Rendered projects/notes/_hints.html.haml (0.6ms)
      Rendered projects/_md_preview.html.haml (3.4ms)
      Rendered projects/notes/_edit_form.html.haml (7.0ms)
      ```
      
      After:
      
      ```
      Rendered projects/notes/_note.html.haml (13.8ms)
      Rendered projects/notes/_note.html.haml (7.1ms)
      Rendered projects/notes/_note.html.haml (9.5ms)
      Rendered projects/notes/_note.html.haml (8.5ms)
      ```
      
      This change reduce at least 6ms * N ('N' - number of notes).
      19740871
  14. 07 Jul, 2015 1 commit
  15. 26 Jun, 2015 1 commit
  16. 22 Jun, 2015 1 commit
  17. 13 Jun, 2015 2 commits
  18. 17 Feb, 2015 1 commit
  19. 14 Feb, 2015 1 commit
    • Vinnie Okada's avatar
      Upgrade to Rails 4.1.9 · 76aad9b7
      Vinnie Okada authored
      Make the following changes to deal with new behavior in Rails 4.1.2:
      
      * Use nested resources to avoid slashes in arguments to path helpers.
      76aad9b7
  20. 12 Feb, 2015 2 commits
  21. 19 Jan, 2015 1 commit
  22. 15 Jan, 2015 2 commits
  23. 22 Oct, 2014 1 commit
    • Vinnie Okada's avatar
      Fix test assertions · 7a5072c5
      Vinnie Okada authored
      Make sure we're asserting the correct thing when testing visible and
      invisible DOM elements.
      7a5072c5
  24. 18 Oct, 2014 3 commits
  25. 16 Oct, 2014 1 commit
  26. 22 Sep, 2014 1 commit
  27. 07 Aug, 2014 1 commit
  28. 14 Jun, 2014 1 commit
  29. 24 May, 2014 1 commit
  30. 22 May, 2014 1 commit
  31. 13 Apr, 2014 1 commit
  32. 19 Mar, 2014 1 commit
    • Robert Speicher's avatar
      Speed up features/notes_on_merge_requests_spec · 53d3294d
      Robert Speicher authored
      This spec featured the slowest tests in the entire suite. After some
      debugging, the cause was found to be the large commit diff generated by
      comparing the stable and master branches.
      
      To fix this, the seed repository was modified to create a simple branch
      off of master that consists of three simple commits and minor changes.
      The spec was then updated to compare master to this branch instead of
      stable. The result is a spec group that runs in under 30 seconds, down
      from about 90.
      53d3294d