class Falcon::Media

def flush_deletes

Clear generated files and created encodings
def flush_deletes
  profiles.each do |profile_name, profile|
    filepath = path(profile)
    FileUtils.rm(filepath, :force => true) if filepath && File.exists?(filepath)
  end
end