class ActiveStorage::Service::Registry

:nodoc:

def configurator

def configurator
  @configurator ||= ActiveStorage::Service::Configurator.new(configurations)
end

def fetch(name)

def fetch(name)
  services.fetch(name.to_sym) do |key|
    if configurations.include?(key)
      services[key] = configurator.build(key)
    else
      if block_given?
        yield key
      else
        raise KeyError, "Missing configuration for the #{key} Active Storage service. " \
          "Configurations available for the #{configurations.keys.to_sentence} services."
      end
    end
  end
end

def initialize(configurations)

:nodoc:
def initialize(configurations)
  @configurations = configurations.deep_symbolize_keys
  @services = {}
end