Module: Qa

Extended by:
ActiveSupport::Autoload
Defined in:
lib/qa.rb,
lib/qa/engine.rb,
lib/qa/version.rb,
lib/qa/configuration.rb,
lib/qa/services/rdf_authority_parser.rb,
app/controllers/qa/application_controller.rb,
lib/qa/authorities/local/mysql_table_based_authority.rb

Defined Under Namespace

Modules: ApplicationHelper, Authorities, Local, Services Classes: ApidocGenerator, ApplicationController, ConfigDirectoryNotFound, Configuration, Engine, InstallGenerator, InvalidConfiguration, InvalidLinkedDataAuthority, InvalidSubAuthority, LinkedDataTermsController, MeshTree, MissingSubAuthority, ServiceError, ServiceUnavailable, SubjectMeshTerm, TermNotFound, TermsController, UnsupportedFormat

Constant Summary collapse

VERSION =
"2.1.2".freeze

Class Method Summary collapse

Class Method Details

.config {|Qa::Configuration| ... } ⇒ Qa::Configuration

Exposes the Questioning Authority configuration

Yields:

Returns:

See Also:



19
20
21
22
23
24
25
# File 'lib/qa.rb', line 19

def self.config(&block)
  @config ||= Qa::Configuration.new

  yield @config if block

  @config
end