BigW Consortium Gitlab

  1. 22 Jun, 2015 2 commits
  2. 20 May, 2015 1 commit
    • Update ffaker gem · 9789b56a
      Robert Speicher authored
      Adds a version requirement which it didn't have before, at 2.0.0. This
      version has breaking API changes in that the namespace is now `FFaker`
      instead of `Faker`.
  3. 16 May, 2015 2 commits
  4. 06 May, 2015 2 commits
  5. 02 May, 2015 1 commit
  6. 24 Apr, 2015 2 commits
  7. 14 Apr, 2015 1 commit
  8. 13 Apr, 2015 1 commit
  9. 03 Apr, 2015 1 commit
  10. 23 Mar, 2015 1 commit
  11. 18 Mar, 2015 1 commit
  12. 12 Mar, 2015 1 commit
  13. 11 Mar, 2015 1 commit
  14. 25 Feb, 2015 6 commits
  15. 14 Feb, 2015 1 commit
    • 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.
  16. 12 Feb, 2015 1 commit
  17. 07 Feb, 2015 2 commits
  18. 01 Dec, 2014 1 commit
  19. 26 Sep, 2014 1 commit
  20. 15 Sep, 2014 2 commits
  21. 01 Aug, 2014 1 commit
  22. 25 Jul, 2014 1 commit
  23. 16 Jul, 2014 1 commit
  24. 03 Jul, 2014 1 commit
  25. 18 Jun, 2014 1 commit
  26. 15 Jun, 2014 1 commit
  27. 13 Jun, 2014 1 commit
  28. 10 Jun, 2014 2 commits
    • Allow more mail clients to group emails by thread · de90b572
      Pierre de La Morinerie authored
      * send a ‘In-Reply-To’ header along the ‘References’ header
      * subject of answers to an existing thread begins with ‘Re: ’
      
      This fixes threading with at least Mail.app and Airmail.
    • Send notification emails to the "project", and put people in Cc · 466b768b
      Pierre de La Morinerie authored
      This fixes email threading in Mail.app, that doesn't like when a thread
      doesn't have stable recipients.
      
      For instance, here is a possible sender-recipient combinations before:
      
      From: A
      To: Me
      New issue
      
      From: B
      To: Me
      Reply on new issue
      
      From: A
      To: Me
      Another reply
      
      Mail.app doesn't see B as a participant to the original email thread,
      and decides to break the thread: it will group all messages from A
      together, and separately all messages from B.
      
      This commit makes the thread look like this:
      
      From: A
      To: gitlab/project
      Cc: Me
      New issue
      
      From: B
      To: gitlab/project
      Cc: Me
      Reply on new issue
      
      From: A
      To: gitlab/project
      Cc: Me
      Another reply
      
      Mail.app sees a common recipient, and group the thread correctly.