Sha256: b7d3810d7834c6a3cf141d998f1177d21fe773ff07444ec513a087dd42917b78
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
require 'deprecation' module Qa::Authorities ## # @abstract The base class for all authorites. Implementing subclasses must # provide {#all} and #{find} methods. # @todo What about {#search}? class Base extend Deprecation ## # @abstract By default, #all is not implemented. A subclass authority must # implement this method to conform to the generic interface. # # @return [Enumerable] # @raise [NotImplementedError] when this method is abstract. # # @todo better specify return type def all raise NotImplementedError, "#{self.class}#all is unimplemented." end ## # @abstract By default, #find is not implemented. A subclass authority must # implement this method to conform to the generic interface. # # @param id [String] the id string for the authority to lookup # # @return [Hash] # @raise [NotImplementedError] when this method is abstract. # # @todo better specify return type def find(_id) raise NotImplementedError, "#{self.class}#all is unimplemented." end ## # @deprecated use {#find} instead def full_record(id, _subauthority = nil) Deprecation.warn('#full_record is deprecated. Use #find instead') find(id) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
qa-1.0.0 | lib/qa/authorities/base.rb |
qa-0.11.1 | lib/qa/authorities/base.rb |