Class: Gitlab::Git::BlameLine

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lineno, oldlineno, commit, line) ⇒ BlameLine

Returns a new instance of BlameLine.



69
70
71
72
73
74
# File 'lib/gitlab_git/blame.rb', line 69

def initialize(lineno, oldlineno, commit, line)
  @lineno = lineno
  @oldlineno = oldlineno
  @commit = commit
  @line = line
end

Instance Attribute Details

#commitObject

Returns the value of attribute commit.



68
69
70
# File 'lib/gitlab_git/blame.rb', line 68

def commit
  @commit
end

#lineObject

Returns the value of attribute line.



68
69
70
# File 'lib/gitlab_git/blame.rb', line 68

def line
  @line
end

#linenoObject

Returns the value of attribute lineno.



68
69
70
# File 'lib/gitlab_git/blame.rb', line 68

def lineno
  @lineno
end

#oldlinenoObject

Returns the value of attribute oldlineno.



68
69
70
# File 'lib/gitlab_git/blame.rb', line 68

def oldlineno
  @oldlineno
end