class Configuration

Attributes

api_key[RW]
api_path[RW]
format[RW]

Public Class Methods

new() click to toggle source
# File lib/alma_rest_api.rb, line 126
def initialize
  @api_key = ENV['ALMA_APIKEY']
  @api_path = ENV['ALMA_APIPATH'] || "https://api-na.hosted.exlibrisgroup.com/almaws/v1"
  @format = ENV['ALMA_FORMAT'] || :json
end