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

Version Path
app_store_connect-0.38.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.37.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.36.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.35.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.34.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.33.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.32.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.30.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.29.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.28.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.27.0 lib/app_store_connect/client/registry.rb
app_store_connect-0.26.0 lib/app_store_connect/client/registry.rb