Welcome to mirror list, hosted at ThFree Co, Russian Federation.

diff.rb « gitaly_client « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54df6304865f2165f9e495d1a39428a50159a161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Gitlab
  module GitalyClient
    class Diff
      FIELDS = %i(from_path to_path old_mode new_mode from_id to_id patch overflow_marker collapsed).freeze

      attr_accessor(*FIELDS)

      def initialize(params)
        params.each do |key, val|
          public_send(:"#{key}=", val) # rubocop:disable GitlabSecurity/PublicSend
        end
      end

      def ==(other)
        FIELDS.all? do |field|
          public_send(field) == other.public_send(field) # rubocop:disable GitlabSecurity/PublicSend
        end
      end
    end
  end
end