class Beatport::Catalog::Artist
Public Class Methods
all(options = {})
click to toggle source
# File lib/beatport/catalog/artist.rb, line 13 def all(options = {}) Client.retrieve 'artists', Artist, options end
find(*args)
click to toggle source
# File lib/beatport/catalog/artist.rb, line 17 def find(*args) Client.retrieve 'artists', Artist, *args end
name_facet()
click to toggle source
# File lib/beatport/catalog/artist.rb, line 21 def name_facet :artist_name end
Public Instance Methods
top_downloads(options = {})
click to toggle source
# File lib/beatport/catalog/artist.rb, line 26 def top_downloads(options = {}) Track.most_popular_for_artist(id, options) end