module Artifactory

def method_missing(m, *args, &block)


object behave like a {Client}.
Delegate all methods to the client object, essentially making the module
def method_missing(m, *args, &block)
  if client.respond_to?(m)
    client.send(m, *args, &block)
  else
    super
  end
end