module Github::Request::Verbs

def delete_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def delete_request(path, params = ParamsHash.empty)
  Request.new(:delete, path, self).call(current_options, params)
end

def get_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def get_request(path, params = ParamsHash.empty)
  request = Request.new(:get, path, self).call(current_options, params)
  request.auto_paginate
end

def head_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def head_request(path, params = ParamsHash.empty)
  Request.new(:head, path, self).call(current_options, params)
end

def options_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def options_request(path, params = ParamsHash.empty)
  Request.new(:options, path, self).call(current_options, params)
end

def patch_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def patch_request(path, params = ParamsHash.empty)
  Request.new(:patch, path, self).call(current_options, params)
end

def post_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def post_request(path, params = ParamsHash.empty)
  Request.new(:post, path, self).call(current_options, params)
end

def put_request(path, params = ParamsHash.empty)

Other tags:
    Api: - public
def put_request(path, params = ParamsHash.empty)
  Request.new(:put, path, self).call(current_options, params)
end