Sha256: 4eca14c578e456288b5c9e71cadc92a7ea7d49cd01d57da51d2ab8a8f538d9ff
Contents?: true
Size: 1.05 KB
Versions: 36
Compression:
Stored size: 1.05 KB
Contents
# frozen_string_literal: true IronBank.configure do |config| # Zuora OAuth client ID config.client_id = "<my-client-id-from-zuora>" # Zuora OAuth client secret config.client_secret = "<my-secret-from-zuora>" # Zuora API domain (apisandbox, production, etc.) config.domain = "rest.apisandbox.zuora.com" # Directory where the metadata XML files (Zuora schema) will be stored config.schema_directory = "config/zuora/schema" # Directory where the local export CSV files will be stored config.export_directory = "config/zuora/local_records" # Zuora authentication type: # - `token` uses OAuth and is the *recommended* approach # - `cookie` uses username/password for Zuora environments that do not # support OAuth authentication, e.g., services environment. If # using `cookie` authentication, then use an API user username as # the `client_id` and the API user password as `client_secret` config.auth_type = "token" # Set the gem to use the Rails logger config.logger = Rails.logger end
Version data entries
36 entries across 36 versions & 1 rubygems