Class: GitCli::Delta::NewFile

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

Returns a new instance of NewFile.



60
61
62
# File 'lib/git_cli/delta.rb', line 60

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

Instance Method Details

#to_sObject



63
64
65
# File 'lib/git_cli/delta.rb', line 63

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