# Libs/Gems or Ruby classes require 'json' require 'curl' require 'rest_client' require 'bigdecimal' require 'bigdecimal/util' # Overrides require 'rents/hash' # Gem files [:version, :connection, :status, :transaction, :currency, :string].each { |lib| require "rents/#{lib}" } module Rents # Production settings @@app_id = nil @@secret_key = nil # Tests settings @@test_env = nil @@debugger = nil def self.app_id=(app_id) @@app_id = app_id end def self.app_id @@app_id end def self.secret_key=(secret_key) @@secret_key = secret_key end def self.secret_key @@secret_key end def self.test_env @@test_env end def self.test_env=(test_env) @@test_env = test_env end def self.debugger @@test_env end def self.debugger=(debugger) @@debugger = debugger end end