module Ari
TODO use variable names with underscores
Public Class Methods
client()
click to toggle source
# File lib/ari.rb, line 3 def self.client return @@client if defined?(@@client) raise "ARI client not set. You can set it with ARI.client = client." end
client=(val)
click to toggle source
# File lib/ari.rb, line 8 def self.client=(val) @@client = val end