module Delighted

Constants

VERSION

Attributes

api_base_url[RW]
api_key[RW]
http_adapter[RW]
shared_client[W]

Public Class Methods

shared_client() click to toggle source
# File lib/delighted.rb, line 44
def shared_client
  @mutex.synchronize do
    @shared_client ||= Client.new(:api_key => api_key, :api_base_url => api_base_url, :http_adapter => http_adapter)
  end
end