Class: Bringit::BlameLine

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of BlameLine.



66
67
68
69
70
71
# File 'lib/bringit/blame.rb', line 66

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.



65
66
67
# File 'lib/bringit/blame.rb', line 65

def commit
  @commit
end

#lineObject

Returns the value of attribute line.



65
66
67
# File 'lib/bringit/blame.rb', line 65

def line
  @line
end

#linenoObject

Returns the value of attribute lineno.



65
66
67
# File 'lib/bringit/blame.rb', line 65

def lineno
  @lineno
end

#oldlinenoObject

Returns the value of attribute oldlineno.



65
66
67
# File 'lib/bringit/blame.rb', line 65

def oldlineno
  @oldlineno
end