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.



72
73
74
75
# File 'lib/avm/git/file_auto_fixup.rb', line 72

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

Instance Attribute Details

#indexObject (readonly)

Returns the value of attribute index.



70
71
72
# File 'lib/avm/git/file_auto_fixup.rb', line 70

def index
  @index
end

Instance Method Details

#positionObject



77
78
79
# File 'lib/avm/git/file_auto_fixup.rb', line 77

def position
  index + 1
end