Class: Grit::Blame::BlameLine

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of BlameLine.



51
52
53
54
55
56
# File 'lib/grit/lib/grit/blame.rb', line 51

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.



50
51
52
# File 'lib/grit/lib/grit/blame.rb', line 50

def commit
  @commit
end

#lineObject

Returns the value of attribute line.



50
51
52
# File 'lib/grit/lib/grit/blame.rb', line 50

def line
  @line
end

#linenoObject

Returns the value of attribute lineno.



50
51
52
# File 'lib/grit/lib/grit/blame.rb', line 50

def lineno
  @lineno
end

#oldlinenoObject

Returns the value of attribute oldlineno.



50
51
52
# File 'lib/grit/lib/grit/blame.rb', line 50

def oldlineno
  @oldlineno
end