Module: Kippt::Connection

Included in:
Client
Defined in:
lib/kippt/connection.rb

Defined Under Namespace

Classes: ParseMultiJson

Constant Summary collapse

HOST =
"kippt.com"

Instance Method Summary collapse

Instance Method Details

#delete(url, options = {}) ⇒ Object



29
30
31
# File 'lib/kippt/connection.rb', line 29

def delete(url, options = {})
  request(:delete, url, options)
end

#get(url, options = {}) ⇒ Object



17
18
19
# File 'lib/kippt/connection.rb', line 17

def get(url, options = {})
  request(:get, url, options)
end

#post(url, options = {}) ⇒ Object



21
22
23
# File 'lib/kippt/connection.rb', line 21

def post(url, options = {})
  request(:post, url, options)
end

#put(url, options = {}) ⇒ Object



25
26
27
# File 'lib/kippt/connection.rb', line 25

def put(url, options = {})
  request(:put, url, options)
end