compare.rb 331 Bytes EditWeb IDE 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