Class: GitCli::Delta::DeletedDir
- Defined in:
- lib/git_cli/delta.rb
Instance Attribute Summary
Attributes inherited from VCSItem
Instance Method Summary collapse
-
#initialize(path, full) ⇒ DeletedDir
constructor
A new instance of DeletedDir.
- #to_s ⇒ Object
Methods inherited from VCSItem
Constructor Details
#initialize(path, full) ⇒ DeletedDir
Returns a new instance of DeletedDir.
81 82 83 |
# File 'lib/git_cli/delta.rb', line 81 def initialize(path, full) super(:dir, path, full) end |
Instance Method Details
#to_s ⇒ Object
84 85 86 |
# File 'lib/git_cli/delta.rb', line 84 def to_s "[D] #{@path}" end |