Method: Path#rm

Defined in:
lib/path/fileutils.rb

#rmObject

Removes the file using FileUtils.rm.



24
25
26
27
# File 'lib/path/fileutils.rb', line 24

def rm
  FileUtils.rm(@path)
  self
end