Skip to content
  1. Aug 08, 2018
  2. Jul 09, 2018
  3. Jun 22, 2018
  4. Jun 20, 2018
    • Bob Van Landuyt's avatar
      Add a cop for `FinderMethods` · f3f1df14
      Bob Van Landuyt authored
      This notifies developers when calling `find(_by!)` chained on
      `execute`. And suggests using the methods from `FinderMethods`. These
      will perform the correct authorization checks on the resource when it
      is found.
      f3f1df14
  5. Jun 19, 2018
  6. May 29, 2018
  7. Apr 23, 2018
  8. Apr 18, 2018
  9. Apr 09, 2018
  10. Apr 06, 2018
  11. Mar 21, 2018
  12. Mar 08, 2018
  13. Jan 31, 2018
  14. Jan 12, 2018
  15. Jan 11, 2018
  16. Dec 26, 2017
  17. Dec 22, 2017
  18. Dec 13, 2017
  19. Dec 11, 2017
    • Sean McGivern's avatar
      Add cop for use of remove_column · 1ab33b15
      Sean McGivern authored
      remove_column should only be used in the up (or change) step of a migration if
      it's a post-deployment migration. Otherwise there will be downtime due to the
      ActiveRecord column cache, which we can avoid by using the IgnorableColumn
      concern in combination with a post-deployment migration.
      1ab33b15
  20. Nov 22, 2017
  21. Nov 21, 2017
  22. Nov 17, 2017
  23. Nov 16, 2017
  24. Oct 21, 2017
  25. Oct 18, 2017
  26. Oct 10, 2017
  27. Oct 07, 2017
    • Jacopo's avatar
      Replaces `tag: true` into `:tag` in the specs · 0ce67858
      Jacopo authored
      Replaces all the explicit include metadata syntax in the specs (tag:
      true) into the implicit one (:tag).
      Added a cop to prevent future errors and handle autocorrection.
      0ce67858
  28. Sep 18, 2017
  29. Aug 14, 2017
  30. Aug 01, 2017
  31. Jul 26, 2017
  32. Jul 14, 2017
  33. Jul 07, 2017
    • Yorick Peterse's avatar
      Added EachBatch for iterating tables in batches · ff78af15
      Yorick Peterse authored
      This module provides a class method called `each_batch` that can be used
      to iterate tables in batches in a more efficient way compared to Rails'
      `in_batches` method. This commit also includes a RuboCop cop to
      blacklist the use of `in_batches` in favour of this new method.
      ff78af15
    • Yorick Peterse's avatar
      Added EachBatch for iterating tables in batches · 5f9c8458
      Yorick Peterse authored
      This module provides a class method called `each_batch` that can be used
      to iterate tables in batches in a more efficient way compared to Rails'
      `in_batches` method. This commit also includes a RuboCop cop to
      blacklist the use of `in_batches` in favour of this new method.
      5f9c8458
  34. Jul 06, 2017