1
0
Fork 0
musicbrainz/lib/musicbrainz/bindings/artist_release_groups.rb

15 lines
301 B
Ruby

# -*- encoding : utf-8 -*-
module MusicBrainz
module Bindings
module ArtistReleaseGroups
def parse(xml)
xml.xpath('./release-group-list/release-group').map do |xml|
MusicBrainz::Bindings::ReleaseGroup.parse(xml)
end
end
extend self
end
end
end