# Libs/Gems or Ruby classes require 'json' require 'curl' require 'rest_client' # Overrides require 'rents/hash' # Gem files require "rents/version" require "rents/connection" require "rents/status" require "rents/transaction" module Rents @@app_id = nil @@secret_key = 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 end