Class: GitCli::Delta::ConflictedFile

Inherits:
VCSItem
  • Object
show all
Defined in:
lib/git_cli/delta.rb

Instance Attribute Summary

Attributes inherited from VCSItem

#full, #path, #type

Instance Method Summary collapse

Methods inherited from VCSItem

#<=>, #==

Constructor Details

#initialize(path, full) ⇒ ConflictedFile

Returns a new instance of ConflictedFile.



124
125
126
# File 'lib/git_cli/delta.rb', line 124

def initialize(path, full)
  super(:file, path, full)
end

Instance Method Details

#to_sObject



127
128
129
# File 'lib/git_cli/delta.rb', line 127

def to_s
  "[C] #{@path}"
end