Module: EasyTag

Defined in:
lib/easytag.rb,
lib/easytag/util.rb,
lib/easytag/image.rb,
lib/easytag/version.rb,
lib/easytag/taggers/mp3.rb,
lib/easytag/taggers/mp4.rb,
lib/easytag/taggers/ogg.rb,
lib/easytag/taggers/base.rb,
lib/easytag/taggers/flac.rb,
lib/easytag/attributes/mp3.rb,
lib/easytag/attributes/mp4.rb,
lib/easytag/attributes/ogg.rb,
lib/easytag/taggers/vorbis.rb,
lib/easytag/attributes/base.rb,
lib/easytag/attributes/flac.rb,
lib/easytag/taggers/factory.rb,
lib/easytag/attributes/vorbis.rb

Defined Under Namespace

Modules: BaseAttributeAccessors, FLACAttributeAccessors, MP3AttributeAccessors, MP4AttributeAccessors, OggAttributeAccessors, Utilities, VorbisAttributeAccessors, VorbisAttributes Classes: BaseTagger, FLACTagger, Image, ImageType, MP3Tagger, MP4Tagger, OggTagger, TaggerFactory, Version

Constant Summary collapse

VERSION =
[Version::MAJOR, Version::MINOR, Version::TINY].join('.')

Class Method Summary collapse

Class Method Details

.open(file, &block) ⇒ Object



12
13
14
# File 'lib/easytag.rb', line 12

def self.open(file, &block)
  TaggerFactory.open(file, &block)
end