module Hyrax::IiifAv

Constants

VERSION

Public Class Methods

config() { |config| ... } click to toggle source

@api public

Exposes the Hyrax configuration

@yield [Hyrax::IiifAv::Configuration] if a block is passed @return [Hyrax::IiifAv::Configuration] @see Hyrax::IiifAv::Configuration for configuration options

# File lib/hyrax/iiif_av.rb, line 19
def self.config(&block)
  @config ||= Hyrax::IiifAv::Configuration.new

  yield @config if block

  @config
end