Class: GitCli::Delta::ModifiedFile

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) ⇒ ModifiedFile

Returns a new instance of ModifiedFile.



76
77
78
# File 'lib/git_cli/delta.rb', line 76

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

Instance Method Details

#to_sObject



79
80
81
# File 'lib/git_cli/delta.rb', line 79

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