Class: Avm::Git::FileAutoFixup::CommitDelegator

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/avm/git/file_auto_fixup.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(commit, index) ⇒ CommitDelegator

Returns a new instance of CommitDelegator.



103
104
105
106
# File 'lib/avm/git/file_auto_fixup.rb', line 103

def initialize(commit, index)
  super(commit)
  @index = index
end

Instance Attribute Details

#indexObject (readonly)

Returns the value of attribute index.



101
102
103
# File 'lib/avm/git/file_auto_fixup.rb', line 101

def index
  @index
end

Instance Method Details

#positionObject



108
109
110
# File 'lib/avm/git/file_auto_fixup.rb', line 108

def position
  index + 1
end