Sha256: d1acb93554a7403134947db7822112e602bc543dbb19316bf120d2991d560e5b

Contents?: true

Size: 543 Bytes

Versions: 15

Compression:

Stored size: 543 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require "dotenv/load"
require "bundler/setup"
require "iron_bank"
require "pry-byebug"

IronBank.configure do |config|
  config.client_id            = ENV["ZUORA_CLIENT_ID"]
  config.client_secret        = ENV["ZUORA_CLIENT_SECRET"]
  config.auth_type            = ENV.fetch("ZUORA_AUTH_TYPE", "token")
  config.domain               = ENV["ZUORA_DOMAIN"]
  config.excluded_fields_file = ENV["ZUORA_EXCLUDED_FIELDS_FILE"]
  config.users_file           = ENV["ZUORA_USERS_FILE"]
end

Pry.start

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
iron_bank-5.3.2 bin/console
iron_bank-5.3.0 bin/console
iron_bank-5.2.6 bin/console
iron_bank-5.2.4 bin/console
iron_bank-5.2.3 bin/console
iron_bank-5.2.0 bin/console
iron_bank-5.1.1 bin/console
iron_bank-5.1.0 bin/console
iron_bank-4.4.3 bin/console
iron_bank-5.0.1 bin/console
iron_bank-5.0.0 bin/console
iron_bank-4.4.1 bin/console
iron_bank-4.4.0 bin/console
iron_bank-4.3.1 bin/console
iron_bank-4.3.0 bin/console