m4i/rubocop-git

View on GitHub
lib/rubocop/git/line.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RuboCop::Git
# copy from https://github.com/thoughtbot/hound/blob/d2f3933/app/models/line.rb
class Line < Struct.new(:content, :line_number, :patch_position)
  def ==(other_line)
    content == other_line.content
  end
end
end