class Alma::Configuration

Attributes

apikey[RW]
enable_loggable[RW]
http_retries[RW]
logger[RW]
region[RW]
timeout[RW]

Public Class Methods

new() click to toggle source
# File lib/alma/config.rb, line 17
def initialize
  @apikey = "TEST_API_KEY"
  @region = "https://api-na.hosted.exlibrisgroup.com"
  @enable_loggable = false
  @timeout = 5
  @http_retries = 3
  @logger = Logger.new(STDOUT)
end