Class: Git::StreamFileDelete

Inherits:
Object
  • Object
show all
Defined in:
lib/git/stream.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_pathObject

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_sObject



106
107
108
# File 'lib/git/stream.rb', line 106

def to_s
  "D #{repository_path}\n"
end