Module: TeamCity::Request

Included in:
API
Defined in:
lib/teamcity/request.rb

Overview

Defines HTTP request methods

Instance Method Summary collapse

Instance Method Details

#delete(path, options = {}, &block) ⇒ Object

Perform an HTTP DELETE request



20
21
22
# File 'lib/teamcity/request.rb', line 20

def delete(path, options={}, &block)
  request(:delete, path, options, &block)
end

#get(path, options = {}, &block) ⇒ Object

Perform an HTTP GET request



5
6
7
# File 'lib/teamcity/request.rb', line 5

def get(path, options={}, &block)
  request(:get, path, options, &block)
end

#post(path, options = {}, &block) ⇒ Object

Perform an HTTP POST request



10
11
12
# File 'lib/teamcity/request.rb', line 10

def post(path, options={}, &block)
  request(:post, path, options, &block)
end

#put(path, options = {}, &block) ⇒ Object

Perform an HTTP PUT request



15
16
17
# File 'lib/teamcity/request.rb', line 15

def put(path, options={}, &block)
  request(:put, path, options, &block)
end