class Beatport::Catalog::Label
Public Class Methods
all(options = {})
click to toggle source
# File lib/beatport/catalog/label.rb, line 14 def all(options = {}) Client.retrieve 'labels', Label, options end
featured(*args)
click to toggle source
# File lib/beatport/catalog/label.rb, line 18 def featured(*args) Client.retrieve 'featured/labels', Label, *args end
find(*args)
click to toggle source
# File lib/beatport/catalog/label.rb, line 22 def find(*args) Client.retrieve 'labels', Label, *args end
name_facet()
click to toggle source
# File lib/beatport/catalog/label.rb, line 26 def name_facet :label_name end
Public Instance Methods
releases(options)
click to toggle source
# File lib/beatport/catalog/label.rb, line 31 def releases(options) options[:label_id] = id Release.all(options) end