module Qa::Authorities::Discogs

Provide authority namespace

Public Class Methods

subauthorities() click to toggle source
# File lib/qa/authorities/discogs.rb, line 24
def self.subauthorities
  authorities
end
subauthority_for(subauthority) click to toggle source

Create an authority object for given subauthority

@param [String] subauthority to use @return [GenericAuthority]

# File lib/qa/authorities/discogs.rb, line 19
def self.subauthority_for(subauthority)
  validate_subauthority!(subauthority)
  GenericAuthority.new(subauthority)
end