Module: MusicBrainz::Bindings::ArtistReleaseGroups

Extended by:
ArtistReleaseGroups
Included in:
ArtistReleaseGroups
Defined in:
lib/musicbrainz/bindings/artist_release_groups.rb

Instance Method Summary collapse

Instance Method Details

#parse(xml) ⇒ Object



4
5
6
7
8
# File 'lib/musicbrainz/bindings/artist_release_groups.rb', line 4

def parse(xml)
  xml.xpath('./release-group-list/release-group').map do |xml|
    MusicBrainz::Bindings::ReleaseGroup.parse(xml)
  end
end