Class: GitCli::Delta::StagedDir

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

Returns a new instance of StagedDir.



100
101
102
# File 'lib/git_cli/delta.rb', line 100

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

Instance Method Details

#to_sObject



103
104
105
# File 'lib/git_cli/delta.rb', line 103

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