Method: NovelConverter.clean_up_temp_files

Defined in:
lib/novelconverter.rb

.clean_up_temp_files(path_list) ⇒ Object



362
363
364
365
366
367
# File 'lib/novelconverter.rb', line 362

def self.clean_up_temp_files(path_list)
  return unless path_list
  path_list.each do |path|
    FileUtils.rm_f(path)
  end
end