class Github::Repos::Keys
def create(*args)
"key" => "ssh-rsa AAA..."
"title" => "octocat@octomac",
github.repos.keys.create 'user-name', 'repo-name',
github = Github.new
= Examples
* :key - Required string.
* :title - Required string.
= Inputs
Create a key
def create(*args) arguments(args, :required => [:user, :repo]) do sift VALID_KEY_OPTIONS assert_required VALID_KEY_OPTIONS end post_request("/repos/#{user}/#{repo}/keys", arguments.params) end