module Discogs::Api::Artists

Public Class Methods

get(client, artist_id) click to toggle source
# File lib/discogs/api/artists.rb, line 2
def self.get(client, artist_id)
  client.get Discogs::Api::Url.resolve('artists', artist_id)
end
releases(client, artist_id) click to toggle source
# File lib/discogs/api/artists.rb, line 6
def self.releases(client, artist_id)
  client.get Discogs::Api::Url.resolve('artists', artist_id, 'releases')
end