module Artifactory

def client

Returns:
  • (Artifactory::Client) -
def client
  unless defined?(@client) && @client.same_options?(options)
    @client = Artifactory::Client.new(options)
  end
  @client
end