Method: Stic::Metadata.parse
- Defined in:
- lib/stic/metadata.rb
.parse(file, blob) ⇒ Object
26 27 28 29 30 31 32 |
# File 'lib/stic/metadata.rb', line 26 def parse(file, blob) parsers.each do |parser| , content = parser.parse(file, blob) return [, content] if end [nil, blob] end |