Method: Path#rm_rf

Defined in:
lib/path/fileutils.rb

#rm_rfObject

Removes the file or directory recursively, ignoring errors, using FileUtils.rm_f.



38
39
40
41
# File 'lib/path/fileutils.rb', line 38

def rm_rf
  FileUtils.rm_rf(@path)
  self
end