module Yardi

The toplevel Yardi module. This includes configuration information that we'll need to build requests. This information is the same for all of our clients. Client-specific configuration is specified in credential.rb.

This is the parameter used for prospect search in GetYardiGuestActivity. It should not be confused with the Parameter::User that is used for guestcard insertion in ImportYardiGuest.

Constants

CONFIG_KEYS
Config
VERSION

Public Class Methods

config() click to toggle source
# File lib/yardi.rb, line 50
def config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source
# File lib/yardi.rb, line 46
def configure(&block)
  yield config
end