# File lib/librmpd.rb, line 635 def songs_by_artist( artist ) all_songs = self.songs artist_songs = [] all_songs.each do |song| if song.artist == artist artist_songs << song end end return artist_songs end