module TeamCity
Constants
- VERSION
Public Class Methods
client(options={})
click to toggle source
Alias for TeamCity::Client.new
@return [TeamCity::Client]
# File lib/teamcity.rb, line 12 def self.client(options={}) TeamCity::Client.new(options) end
method_missing(method, *args, &block)
click to toggle source
Delegate to TeamCity::Client
Calls superclass method
# File lib/teamcity.rb, line 17 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 TeamCity::Client
Calls superclass method
# File lib/teamcity.rb, line 23 def self.respond_to?(method) return client.respond_to?(method) || super end