Class: TeamCity::API

Inherits:
Object
  • Object
show all
Includes:
Connection, Request
Defined in:
lib/teamcity/api.rb

Direct Known Subclasses

Client

Instance Method Summary collapse

Methods included from Request

#delete, #get, #post, #put

Constructor Details

#initialize(options = {}) ⇒ API

Creates a new API



9
10
11
12
13
14
# File 'lib/teamcity/api.rb', line 9

def initialize(options={})
  options = TeamCity.options.merge(options)
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end