module Xpanse2go class Configuration attr_accessor :account_id, :account_number, :token, :production def initialize @account_id = 'XPANSE' @token = 'bVHQGxZLML' @account_number = '1' @production = false end end end