Method: Utils#delete_file

Defined in:
lib/cryo/utils.rb

#delete_file(path) ⇒ Object



8
9
10
# File 'lib/cryo/utils.rb', line 8

def delete_file(path)
  File.delete(path) if File.exists?(path)
end