class TeamCity::API
Public Class Methods
new(options={})
click to toggle source
Creates a new API
# 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