Method: Path#rm_f
- Defined in:
- lib/path/fileutils.rb
#rm_f ⇒ Object Also known as: safe_unlink
Removes the file, ignoring errors, using FileUtils.rm_f.
30 31 32 33 |
# File 'lib/path/fileutils.rb', line 30 def rm_f FileUtils.rm_f(@path) self end |