Method: Cnvrg::Files#delete
- Defined in:
- lib/cnvrg/files.rb
#delete(file) ⇒ Object
979 980 981 982 983 |
# File 'lib/cnvrg/files.rb', line 979 def delete(file) file = "#{@project_home}/#{file}" unless File.exists? file return unless File.exists? file FileUtils.rm_rf(file) end |