Module: Octokit::Request

Included in:
Client
Defined in:
lib/octokit/request.rb

Instance Method Summary collapse

Instance Method Details

#delete(path, options = {}, version = api_version, authenticate = true, raw = false, force_urlencoded = false) ⇒ Object



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

def delete(path, options={}, version=api_version, authenticate=true, raw=false, force_urlencoded=false)
  request(:delete, path, options, version, authenticate, raw, force_urlencoded)
end

#get(path, options = {}, version = api_version, authenticate = true, raw = false, force_urlencoded = false) ⇒ Object



9
10
11
# File 'lib/octokit/request.rb', line 9

def get(path, options={}, version=api_version, authenticate=true, raw=false, force_urlencoded=false)
  request(:get, path, options, version, authenticate, raw, force_urlencoded)
end

#patch(path, options = {}, version = api_version, authenticate = true, raw = false, force_urlencoded = false) ⇒ Object



13
14
15
# File 'lib/octokit/request.rb', line 13

def patch(path, options={}, version=api_version, authenticate=true, raw=false, force_urlencoded=false)
  request(:patch, path, options, version, authenticate, raw, force_urlencoded)
end

#post(path, options = {}, version = api_version, authenticate = true, raw = false, force_urlencoded = false) ⇒ Object



17
18
19
# File 'lib/octokit/request.rb', line 17

def post(path, options={}, version=api_version, authenticate=true, raw=false, force_urlencoded=false)
  request(:post, path, options, version, authenticate, raw, force_urlencoded)
end

#put(path, options = {}, version = api_version, authenticate = true, raw = false, force_urlencoded = false) ⇒ Object



21
22
23
# File 'lib/octokit/request.rb', line 21

def put(path, options={}, version=api_version, authenticate=true, raw=false, force_urlencoded=false)
  request(:put, path, options, version, authenticate, raw, force_urlencoded)
end