module MusicBrainz class Release def self.get_tracks(mbid, query=[]) @mbid=mbid if query.present? && query!=[] @query=query.join("+") else @query='recordings' end MusicBrainz::Base.get('release', @mbid, @query) end def inspect "currently querying #{@query} with an mbid #{@mbid}" end end end