Class: Avm::FileFormats::Unknown

Inherits:
Base
  • Object
show all
Defined in:
lib/avm/file_formats/unknown.rb

Instance Method Summary collapse

Methods inherited from Base

#file_resource_name, #match?, #name

Instance Method Details

#apply(files) ⇒ Enumerable<Avm::FileFormats::FileResult>

Returns:



11
12
13
14
15
# File 'lib/avm/file_formats/unknown.rb', line 11

def apply(files)
  files.map do |file|
    ::Avm::FileFormats::FileResult.new(file, self.class, false)
  end
end