Sha256: ac53b7b188e377a16da995d0395755f0021ed98ae0855178c7a72c77aa12b774

Contents?: true

Size: 488 Bytes

Versions: 5

Compression:

Stored size: 488 Bytes

Contents

require "qa/engine"
require "active_record"
require "activerecord-import"

module Qa
  extend ActiveSupport::Autoload

  autoload :Authorities

  # Raised when the configuration directory for local authorities doesn't exist
  class ConfigDirectoryNotFound < StandardError; end

  # Raised when a subauthority is not passed into an authority
  class MissingSubAuthority < ArgumentError; end

  # Raised when a subauthority is not valid
  class InvalidSubAuthority < ArgumentError; end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
qa-0.9.0 lib/qa.rb
qa-0.8.0 lib/qa.rb
qa-0.7.0 lib/qa.rb
qa-0.6.0 lib/qa.rb
qa-0.5.0 lib/qa.rb