class Github::Repos::Forks

def create(*args)


"organization" => "github"
github.repos.forks.create 'user-name', 'repo-name',
github = Github.new
= Examples

* :organization - Optional string - the name of the service that is being called.
= Inputs

Create a fork for the authenticated user
def create(*args)
  arguments(args, :required => [:user, :repo])
  post_request("/repos/#{user}/#{repo}/forks", arguments.params)
end