module Gitlab

def self.method_missing(method, *args, &block)

Delegate to Gitlab::Client
def self.method_missing(method, *args, &block)
  return super unless client.respond_to?(method)
  client.send(method, *args, &block)
end