Class: Git::StreamFileDelete
- Inherits:
-
Object
- Object
- Git::StreamFileDelete
- Defined in:
- lib/git/stream.rb
Instance Attribute Summary collapse
-
#repository_path ⇒ Object
Returns the value of attribute repository_path.
Instance Method Summary collapse
-
#initialize(repository_path) ⇒ StreamFileDelete
constructor
A new instance of StreamFileDelete.
- #to_s ⇒ Object
Constructor Details
#initialize(repository_path) ⇒ StreamFileDelete
Returns a new instance of StreamFileDelete.
102 103 104 |
# File 'lib/git/stream.rb', line 102 def initialize(repository_path) @repository_path = repository_path end |
Instance Attribute Details
#repository_path ⇒ Object
Returns the value of attribute repository_path.
100 101 102 |
# File 'lib/git/stream.rb', line 100 def repository_path @repository_path end |
Instance Method Details
#to_s ⇒ Object
106 107 108 |
# File 'lib/git/stream.rb', line 106 def to_s "D #{repository_path}\n" end |