Class: Gitlab::Git::Compare

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab_git/compare.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(repository, base, head) ⇒ Compare

Returns a new instance of Compare.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/gitlab_git/compare.rb', line 6

def initialize(repository, base, head)
  @repository = repository

  unless base && head
    @commits = []
    return
  end

  @base = Gitlab::Git::Commit.find(repository, base.try(:strip))
  @head = Gitlab::Git::Commit.find(repository, head.try(:strip))

  @commits = [] unless @base && @head
  @commits = [] if same
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



4
5
6
# File 'lib/gitlab_git/compare.rb', line 4

def base
  @base
end

#headObject (readonly)

Returns the value of attribute head.



4
5
6
# File 'lib/gitlab_git/compare.rb', line 4

def head
  @head
end

Instance Method Details

#commitsObject



25
26
27
28
29
# File 'lib/gitlab_git/compare.rb', line 25

def commits
  return @commits if defined?(@commits)

  @commits = Gitlab::Git::Commit.between(@repository, @base.id, @head.id)
end

#diffs(options = {}) ⇒ Object



31
32
33
34
35
36
37
38
# File 'lib/gitlab_git/compare.rb', line 31

def diffs(options = {})
  unless @head && @base
    return Gitlab::Git::DiffCollection.new([])
  end

  paths = options.delete(:paths) || []
  Gitlab::Git::Diff.between(@repository, @head.id, @base.id, options, *paths)
end

#sameObject



21
22
23
# File 'lib/gitlab_git/compare.rb', line 21

def same
  @base && @head && @base.id == @head.id
end