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.18.0'
Constants included from Configuration
Configuration::DEFAULT_USER_AGENT, Configuration::VALID_OPTIONS_KEYS
Class Method Summary collapse
-
.actions ⇒ Array<Symbol>
Returns an unsorted array of available client methods.
-
.client(options = {}) ⇒ Gitlab::Client
Alias for Gitlab::Client.new.
-
.http_proxy(address = nil, port = nil, username = nil, password = nil) ⇒ Object
Delegate to HTTParty.http_proxy.
- .method_missing(method, *args, &block) ⇒ Object
-
.respond_to_missing?(method_name, include_private = false) ⇒ Boolean
Delegate to Gitlab::Client.
Methods included from Configuration
configure, extended, options, reset
Class Method Details
.actions ⇒ Array<Symbol>
Returns an unsorted array of available client methods.
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
20 21 22 |
# File 'lib/gitlab.rb', line 20 def self.client( = {}) Gitlab::Client.new() 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
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 |