module Rundeck
Constants
- VERSION
Public Class Methods
client(options = {})
click to toggle source
Alias for Rundeck::Client.new
@return [Rundeck::Client]
# File lib/rundeck.rb, line 15 def self.client(options = {}) Rundeck::Client.new(options) end
method_missing(method, *args, &block)
click to toggle source
Delegate to Gitlab::Client
Calls superclass method
# File lib/rundeck.rb, line 20 def self.method_missing(method, *args, &block) return super unless client.respond_to?(method) client.send(method, *args, &block) end
respond_to?(method)
click to toggle source
Delegate to Gitlab::Client
Calls superclass method
# File lib/rundeck.rb, line 26 def self.respond_to?(method) client.respond_to?(method) || super end