Module: Gitlab

Extended by:
Configuration
Defined in:
lib/gitlab.rb,
lib/gitlab/api.rb,
lib/gitlab/error.rb,
lib/gitlab/client.rb,
lib/gitlab/request.rb,
lib/gitlab/version.rb,
lib/gitlab/page_links.rb,
lib/gitlab/configuration.rb,
lib/gitlab/file_response.rb,
lib/gitlab/objectified_hash.rb,
lib/gitlab/paginated_response.rb

Defined Under Namespace

Modules: Configuration, Error, Help Classes: API, CLI, Client, FileResponse, ObjectifiedHash, PageLinks, PaginatedResponse, Request, Shell

Constant Summary collapse

VERSION =
'4.19.0'

Constants included from Configuration

Configuration::DEFAULT_USER_AGENT, Configuration::VALID_OPTIONS_KEYS

Class Method Summary collapse

Methods included from Configuration

configure, extended, options, reset

Class Method Details

.actionsArray<Symbol>

Returns an unsorted array of available client methods.

Returns:

  • (Array<Symbol>)


51
52
53
54
55
# File 'lib/gitlab.rb', line 51

def self.actions
  hidden =
    /endpoint|private_token|auth_token|user_agent|sudo|get|post|put|\Adelete\z|validate\z|request_defaults|httparty/
  (Gitlab::Client.instance_methods - Object.methods).reject { |e| e[hidden] }
end

.client(options = {}) ⇒ Gitlab::Client

Alias for Gitlab::Client.new

Returns:



20
21
22
# File 'lib/gitlab.rb', line 20

def self.client(options = {})
  Gitlab::Client.new(options)
end

.http_proxy(address = nil, port = nil, username = nil, password = nil) ⇒ Object

Delegate to HTTParty.http_proxy



44
45
46
# File 'lib/gitlab.rb', line 44

def self.http_proxy(address = nil, port = nil, username = nil, password = nil)
  Gitlab::Request.http_proxy(address, port, username, password)
end

.method_missing(method, *args, &block) ⇒ Object



25
26
27
28
29
# File 'lib/gitlab.rb', line 25

def self.method_missing(method, *args, **keywargs, &block)
  return super unless client.respond_to?(method)

  client.send(method, *args, **keywargs, &block)
end

.respond_to_missing?(method_name, include_private = false) ⇒ Boolean

Delegate to Gitlab::Client

Returns:

  • (Boolean)


39
40
41
# File 'lib/gitlab.rb', line 39

def self.respond_to_missing?(method_name, include_private = false)
  client.respond_to?(method_name) || super
end