class Github::Issues::Assignees

def list(*args)


Github.issues.assignees.list 'user', 'repo' { |assignee| ... }
Github.issues.assignees.list 'user', 'repo'

= Examples

to which issues may be assigned.
lists all the available assignees (owner + collaborators)
def list(*args)
  arguments(args, :required => [:user, :repo])
  params = arguments.params
  response = get_request("/repos/#{user}/#{repo}/assignees", params)
  return response unless block_given?
  response.each { |el| yield el }
end