Class: ID3Tag::ID3V1FrameParser

Inherits:
Object
  • Object
show all
Defined in:
lib/id3tag/id3_v1_frame_parser.rb

Instance Method Summary collapse

Constructor Details

#initialize(input) ⇒ ID3V1FrameParser

Returns a new instance of ID3V1FrameParser.



4
5
6
# File 'lib/id3tag/id3_v1_frame_parser.rb', line 4

def initialize(input)
  @input = StringIO.new(input)
end

Instance Method Details

#framesObject



8
9
10
# File 'lib/id3tag/id3_v1_frame_parser.rb', line 8

def frames
  @frames ||= get_frames
end