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

compare.rb « file_collection « diff « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20d8f891cc333f581c91b1ab36c25606401c4e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Gitlab
  module Diff
    module FileCollection
      class Compare < Base
        def initialize(compare, project:, diff_options:, diff_refs: nil)
          super(compare,
            project:      project,
            diff_options: diff_options,
            diff_refs:    diff_refs)
        end
      end
    end
  end
end