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

compare_result.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d72391dade5f025022bcc4974ca0e1ec8db2751d (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  class CompareResult
    attr_reader :commits, :diffs

    def initialize(compare)
      @commits, @diffs = compare.commits, compare.diffs
    end
  end
end