class EasyTag::BaseTagger

Attributes

taglib[R]

Public Instance Methods

close() click to toggle source
# File lib/easytag/taggers/base.rb, line 9
def close
  taglib.close
end
method_missing(method, *args, **kwargs) click to toggle source
# File lib/easytag/taggers/base.rb, line 13
def method_missing(method, *args, **kwargs)
  warn "#{self.class.name}##{method} does not exist"
  method.to_s[-1].eql?('?') ? false : nil
end
year() click to toggle source
# File lib/easytag/taggers/base.rb, line 5
def year
  date.nil? ? 0 : date.year
end