class Github::Repos::Keys

def edit(*args)


"key" => "ssh-rsa AAA..."
"title" => "octocat@octomac",
github.repos.keys.edit 'user-name', 'repo-name',
github = Github.new
= Examples

* :key - Required string.
* :title - Required string.
= Inputs

Edit a key
def edit(*args)
  arguments(args, :required => [:user, :repo, :key_id]) do
    sift VALID_KEY_OPTIONS
  end
  params = arguments.params
  patch_request("/repos/#{user}/#{repo}/keys/#{key_id}", params)
end