Sha256: 0df9995c543e6ef34a9b98d0239a2121e35ddf290bee2a688d190ba66328ff98
Contents?: true
Size: 314 Bytes
Versions: 12
Compression:
Stored size: 314 Bytes
Contents
# frozen_string_literal: true require 'delegate' module AppStoreConnect class Client class Registry < SimpleDelegator OPTIONS = %i[schema].freeze def initialize(options = {}) super(options.fetch(:schema).web_service_endpoints.map { |s| [s.alias, s] }.to_h) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems