Class: Avm::FileFormats::Base
- Inherits:
-
Object
- Object
- Avm::FileFormats::Base
- Defined in:
- lib/avm/file_formats/base.rb
Instance Method Summary collapse
- #apply(files) ⇒ Object
- #match?(file) ⇒ Boolean
- #name ⇒ Object
- #valid_basenames ⇒ Object
- #valid_types ⇒ Object
Instance Method Details
#apply(files) ⇒ Object
12 13 14 15 16 |
# File 'lib/avm/file_formats/base.rb', line 12 def apply(files) old_content = Hash[files.map { |f| [f, File.read(f)] }] ::Avm::FileFormats::Utf8Assert.assert_files(files) { internal_apply(files) } files.map { |f| build_file_result(f, old_content[f]) } end |
#match?(file) ⇒ Boolean
22 23 24 |
# File 'lib/avm/file_formats/base.rb', line 22 def match?(file) match_by_filename?(file) || match_by_type?(file) end |
#name ⇒ Object
18 19 20 |
# File 'lib/avm/file_formats/base.rb', line 18 def name self.class.name.demodulize end |
#valid_basenames ⇒ Object
26 27 28 |
# File 'lib/avm/file_formats/base.rb', line 26 def valid_basenames constant_or_array('VALID_BASENAMES') end |
#valid_types ⇒ Object
30 31 32 |
# File 'lib/avm/file_formats/base.rb', line 30 def valid_types constant_or_array('VALID_TYPES') end |