class Github::Repos::Forks

def list(*args)


github.repos.forks.list 'user-name', 'repo-name' { |fork| ... }
github.repos.forks.list 'user-name', 'repo-name'
github = Github.new
= Examples

* :sort - newest, oldest, watchers, default: newest
= Parameters

List repository forks
def list(*args)
  arguments(args, :required => [:user, :repo])
  response = get_request("/repos/#{user}/#{repo}/forks", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end