Sha256: 1e69b1c886773bcfff520cd038e60c3e1673b297d196f4e6c48261b4ab49ffd0

Contents?: true

Size: 509 Bytes

Versions: 6

Compression:

Stored size: 509 Bytes

Contents

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

module Qa
  extend ActiveSupport::Autoload

  autoload :Authorities
  autoload :Services

  # 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

6 entries across 6 versions & 1 rubygems

Version Path
qa-1.0.0 lib/qa.rb
qa-0.11.1 lib/qa.rb
qa-0.11.0 lib/qa.rb
qa-0.10.2 lib/qa.rb
qa-0.10.1 lib/qa.rb
qa-0.10.0 lib/qa.rb