class Gitlab::Client
Public Instance Methods
client_helper()
click to toggle source
# File lib/gitlab_reviewbot/gitlab.rb, line 97 def client_helper @client_helper ||= ClientHelper.new(self) end
method_missing(method, *args)
click to toggle source
Calls superclass method
# File lib/gitlab_reviewbot/gitlab.rb, line 101 def method_missing(method, *args) if client_helper.respond_to?(method) client_helper.send(method, *args) else super end end