1. 01 Mar, 2017 2 commits
    • Sean McGivern's avatar
      Add RuboCop cop for custom error classes · 6ab4bfa2
      Sean McGivern authored
      From the Ruby style guide:
      
          # bad
          class FooError < StandardError
          end
      
          # okish
          class FooError < StandardError; end
      
          # good
          FooError = Class.new(StandardError)
      
      This cop does that, but only for error classes (classes where the
      superclass ends in 'Error'). We have empty controllers and models, which
      are perfectly valid empty classes.
      6ab4bfa2
    • Robert Speicher's avatar
      Merge branch 'gitaly-post-receive-ee' into 'master' · 75027d97
      Robert Speicher authored
      Add internal endpoint to notify post-receive to Gitaly
      
      See merge request !1254
      75027d97
  2. 28 Feb, 2017 14 commits
  3. 27 Feb, 2017 24 commits