Class: Shortwave::Provider::AlbumProvider

Inherits:
BaseProvider show all
Defined in:
lib/shortwave/providers.rb

Overview

Produces album objects.

Instance Method Summary collapse

Methods inherited from BaseProvider

#build, #initialize

Constructor Details

This class inherits a constructor from Shortwave::Provider::BaseProvider

Instance Method Details

#get(artist, name) ⇒ Object

Gets an album, given an artist name and an album name



91
92
93
# File 'lib/shortwave/providers.rb', line 91

def get(artist, name)
  parse_model @facade.info(:artist => artist, :album => name)
end