Class: ID3::FrameArray
- Inherits:
-
Array
- Object
- Array
- ID3::FrameArray
- Defined in:
- lib/id3/frame_array.rb
Overview
Class FrameArray
basically nothing more than an Array, but it knows how to dump it’s contents as ID3v2 frames
this solves in part the problem of having multiple ID3v2 frames in one tag, e.g. TXXX , WXXX, APIC
Instance Method Summary collapse
Instance Method Details
#dump ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/id3/frame_array.rb', line 10 def dump result = '' self.each do |element| result << element.dump end return result end |