Class: Grit::Blame::BlameLine
- Inherits:
-
Object
- Object
- Grit::Blame::BlameLine
- Defined in:
- lib/grit/blame.rb
Instance Attribute Summary collapse
-
#commit ⇒ Object
Returns the value of attribute commit.
-
#line ⇒ Object
Returns the value of attribute line.
-
#lineno ⇒ Object
Returns the value of attribute lineno.
-
#oldlineno ⇒ Object
Returns the value of attribute oldlineno.
Instance Method Summary collapse
-
#initialize(lineno, oldlineno, commit, line) ⇒ BlameLine
constructor
A new instance of BlameLine.
Constructor Details
#initialize(lineno, oldlineno, commit, line) ⇒ BlameLine
Returns a new instance of BlameLine.
60 61 62 63 64 65 |
# File 'lib/grit/blame.rb', line 60 def initialize(lineno, oldlineno, commit, line) @lineno = lineno @oldlineno = oldlineno @commit = commit @line = line end |
Instance Attribute Details
#commit ⇒ Object
Returns the value of attribute commit.
59 60 61 |
# File 'lib/grit/blame.rb', line 59 def commit @commit end |
#line ⇒ Object
Returns the value of attribute line.
59 60 61 |
# File 'lib/grit/blame.rb', line 59 def line @line end |
#lineno ⇒ Object
Returns the value of attribute lineno.
59 60 61 |
# File 'lib/grit/blame.rb', line 59 def lineno @lineno end |
#oldlineno ⇒ Object
Returns the value of attribute oldlineno.
59 60 61 |
# File 'lib/grit/blame.rb', line 59 def oldlineno @oldlineno end |