module Alma

Contains batch processing utils for Alma Electronic APIs.

This class and its methods are used to iterate over Alma Electronic IDs to process and fetch Alma electronic objects via the Alma Electronic APIs. The https calls are logged and can be used to rerun the batch process without making any further http calls or to just rerun parts of the full batch.

Constants

INVENTORY_SUBFIELD_MAPPING
ROOT
VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/alma/config.rb, line 8
def self.configure()
  self.configuration ||= Configuration.new
  yield(configuration) if block_given?
end