Method: FileUtils#should_process_file?
- Defined in:
- lib/batch_audio_convert/file_utils.rb
#should_process_file?(file) ⇒ Boolean
73 74 75 76 |
# File 'lib/batch_audio_convert/file_utils.rb', line 73 def should_process_file?(file) return true if config[:force] return !File.exists?(file) end |