class Github::Repos::Forks
def create(user_name, repo_name, params={})
"org" => "github"
github.repos.forks.create 'user-name', 'repo-name',
github = Github.new
= Examples
* :org - Optional string - the name of the service that is being called.
= Inputs
Create a fork for the authenticated user
def create(user_name, repo_name, params={}) set :user => user_name, :repo => repo_name assert_presence_of user, repo normalize! params filter! %w[ org ], params post_request("/repos/#{user}/#{repo}/forks", params) end