An error occurred fetching the project authors.
  1. 10 Jun, 2016 1 commit
  2. 09 Jun, 2016 1 commit
    • Sean McGivern's avatar
      Enable RuboCop for migrations · 98bb435f
      Sean McGivern authored
      Migrations shouldn't fail RuboCop checks - especially lint checks, such
      as the nested method check. To avoid changing code in existing
      migrations, add the magic comment to the top of each of them to skip
      that file.
      98bb435f
  3. 04 Jun, 2016 1 commit
  4. 03 Jun, 2016 2 commits
  5. 01 Jun, 2016 2 commits
  6. 31 May, 2016 1 commit
  7. 30 May, 2016 13 commits
  8. 25 May, 2016 2 commits
  9. 24 May, 2016 1 commit
  10. 23 May, 2016 9 commits
  11. 19 May, 2016 1 commit
  12. 13 May, 2016 1 commit
  13. 12 May, 2016 1 commit
  14. 11 May, 2016 2 commits
    • Connor Shea's avatar
      Enable the StringReplacement cop. · 4995302d
      Connor Shea authored
      Also fix one use of `gsub` that would be faster as `delete`.
      
      Use `tr` instead of `gsub` when you are replacing the same number of
      characters. Use `delete` instead of `gsub` when you are deleting
      characters.
      4995302d
    • Connor Shea's avatar
      Enable Rubocop Casecmp Performance Cop. · 377583a3
      Connor Shea authored
      Also fixes the errors caused by enabling the cop. casecmp is more performant than `.downcase` and `==`.
      377583a3
  15. 08 May, 2016 1 commit
    • Connor Shea's avatar
      Enable the Rubocop DeprecatedClassMethods cop · 9cc0937b
      Connor Shea authored
      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. 28 Apr, 2016 1 commit
    • Connor Shea's avatar
      Enable LstripRstrip cop · 267dd233
      Connor Shea authored
      This requires no code changes since it doesn't actually change anything
      in the codebase, just preventative.
      267dd233